From c1563b85bdbdce4019dd138fcee478c7411e11e1 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Thu, 26 Oct 2023 08:05:51 +0100 Subject: [PATCH 01/54] Automatic TGS DMAPI Update (#4779) This pull request updates the TGS DMAPI to the latest version. Please note any breaking or unimplemented changes before merging. Co-authored-by: tgstation-server --- code/__DEFINES/tgs.dm | 2 +- code/modules/tgs/core/datum.dm | 4 ++++ code/modules/tgs/v4/api.dm | 10 +++++----- code/modules/tgs/v5/api.dm | 2 +- 4 files changed, 11 insertions(+), 7 deletions(-) diff --git a/code/__DEFINES/tgs.dm b/code/__DEFINES/tgs.dm index 9825cd118b..d468d60441 100644 --- a/code/__DEFINES/tgs.dm +++ b/code/__DEFINES/tgs.dm @@ -1,6 +1,6 @@ // tgstation-server DMAPI -#define TGS_DMAPI_VERSION "6.6.0" +#define TGS_DMAPI_VERSION "6.6.1" // All functions and datums outside this document are subject to change with any version and should not be relied on. diff --git a/code/modules/tgs/core/datum.dm b/code/modules/tgs/core/datum.dm index 93377079aa..de420a2a32 100644 --- a/code/modules/tgs/core/datum.dm +++ b/code/modules/tgs/core/datum.dm @@ -11,6 +11,10 @@ TGS_DEFINE_AND_SET_GLOBAL(tgs, null) src.event_handler = event_handler src.version = version +/datum/tgs_api/proc/TerminateWorld() + del(world) + sleep(1) // https://www.byond.com/forum/post/2894866 + /datum/tgs_api/latest parent_type = /datum/tgs_api/v5 diff --git a/code/modules/tgs/v4/api.dm b/code/modules/tgs/v4/api.dm index b9a75c4abb..945e2e4117 100644 --- a/code/modules/tgs/v4/api.dm +++ b/code/modules/tgs/v4/api.dm @@ -73,7 +73,7 @@ if(cached_json["apiValidateOnly"]) TGS_INFO_LOG("Validating API and exiting...") Export(TGS4_COMM_VALIDATE, list(TGS4_PARAMETER_DATA = "[minimum_required_security_level]")) - del(world) + TerminateWorld() security_level = cached_json["securityLevel"] chat_channels_json_path = cached_json["chatChannelsJson"] @@ -188,7 +188,7 @@ requesting_new_port = TRUE if(!world.OpenPort(0)) //open any port TGS_ERROR_LOG("Unable to open random port to retrieve new port![TGS4_PORT_CRITFAIL_MESSAGE]") - del(world) + TerminateWorld() //request a new port export_lock = FALSE @@ -196,16 +196,16 @@ if(!new_port_json) TGS_ERROR_LOG("No new port response from server![TGS4_PORT_CRITFAIL_MESSAGE]") - del(world) + TerminateWorld() var/new_port = new_port_json[TGS4_PARAMETER_DATA] if(!isnum(new_port) || new_port <= 0) TGS_ERROR_LOG("Malformed new port json ([json_encode(new_port_json)])![TGS4_PORT_CRITFAIL_MESSAGE]") - del(world) + TerminateWorld() if(new_port != world.port && !world.OpenPort(new_port)) TGS_ERROR_LOG("Unable to open port [new_port]![TGS4_PORT_CRITFAIL_MESSAGE]") - del(world) + TerminateWorld() requesting_new_port = FALSE while(export_lock) diff --git a/code/modules/tgs/v5/api.dm b/code/modules/tgs/v5/api.dm index 45250efc46..7226f29bba 100644 --- a/code/modules/tgs/v5/api.dm +++ b/code/modules/tgs/v5/api.dm @@ -51,7 +51,7 @@ if(runtime_information[DMAPI5_RUNTIME_INFORMATION_API_VALIDATE_ONLY]) TGS_INFO_LOG("DMAPI validation, exiting...") - del(world) + TerminateWorld() version = new /datum/tgs_version(runtime_information[DMAPI5_RUNTIME_INFORMATION_SERVER_VERSION]) security_level = runtime_information[DMAPI5_RUNTIME_INFORMATION_SECURITY_LEVEL] From 2507b46ed90edad9c274f648dbdd287288623761 Mon Sep 17 00:00:00 2001 From: fira Date: Thu, 26 Oct 2023 09:19:46 +0200 Subject: [PATCH 02/54] Fixes Smartfridge deletions + Turing/Smartfridge networking issue (#4696) # About the pull request This fixes 2 things: * Smartfridges deletion would not clean `item_quants` keeping references preventing contents deletion * The Turing machine was never updated to work with new Smartfridges and would botch `item_quants` when trying to delete empty bottles The second would manifest as such in game logs: `RUNTIME: type mismatch: -4 += Phoron bottle (/obj/item/reagent_container/glass/bottle) - code/game/machinery/kitchen/smartfridge.dm@136` because the Turing was still using it as a number and not a list. This probably fixes all sorts of weirdnesses with Turing/Fridge and possibly links to #4694 - but i recommend this be TMed by Real Research Mains to ensure nothing broke # Explain why it's good for the game Less bugs more consistency # Testing Photographs and Procedure Tested simple Turing usage, and chemical auto-bottling (looping phoron without new chems creation) # Changelog :cl: fix: Fixed various issues in the Networking between Turing machine and Smartfridges. /:cl: --- code/game/machinery/kitchen/smartfridge.dm | 20 ++++++++++++++++++- .../chemistry_machinery/autodispenser.dm | 3 +-- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/code/game/machinery/kitchen/smartfridge.dm b/code/game/machinery/kitchen/smartfridge.dm index f52350aa8d..903cd06c31 100644 --- a/code/game/machinery/kitchen/smartfridge.dm +++ b/code/game/machinery/kitchen/smartfridge.dm @@ -23,7 +23,7 @@ var/icon_on = "smartfridge" var/icon_off = "smartfridge-off" var/icon_panel = "smartfridge-panel" - var/item_quants = list() + var/list/item_quants = list() //! Assoc list of names -> list(items) var/ispowered = TRUE //starts powered var/is_secure_fridge = FALSE var/shoot_inventory = FALSE @@ -40,6 +40,24 @@ GLOB.vending_products[/obj/item/reagent_container/glass/bottle] = 1 GLOB.vending_products[/obj/item/storage/pill_bottle] = 1 +/obj/structure/machinery/smartfridge/Destroy(force) + if(is_in_network()) // Delete all contents from networked storage index + for(var/atom/movable/item as anything in contents) + delete_contents(item) + item_quants.Cut() + return ..() // parent will delete contents if we're not networked + +/// Deletes given object in contents of the smartfridge +/obj/structure/machinery/smartfridge/proc/delete_contents(obj/item/item) + if(item.loc != src) + return + contents -= item + if(item_quants[item.name]) + item_quants[item.name] -= item + if(is_in_network() && chemical_data.shared_item_storage[item.name]) + chemical_data.shared_item_storage[item.name] -= item + qdel(item) + /obj/structure/machinery/smartfridge/proc/accept_check(obj/item/O as obj) if(istype(O,/obj/item/reagent_container/food/snacks/grown/) || istype(O,/obj/item/seeds/)) return 1 diff --git a/code/modules/reagents/chemistry_machinery/autodispenser.dm b/code/modules/reagents/chemistry_machinery/autodispenser.dm index a06042aac7..eed96564da 100644 --- a/code/modules/reagents/chemistry_machinery/autodispenser.dm +++ b/code/modules/reagents/chemistry_machinery/autodispenser.dm @@ -346,8 +346,7 @@ C.reagents.trans_to(container, amount) //We don't care about keeping empty bottles stored if(C.reagents.total_volume <= 0 && istypestrict(C,/obj/item/reagent_container/glass/bottle)) - linked_storage.item_quants[C.name]-- - qdel(C) //Might want to connect it to a disposal system later instead + linked_storage.delete_contents(C) if(stage_missing) amount = stage_missing From 11c020ecfd6f2dbb4237a5e364f47a73e0a812f7 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Thu, 26 Oct 2023 08:29:43 +0100 Subject: [PATCH 03/54] Automatic changelog for PR #4696 [ci skip] --- html/changelogs/AutoChangeLog-pr-4696.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-4696.yml diff --git a/html/changelogs/AutoChangeLog-pr-4696.yml b/html/changelogs/AutoChangeLog-pr-4696.yml new file mode 100644 index 0000000000..3cec025915 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-4696.yml @@ -0,0 +1,4 @@ +author: "fira" +delete-after: True +changes: + - bugfix: "Fixed various issues in the Networking between Turing machine and Smartfridges." \ No newline at end of file From ce4d4818f47bfbcbb327511fdb63dc62cb3fbdb8 Mon Sep 17 00:00:00 2001 From: Releasethesea <135743398+Releasethesea@users.noreply.github.com> Date: Thu, 26 Oct 2023 14:54:04 -0500 Subject: [PATCH 04/54] fixes reqs emergency doors (#4763) # About the pull request The southern emergency shutters weren't properly aligned and it was bothering me so i wanted to fix it # Explain why it's good for the game map fixes are probably always good :) # Changelog :cl: Backsea fix: Fixed the incorrectly placed shutters at req and that one light near CIC /:cl: --- maps/map_files/USS_Almayer/USS_Almayer.dmm | 58 +++++++--------------- 1 file changed, 18 insertions(+), 40 deletions(-) diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index 12227cacc5..523f461ee9 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -20261,6 +20261,9 @@ /area/almayer/squads/req) "bGz" = ( /obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, /turf/open/floor/almayer{ dir = 9; icon_state = "green" @@ -39680,7 +39683,6 @@ /obj/structure/machinery/door/airlock/multi_tile/almayer/generic2{ access_modified = 1; name = "\improper Flight Crew Quarters"; - req_access_txt = null; req_one_access_txt = "19;22" }, /turf/open/floor/almayer{ @@ -48195,7 +48197,6 @@ access_modified = 1; dir = 1; name = "\improper Flight Crew Quarters"; - req_access_txt = null; req_one_access_txt = "19;22" }, /turf/open/floor/almayer{ @@ -51457,15 +51458,6 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"moU" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) "moY" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall/almayer, @@ -56351,6 +56343,9 @@ 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" = ( @@ -57236,18 +57231,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hull/upper_hull/u_a_p) -"oLg" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/squads/req) "oLi" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, @@ -72168,6 +72151,9 @@ /area/almayer/squads/bravo) "vbR" = ( /obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, /turf/open/floor/almayer{ dir = 5; icon_state = "green" @@ -76463,11 +76449,12 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) "wGI" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/port_missiles) +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) "wGX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -79230,15 +79217,6 @@ "xMs" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_two) -"xMt" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) "xMA" = ( /obj/structure/machinery/computer/med_data, /obj/structure/sign/safety/terminal{ @@ -97649,7 +97627,7 @@ vcK mBA kCi kCi -wGI +kCi kCi vmW nIE @@ -97852,7 +97830,7 @@ ukU bfP fvv vcK -vcK +wGI tuA tuA tuA @@ -122707,7 +122685,7 @@ bxg bZr bNQ bNQ -xMt +bNQ bGz hMs cbw @@ -122910,7 +122888,7 @@ bxh bZr krN krN -oLg +krN oqY can buH @@ -123113,7 +123091,7 @@ bxg bZr ibc uly -moU +bNN vbR pky cbv From 8fc551634637af00a70691ffd15fcd17ccb91ddf Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Thu, 26 Oct 2023 21:03:34 +0100 Subject: [PATCH 05/54] Automatic changelog for PR #4763 [ci skip] --- html/changelogs/AutoChangeLog-pr-4763.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-4763.yml diff --git a/html/changelogs/AutoChangeLog-pr-4763.yml b/html/changelogs/AutoChangeLog-pr-4763.yml new file mode 100644 index 0000000000..cf9158bbf9 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-4763.yml @@ -0,0 +1,4 @@ +author: "Backsea" +delete-after: True +changes: + - bugfix: "Fixed the incorrectly placed shutters at req and that one light near CIC" \ No newline at end of file From e120ab795ba0e92e4eb0f91fda194c59f83cb5aa Mon Sep 17 00:00:00 2001 From: fira Date: Thu, 26 Oct 2023 21:55:07 +0200 Subject: [PATCH 06/54] Add Item & Footprints offsets (#4762) # About the pull request This: * Adds transverse offsets to blood footprints * Adds notable pixel offsets to a few items * Adds a very slight pixel offset to all items * Enables rotation for thrown flashlights * Cause objects exiting a surface (rack/table) to regenerate offset instead of being stuck at center * Stops random offsets from overwriting mapped offsets # Explain why it's good for the game The goal is to have map visuals more organic when we have a lot of objects on the ground - targeting in particular items you find readily in dense areas such as Reqs or a FOB. Consider this for example, the blood footprints are all aligned, in more extreme situations (eg WO) it makes an actual "grid" which i personally find very immersion breaking ![image](https://github.com/cmss13-devs/cmss13/assets/604624/83883e15-a9a0-4a2d-aa90-41c785e047b9) Adding a slight offset helps counter that: ![image](https://github.com/cmss13-devs/cmss13/assets/604624/504d1baf-385c-4774-86f3-6331c4ac87ed) # Changelog :cl: add: Bloody footprints are now slightly offset to break long visual straight lines. fix: Items do not align back to the center of turfs anymore when picked from a surface (table or rack) add: Some more items now have offsets on the map display, and they all can be slightly offset. /:cl: --------- Co-authored-by: harryob --- .../effects/decals/cleanable/blood/tracks.dm | 25 +++++++++++++------ code/game/objects/items.dm | 12 +++++++++ code/game/objects/items/devices/coins.dm | 7 ++---- code/game/objects/items/devices/flashlight.dm | 9 +++++-- .../items/explosives/grenades/grenade.dm | 4 +-- code/game/objects/items/explosives/warhead.dm | 7 ++---- .../objects/items/reagent_containers/glass.dm | 7 ++---- .../objects/items/reagent_containers/pill.dm | 2 ++ .../reagent_containers/reagent_container.dm | 2 ++ code/game/objects/items/stacks/cable_coil.dm | 6 ++--- .../items/stacks/sheets/sheet_types.dm | 3 +++ code/game/objects/structures/surface.dm | 3 +-- code/modules/cm_marines/equipment/guncases.dm | 1 + .../modules/cm_marines/equipment/kit_boxes.dm | 4 +-- .../equipment/mortar/mortar_shells.dm | 6 ++--- code/modules/cm_marines/orbital_cannon.dm | 4 +-- code/modules/hydroponics/botany_disks.dm | 6 ++--- code/modules/objectives/data_retrieval.dm | 4 +-- code/modules/objectives/documents.dm | 4 +-- code/modules/paperwork/paper.dm | 4 +-- code/modules/paperwork/photocopier.dm | 2 -- .../projectiles/ammo_boxes/ammo_boxes.dm | 4 +-- code/modules/projectiles/ammunition.dm | 5 ++-- .../chemistry_machinery/chem_master.dm | 4 --- 24 files changed, 75 insertions(+), 60 deletions(-) diff --git a/code/game/objects/effects/decals/cleanable/blood/tracks.dm b/code/game/objects/effects/decals/cleanable/blood/tracks.dm index 32593f6f30..c764259a62 100644 --- a/code/game/objects/effects/decals/cleanable/blood/tracks.dm +++ b/code/game/objects/effects/decals/cleanable/blood/tracks.dm @@ -14,6 +14,9 @@ var/list/overlay_images = list() + /// Amount of pixels to shift either way in an attempt to make the tracks more organic + var/transverse_amplitude = 3 + /obj/effect/decal/cleanable/blood/tracks/Crossed() return @@ -21,19 +24,27 @@ return FALSE /obj/effect/decal/cleanable/blood/tracks/proc/add_tracks(direction, tcolor, out) - var/image/I = image(icon = icon, icon_state = out ? going_state : coming_state, dir = direction) - var/mutable_appearance/MA = new(I) + var/image/image = image(icon = icon, icon_state = out ? going_state : coming_state, dir = direction) + + var/mutable_appearance/MA = new(image) MA.color = tcolor MA.layer = layer MA.appearance_flags |= RESET_COLOR - I.appearance = MA + image.appearance = MA + + switch(direction) + if(NORTH, SOUTH) + image.pixel_x += rand(-transverse_amplitude, transverse_amplitude) + if(EAST, WEST) + image.pixel_y += rand(-transverse_amplitude, transverse_amplitude) + if(out) - LAZYSET(steps_out, "[direction]", I) + LAZYSET(steps_out, "[direction]", image) else - LAZYSET(steps_in, "[direction]", I) + LAZYSET(steps_in, "[direction]", image) - overlay_images += I - cleanable_turf.overlays += I + overlay_images += image + cleanable_turf.overlays += image /obj/effect/decal/cleanable/blood/tracks/clear_overlay() if(length(overlay_images)) diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index 9dbe33e051..bf24b07582 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -156,6 +156,11 @@ var/list/inherent_traits + /// How much to offset the item randomly either way alongside X visually + var/ground_offset_x = 0 + /// How much to offset the item randomly either way alongside Y visually + var/ground_offset_y = 0 + /obj/item/Initialize(mapload, ...) . = ..() @@ -175,6 +180,8 @@ if(flags_item & MOB_LOCK_ON_EQUIP) AddComponent(/datum/component/id_lock) + scatter_item() + /obj/item/Destroy() flags_item &= ~DELONDROP //to avoid infinite loop of unequip, delete, unequip, delete. flags_item &= ~NODROP //so the item is properly unequipped if on a mob. @@ -458,6 +465,11 @@ cases. Override_icon_state should be a list.*/ /obj/item/proc/item_action_slot_check(mob/user, slot) return TRUE +/obj/item/proc/scatter_item() + if(!pixel_x && !pixel_y) + pixel_x = rand(-ground_offset_x, ground_offset_x) + pixel_y = rand(-ground_offset_y, ground_offset_y) + // The mob M is attempting to equip this item into the slot passed through as 'slot'. return TRUE if it can do this and 0 if it can't. // If you are making custom procs but would like to retain partial or complete functionality of this one, include a 'return ..()' to where you want this to happen. // Set disable_warning to TRUE if you wish it to not give you outputs. diff --git a/code/game/objects/items/devices/coins.dm b/code/game/objects/items/devices/coins.dm index 6ab79e3216..7343d14ad1 100644 --- a/code/game/objects/items/devices/coins.dm +++ b/code/game/objects/items/devices/coins.dm @@ -11,11 +11,8 @@ black_market_value = 10 var/string_attached var/sides = 2 - -/obj/item/coin/Initialize() - . = ..() - pixel_x = rand(0,16)-8 - pixel_y = rand(0,8)-8 + ground_offset_x = 8 + ground_offset_y = 4 /obj/item/coin/gold name = "gold coin" diff --git a/code/game/objects/items/devices/flashlight.dm b/code/game/objects/items/devices/flashlight.dm index e795f4e28d..114964464a 100644 --- a/code/game/objects/items/devices/flashlight.dm +++ b/code/game/objects/items/devices/flashlight.dm @@ -12,6 +12,8 @@ light_range = 5 light_power = 1 + ground_offset_x = 2 + ground_offset_y = 6 actions_types = list(/datum/action/item_action) var/on = FALSE @@ -33,6 +35,11 @@ else icon_state = initial(icon_state) +/obj/item/device/flashlight/animation_spin(speed = 5, loop_amount = -1, clockwise = TRUE, sections = 3, angular_offset = 0, pixel_fuzz = 0) + clockwise = pick(TRUE, FALSE) + angular_offset = rand(360) + return ..() + /obj/item/device/flashlight/proc/update_brightness(mob/user = null) if(on) set_light_range(light_range) @@ -296,8 +303,6 @@ // Causes flares to stop with a rotation offset for visual purposes /obj/item/device/flashlight/flare/animation_spin(speed = 5, loop_amount = -1, clockwise = TRUE, sections = 3, angular_offset = 0, pixel_fuzz = 0) - clockwise = pick(TRUE, FALSE) - angular_offset = rand(360) pixel_fuzz = 16 return ..() /obj/item/device/flashlight/flare/pickup() diff --git a/code/game/objects/items/explosives/grenades/grenade.dm b/code/game/objects/items/explosives/grenades/grenade.dm index 7e98e98199..6b79323367 100644 --- a/code/game/objects/items/explosives/grenades/grenade.dm +++ b/code/game/objects/items/explosives/grenades/grenade.dm @@ -20,12 +20,12 @@ var/hand_throwable = TRUE harmful = TRUE //Is it harmful? Are they banned for synths? antigrief_protection = TRUE //Should it be checked by antigrief? + ground_offset_x = 7 + ground_offset_y = 6 /obj/item/explosive/grenade/Initialize() . = ..() det_time = max(0, rand(det_time - 5, det_time + 5)) - pixel_y = rand(-6, 6) - pixel_x = rand(-7, 7) /obj/item/explosive/grenade/proc/can_use_grenade(mob/living/carbon/human/user) if(!hand_throwable) diff --git a/code/game/objects/items/explosives/warhead.dm b/code/game/objects/items/explosives/warhead.dm index 5dfdf2a41e..9825d74831 100644 --- a/code/game/objects/items/explosives/warhead.dm +++ b/code/game/objects/items/explosives/warhead.dm @@ -2,11 +2,8 @@ icon = 'icons/obj/items/weapons/grenade.dmi' customizable = TRUE allowed_sensors = list() //We only need a detonator - -/obj/item/explosive/warhead/Initialize(mapload, ...) - . = ..() - pixel_y = rand(-6, 6) - pixel_x = rand(-7, 7) + ground_offset_x = 7 + ground_offset_y = 6 /obj/item/explosive/warhead/rocket name = "84mm rocket warhead" diff --git a/code/game/objects/items/reagent_containers/glass.dm b/code/game/objects/items/reagent_containers/glass.dm index 240809b785..df344506c7 100644 --- a/code/game/objects/items/reagent_containers/glass.dm +++ b/code/game/objects/items/reagent_containers/glass.dm @@ -363,11 +363,8 @@ matter = list() possible_transfer_amounts = list(5,10,15,25,30) flags_atom = FPRINT|OPENCONTAINER - -/obj/item/reagent_container/glass/beaker/vial/Initialize() - . = ..() - pixel_y = rand(-8, 8) - pixel_x = rand(-9, 9) + ground_offset_x = 9 + ground_offset_y = 8 /obj/item/reagent_container/glass/beaker/vial/tricordrazine name = "tricordrazine vial" diff --git a/code/game/objects/items/reagent_containers/pill.dm b/code/game/objects/items/reagent_containers/pill.dm index de86ad07f5..6c71d8be3c 100644 --- a/code/game/objects/items/reagent_containers/pill.dm +++ b/code/game/objects/items/reagent_containers/pill.dm @@ -23,6 +23,8 @@ w_class = SIZE_TINY volume = 60 reagent_desc_override = TRUE //it has a special examining mechanic + ground_offset_x = 7 + ground_offset_y = 7 var/identificable = TRUE //can medically trained people tell what's in it? var/pill_desc = "An unknown pill." // The real description of the pill, shown when examined by a medically trained person var/pill_icon_class = "random" // Pills with the same icon class share icons diff --git a/code/game/objects/items/reagent_containers/reagent_container.dm b/code/game/objects/items/reagent_containers/reagent_container.dm index eddbf5197a..e0561d5a7e 100644 --- a/code/game/objects/items/reagent_containers/reagent_container.dm +++ b/code/game/objects/items/reagent_containers/reagent_container.dm @@ -14,6 +14,8 @@ var/transparent = FALSE //can we see what's in it? var/reagent_desc_override = FALSE //does it have a special examining mechanic that should override the normal /reagent_containers examine proc? actions_types = list(/datum/action/item_action/reagent_container/set_transfer_amount) + ground_offset_x = 7 + ground_offset_y = 7 /obj/item/reagent_container/Initialize() if(!possible_transfer_amounts) diff --git a/code/game/objects/items/stacks/cable_coil.dm b/code/game/objects/items/stacks/cable_coil.dm index 9135c793cd..e846979c00 100644 --- a/code/game/objects/items/stacks/cable_coil.dm +++ b/code/game/objects/items/stacks/cable_coil.dm @@ -20,14 +20,14 @@ attack_verb = list("whipped", "lashed", "disciplined", "flogged") stack_id = "cable coil" attack_speed = 3 + ground_offset_x = 2 + ground_offset_y = 2 /obj/item/stack/cable_coil/Initialize(mapload, length = MAXCOIL, param_color = null) . = ..() src.amount = length if (param_color) // It should be red by default, so only recolor it if parameter was specified. color = param_color - pixel_x = rand(-2,2) - pixel_y = rand(-2,2) updateicon() update_wclass() @@ -276,8 +276,6 @@ /obj/item/stack/cable_coil/cut/Initialize() . = ..() src.amount = rand(1,2) - pixel_x = rand(-2,2) - pixel_y = rand(-2,2) updateicon() update_wclass() diff --git a/code/game/objects/items/stacks/sheets/sheet_types.dm b/code/game/objects/items/stacks/sheets/sheet_types.dm index f6a8d02c3e..07345dcdc0 100644 --- a/code/game/objects/items/stacks/sheets/sheet_types.dm +++ b/code/game/objects/items/stacks/sheets/sheet_types.dm @@ -69,6 +69,7 @@ var/global/list/datum/stack_recipe/metal_recipes = list ( \ sheettype = "metal" stack_id = "metal" + /obj/item/stack/sheet/metal/small_stack amount = STACK_10 @@ -114,6 +115,8 @@ var/global/list/datum/stack_recipe/plasteel_recipes = list ( \ amount_sprites = TRUE sheettype = "plasteel" stack_id = "plasteel" + ground_offset_x = 4 + ground_offset_y = 5 /obj/item/stack/sheet/plasteel/New(loc, amount=null) recipes = plasteel_recipes diff --git a/code/game/objects/structures/surface.dm b/code/game/objects/structures/surface.dm index 3a2dbd3e8d..efc6900242 100644 --- a/code/game/objects/structures/surface.dm +++ b/code/game/objects/structures/surface.dm @@ -61,8 +61,7 @@ draw_item_overlays() /obj/structure/surface/proc/detach_item(obj/item/O) - O.pixel_x = initial(O.pixel_x) - O.pixel_y = initial(O.pixel_y) + O.scatter_item() UnregisterSignal(O, COMSIG_ATOM_DECORATED) draw_item_overlays() return diff --git a/code/modules/cm_marines/equipment/guncases.dm b/code/modules/cm_marines/equipment/guncases.dm index 507d614066..ddf010547b 100644 --- a/code/modules/cm_marines/equipment/guncases.dm +++ b/code/modules/cm_marines/equipment/guncases.dm @@ -9,6 +9,7 @@ can_hold = list()//define on a per case basis for the original firearm. foldable = TRUE foldable = /obj/item/stack/sheet/mineral/plastic//it makes sense + ground_offset_y = 5 /obj/item/storage/box/guncase/update_icon() if(LAZYLEN(contents)) diff --git a/code/modules/cm_marines/equipment/kit_boxes.dm b/code/modules/cm_marines/equipment/kit_boxes.dm index 43cf733adb..4a7864dbe0 100644 --- a/code/modules/cm_marines/equipment/kit_boxes.dm +++ b/code/modules/cm_marines/equipment/kit_boxes.dm @@ -274,12 +274,12 @@ slowdown = 1 can_hold = list() //Nada. Once you take the stuff out it doesn't fit back in. foldable = TRUE + ground_offset_x = 5 + ground_offset_y = 5 var/pro_case_overlay /obj/item/storage/box/kit/Initialize() . = ..() - pixel_x = rand(-5, 5) - pixel_y = rand(-5, 5) if(pro_case_overlay) overlays += image('icons/obj/items/storage.dmi', "+[pro_case_overlay]") diff --git a/code/modules/cm_marines/equipment/mortar/mortar_shells.dm b/code/modules/cm_marines/equipment/mortar/mortar_shells.dm index 7fd05322f1..45b3a6859d 100644 --- a/code/modules/cm_marines/equipment/mortar/mortar_shells.dm +++ b/code/modules/cm_marines/equipment/mortar/mortar_shells.dm @@ -6,11 +6,9 @@ w_class = SIZE_HUGE flags_atom = FPRINT|CONDUCT var/datum/cause_data/cause_data + ground_offset_x = 7 + ground_offset_y = 6 -/obj/item/mortar_shell/Initialize(mapload, ...) - . = ..() - pixel_y = rand(-6, 6) - pixel_x = rand(-7, 7) /obj/item/mortar_shell/Destroy() . = ..() diff --git a/code/modules/cm_marines/orbital_cannon.dm b/code/modules/cm_marines/orbital_cannon.dm index 78bdfc3d77..1d49c42f5e 100644 --- a/code/modules/cm_marines/orbital_cannon.dm +++ b/code/modules/cm_marines/orbital_cannon.dm @@ -559,8 +559,8 @@ var/list/ob_type_fuel_requirements icon_state = "ob_fuel" is_solid_fuel = 1 -/obj/structure/ob_ammo/ob_fuel/New() - ..() +/obj/structure/ob_ammo/ob_fuel/Initialize() + . = ..() pixel_x = rand(-5,5) pixel_y = rand(-5,5) diff --git a/code/modules/hydroponics/botany_disks.dm b/code/modules/hydroponics/botany_disks.dm index fda43b6f16..602003b19c 100644 --- a/code/modules/hydroponics/botany_disks.dm +++ b/code/modules/hydroponics/botany_disks.dm @@ -4,14 +4,12 @@ icon = 'icons/obj/items/disk.dmi' icon_state = "botanydisk" w_class = SIZE_TINY + ground_offset_x = 5 + ground_offset_y = 5 var/list/genes = list() var/genesource = "unknown" -/obj/item/disk/botany/Initialize() - . = ..() - pixel_x = rand(-5,5) - pixel_y = rand(-5,5) /obj/item/disk/botany/attack_self(mob/user) ..() diff --git a/code/modules/objectives/data_retrieval.dm b/code/modules/objectives/data_retrieval.dm index 955d2cc8e6..01689a18d0 100644 --- a/code/modules/objectives/data_retrieval.dm +++ b/code/modules/objectives/data_retrieval.dm @@ -177,6 +177,8 @@ var/datum/cm_objective/retrieve_item/document/retrieve_objective var/display_color = "white" var/disk_color = "White" + ground_offset_x = 9 + ground_offset_y = 8 /obj/item/disk/objective/Initialize(mapload, ...) . = ..() @@ -210,8 +212,6 @@ name = "[disk_color] computer disk [label]" objective = new /datum/cm_objective/retrieve_data/disk(src) retrieve_objective = new /datum/cm_objective/retrieve_item/document(src) - pixel_y = rand(-8, 8) - pixel_x = rand(-9, 9) w_class = SIZE_TINY /obj/item/disk/objective/Destroy() diff --git a/code/modules/objectives/documents.dm b/code/modules/objectives/documents.dm index 14bef02245..5c6041a406 100644 --- a/code/modules/objectives/documents.dm +++ b/code/modules/objectives/documents.dm @@ -122,6 +122,8 @@ unacidable = TRUE indestructible = 1 is_objective = TRUE + ground_offset_x = 9 + ground_offset_y = 8 var/label // label on the document var/renamed = FALSE //Once someone reads a document the item gets renamed based on the objective they are linked to) @@ -131,8 +133,6 @@ objective = new objective_type(src) retrieve_objective = new /datum/cm_objective/retrieve_item/document(src) LAZYADD(objective.enables_objectives, retrieve_objective) - pixel_y = rand(-8, 8) - pixel_x = rand(-9, 9) /obj/item/document_objective/Destroy() qdel(objective) diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index bde60ef3a3..e18c1ce3c2 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -19,6 +19,8 @@ flags_equip_slot = SLOT_HEAD flags_armor_protection = BODY_FLAG_HEAD attack_verb = list("bapped") + ground_offset_x = 9 + ground_offset_y = 8 var/info //What's actually written on the paper. var/info_links //A different version of the paper which includes html links at fields and EOF @@ -42,8 +44,6 @@ /obj/item/paper/Initialize(mapload, photo_list) . = ..() - pixel_y = rand(-8, 8) - pixel_x = rand(-9, 9) stamps = "" src.photo_list = photo_list diff --git a/code/modules/paperwork/photocopier.dm b/code/modules/paperwork/photocopier.dm index 70d6bf3898..b47f630974 100644 --- a/code/modules/paperwork/photocopier.dm +++ b/code/modules/paperwork/photocopier.dm @@ -82,8 +82,6 @@ p.update_icon() p.icon_state = "paper_words" p.name = bundle.name - p.pixel_y = rand(-8, 8) - p.pixel_x = rand(-9, 9) sleep(15*j) updateUsrDialog() else if(href_list["remove"]) diff --git a/code/modules/projectiles/ammo_boxes/ammo_boxes.dm b/code/modules/projectiles/ammo_boxes/ammo_boxes.dm index 8319234154..df8a7d7bdd 100644 --- a/code/modules/projectiles/ammo_boxes/ammo_boxes.dm +++ b/code/modules/projectiles/ammo_boxes/ammo_boxes.dm @@ -85,6 +85,8 @@ var/handful = "shells" //used for 'magazine' boxes that give handfuls to determine what kind for the sprite can_explode = TRUE limit_per_tile = 2 + ground_offset_x = 5 + ground_offset_y = 5 /obj/item/ammo_box/magazine/empty empty = TRUE @@ -102,8 +104,6 @@ while(i < num_of_magazines) contents += new magazine_type(src) i++ - pixel_x = rand(-5, 5) - pixel_y = rand(-5, 5) update_icon() /obj/item/ammo_box/magazine/update_icon() diff --git a/code/modules/projectiles/ammunition.dm b/code/modules/projectiles/ammunition.dm index d747525f3f..594ad6b69d 100644 --- a/code/modules/projectiles/ammunition.dm +++ b/code/modules/projectiles/ammunition.dm @@ -18,6 +18,8 @@ They're all essentially identical when it comes to getting the job done. w_class = SIZE_SMALL throw_speed = SPEED_SLOW throw_range = 6 + ground_offset_x = 7 + ground_offset_y = 6 var/default_ammo = /datum/ammo/bullet var/caliber = null // This is used for matching handfuls to each other or whatever the mag is. Examples are" "12g" ".44" ".357" etc. var/current_rounds = -1 //Set this to something else for it not to start with different initial counts. @@ -50,8 +52,7 @@ They're all essentially identical when it comes to getting the job done. if(0) icon_state += "_e" //In case it spawns empty instead. item_state += "_e" - pixel_y = rand(-6, 6) - pixel_x = rand(-7, 7) + if(ammo_band_color && ammo_band_icon) update_ammo_band() diff --git a/code/modules/reagents/chemistry_machinery/chem_master.dm b/code/modules/reagents/chemistry_machinery/chem_master.dm index 9d2d1ff10a..1e7e3bb083 100644 --- a/code/modules/reagents/chemistry_machinery/chem_master.dm +++ b/code/modules/reagents/chemistry_machinery/chem_master.dm @@ -237,8 +237,6 @@ while (count--) var/obj/item/reagent_container/pill/P = new/obj/item/reagent_container/pill(loc) P.pill_desc = "A custom pill." - P.pixel_x = rand(-7, 7) //random position - P.pixel_y = rand(-7, 7) P.icon_state = "pill"+pillsprite reagents.trans_to(P,amount_per_pill) if(loaded_pill_bottle) @@ -271,8 +269,6 @@ P.name = "[name] vial" reagents.trans_to(P, 30) - P.pixel_x = rand(-7, 7) //random position - P.pixel_y = rand(-7, 7) P.update_icon() if(href_list["store"]) From fda83c2185e51c4dd74b3a24a047a6f4d5421dd9 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Thu, 26 Oct 2023 21:19:37 +0100 Subject: [PATCH 07/54] Automatic changelog for PR #4762 [ci skip] --- html/changelogs/AutoChangeLog-pr-4762.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-4762.yml diff --git a/html/changelogs/AutoChangeLog-pr-4762.yml b/html/changelogs/AutoChangeLog-pr-4762.yml new file mode 100644 index 0000000000..9d3c3f7a6c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-4762.yml @@ -0,0 +1,6 @@ +author: "fira" +delete-after: True +changes: + - rscadd: "Bloody footprints are now slightly offset to break long visual straight lines." + - bugfix: "Items do not align back to the center of turfs anymore when picked from a surface (table or rack)" + - rscadd: "Some more items now have offsets on the map display, and they all can be slightly offset." \ No newline at end of file From 08aef2a3848bdcde09a01a1c0cc6401c2fc21d44 Mon Sep 17 00:00:00 2001 From: fira Date: Thu, 26 Oct 2023 22:01:29 +0200 Subject: [PATCH 08/54] reset CAS direct camera on change to avoid duplicated signal handlers (#4755) # About the pull request Explicitely resets CAS direct guidance camera before setting a new one, avoiding log being flooded by double signal registrations ``` runtime error: mob_resist overridden. Use override = TRUE to suppress this warning proc name: stack trace (/proc/stack_trace) source file: code/__HELPERS/unsorted.dm,1893 usr: Honk (/mob/living/carbon/human) src: null usr.loc: the floor (206,40,4) (/turf/open/shuttle/dropship) ``` --- code/game/machinery/computer/dropship_weapons.dm | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/computer/dropship_weapons.dm b/code/game/machinery/computer/dropship_weapons.dm index 60bf17388d..6218bf0cde 100644 --- a/code/game/machinery/computer/dropship_weapons.dm +++ b/code/game/machinery/computer/dropship_weapons.dm @@ -594,14 +594,21 @@ return var/targ_id = text2num(href_list["cas_camera"]) + + var/datum/cas_signal/new_signal for(var/datum/cas_signal/LT as anything in cas_group.cas_signals) if(LT.target_id == targ_id && LT.valid_signal()) - selected_cas_signal = LT + new_signal = LT break - if(!selected_cas_signal) + if(!new_signal) to_chat(usr, SPAN_WARNING("Target lost or obstructed.")) return + + if(usr in selected_cas_signal?.linked_cam?.viewing_users) // Reset previous cam + remove_from_view(usr) + + selected_cas_signal = new_signal if(selected_cas_signal && selected_cas_signal.linked_cam) selected_cas_signal.linked_cam.view_directly(usr) else From df7dfce311ec44b84eae02b2bb2a46167c791f8f Mon Sep 17 00:00:00 2001 From: Zonespace <41448081+Zonespace27@users.noreply.github.com> Date: Thu, 26 Oct 2023 13:03:14 -0700 Subject: [PATCH 09/54] Re-removes bridge coats (#4784) # About the pull request Partially reverts https://github.com/cmss13-devs/cmss13/pull/4751 # Explain why it's good for the game Same reasoning as https://github.com/cmss13-devs/cmss13/pull/1193 I fucked up and shouldn't have let this be readded in the first place. Sprite maintainers can close this PR if they disagree with the re-removal. :cl: del: Re-removed CO/XO bridge coat /:cl: --- code/modules/gear_presets/uscm_ship.dm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/code/modules/gear_presets/uscm_ship.dm b/code/modules/gear_presets/uscm_ship.dm index 5ea860b05e..d34137a1c3 100644 --- a/code/modules/gear_presets/uscm_ship.dm +++ b/code/modules/gear_presets/uscm_ship.dm @@ -417,7 +417,7 @@ dress_extra = list(/obj/item/storage/large_holster/ceremonial_sword/full) dress_hat = list(/obj/item/clothing/head/marine/peaked/captain/white, /obj/item/clothing/head/marine/peaked/captain/black, /obj/item/clothing/head/marine/peaked) dress_shoes = list(/obj/item/clothing/shoes/dress/commander) - dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/officer/white, /obj/item/clothing/suit/storage/jacket/marine/dress/officer/black, /obj/item/clothing/suit/storage/jacket/marine/dress/officer/suit, /obj/item/clothing/suit/storage/jacket/marine/dress, /obj/item/clothing/suit/storage/jacket/marine/dress/bridge_coat_grey, ) + dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/officer/white, /obj/item/clothing/suit/storage/jacket/marine/dress/officer/black, /obj/item/clothing/suit/storage/jacket/marine/dress/officer/suit, /obj/item/clothing/suit/storage/jacket/marine/dress) /datum/equipment_preset/uscm_ship/commander/New() . = ..() @@ -478,8 +478,6 @@ /obj/item/clothing/suit/storage/jacket/marine/dress/officer/black, /obj/item/clothing/suit/storage/jacket/marine/dress/officer/suit, /obj/item/clothing/suit/storage/jacket/marine/dress/officer/falcon, - /obj/item/clothing/suit/storage/jacket/marine/dress/bridge_coat_grey, - /obj/item/clothing/suit/storage/jacket/marine/dress/bridge_coat, ) /datum/equipment_preset/uscm_ship/commander/council/load_gear(mob/living/carbon/human/new_human) @@ -513,7 +511,7 @@ minimap_icon = list("cic" = MINIMAP_ICON_COLOR_HEAD) minimap_background = MINIMAP_ICON_BACKGROUND_CIC - dress_extra = list(/obj/item/storage/large_holster/ceremonial_sword/full, /obj/item/clothing/suit/storage/jacket/marine/dress/bridge_coat_grey,) + dress_extra = list(/obj/item/storage/large_holster/ceremonial_sword/full) /datum/equipment_preset/uscm_ship/xo/New() . = ..() From d7c6ca01e1a74c69950db5d07d4f52d16e96e665 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Thu, 26 Oct 2023 21:43:38 +0100 Subject: [PATCH 10/54] Automatic changelog for PR #4784 [ci skip] --- html/changelogs/AutoChangeLog-pr-4784.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-4784.yml diff --git a/html/changelogs/AutoChangeLog-pr-4784.yml b/html/changelogs/AutoChangeLog-pr-4784.yml new file mode 100644 index 0000000000..6ee8c2d91e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-4784.yml @@ -0,0 +1,4 @@ +author: "Zonespace27" +delete-after: True +changes: + - rscdel: "Re-removed CO/XO bridge coat" \ No newline at end of file From 982baa8aec974c72c3fcb0308dfcc9089c2822bf Mon Sep 17 00:00:00 2001 From: fira Date: Thu, 26 Oct 2023 22:04:15 +0200 Subject: [PATCH 11/54] Adds ~50 tips (#4772) # About the pull request Adds 38-or-something more tips, with some information on JTAC and Settings esp for new players. # Explain why it's good for the game Nobody seems to bother doing it and the tips get stale over time. # Changelog :cl: add: Added about 50 new tips. /:cl: --------- Co-authored-by: ihatethisengine <115417687+ihatethisengine@users.noreply.github.com> Co-authored-by: forest2001 <41653574+realforest2001@users.noreply.github.com> Co-authored-by: Zonespace <41448081+Zonespace27@users.noreply.github.com> --- strings/marinetips.txt | 20 ++++++++++++++++++-- strings/memetips.txt | 24 +++++++++++++++++++++++- strings/metatips.txt | 13 +++++++++++-- strings/xenotips.txt | 2 ++ 4 files changed, 54 insertions(+), 5 deletions(-) diff --git a/strings/marinetips.txt b/strings/marinetips.txt index cf808884f1..416c9ef0a4 100644 --- a/strings/marinetips.txt +++ b/strings/marinetips.txt @@ -53,35 +53,51 @@ A misloaded OB can deviate severely from the intended target area - ensure you l The XO and CO are trained in Power Loader use and engineering, and can load the OB. You can change what your SL tracker beacon is tracking by right clicking on your headset and clicking "Switch Tracker Target". Boilers emit light - not every glow from around the corner is friendly! +The amount of items in Requisitions and Squad Preparations depend on how many players readied up at the start of the round. You can carry a variety of items inside your helmet - from gauze and cigarettes to flares and screwdrivers. CIC staff can track every USCM-aligned person via the suit sensors console and overwatch console - useful for finding escaped prisoners or dead marines. When the M7 RPG is fired, it creates a substantial shockwave behind it that can stun and harm marines standing too close. Watch your backblast! Remember that you need to put a defibrillator's paddles away in order to store it. -W-Y PMCs do not have marine IFF. Don't fire Smartguns through them! -To talk on multiple radio channels at once, put a COMMA [,] before your message and add up to four prefixes. E.g, ,abcd talks on all squad channels at once. +W-Y PMCs do not have marine IFF. Don't fire Smartguns at them! +To talk on multiple radio channels at once, put a COMMA [,] before your message and add up to four prefixes. E.g, ,abcd talks on the main four squad channels at once. Put .w or :w before your message to whisper. Another way to whisper is to use the verb "whisper" in the IC tab or command bar. For Vehicle Crewmen : it is often safer to repair the parts of your APC or tank inside the vehicle than outside it. It is almost always faster to do surgery manually than in the autodoc. To check your skills, go to the IC tab and click "view skills". +Minirockets pack the most punch per cost as far as CAS weaponry is concerned. The U7 underbarrel shotgun can instantly break down both resin doors and mechanical airlocks, and it's not bad at breaking walls down either. You can find breaching charges in Requisitions or the Squad Engineer vendor. They function like C4, but can be deployed and explode much quicker, and release powerful shrapnel on the opposite side. They require minor engineering knowledge, which can be obtained from pamphlets. Armor piercing ammunition does less damage to unarmored targets. +Requisitions may not grant you service if you are a 'pajamarine' : a marine in cryosleep attire. Be sure to dress up! You can insert empty pill bottles into ChemMasters before creating pills to have them automatically inserted. Nurses can practice a full range of surgeries on Professor DUMMY. Ask the gods to give you one if you see (or are) a nurse practicing. Drinks from the hot drinks machine warm you up. Be careful! Barricades block grenades, and indeed all thrown items, from the front if they're barbed up. +CAS Fire Missions doubles the accuracy of fired weapons, which can be substantial. Painkillers do not stack. Only the strongest has any effect. +Don't underestimate the mortar: with ammo and proper communication it can hit surprisingly hard. +You can shoot through tents, but they won't protect you much in return. +Reqs doesn't have an infinite budget. +Good Reqs can land supplies anywhere outside - given coords - and sometimes in a minimal amount of time. +A ‘point blank’ or ‘PB’ is a type of attack with a firearm where you click directly on a mob next to you. These attacks are not effected by accuracy allowing you to quickly fire with weapons like a shotgun to great effect. Intel Officers can be put in a squad by going to CIC and requesting it. Any marine can perform CPR. On dead marines, this will increase the time they have until they become unrevivable. If you've been pounced on and your squad is unloading into the target, you can hit the 'rest' button to stay down so you don't get filled with lead after getting up. You can check the landing zone as a marine in the status panel. +The Colonial Marshals may come to crack down on too heavy of a Black Market usage. Functioning night vision goggles can be recharged with batteries. Broken night vision goggles can be repaired by an Engineer with a screwdriver. Not the loadout ones though, those cannot be fixed. You can put a pistol belt on your suit slot. (Just grab a rifle instead.) Alt-clicking the Squad Leader tracker lets you track your fireteam leader instead. Armor has a randomized reduction in effectiveness, and does not protect the digits. Take the wiki damage values as a best-case scenario. You can click on your Security Access Tuner (multitool) in your hand to locate the area's APC if there is one. +Need help learning the game and these tips aren't enough? Use MentorHelp or try to get ahold of your ship's Senior Enlisted Advisor. Clicking on your sprite with help intent will let you check your body, seeing where your fractures and other wounds are. Armor has insulative properties - taking it off will help you cool off and take less damage faster if you've been set on fire. Both foldable cades & plasteel cades if loosened and folded down can be transported in crates! In this way, you can use the crate as a portable breach-repair kit, or dragged (or carried via Power Loader) to an unsecure area for quick defensive set up. The fuel tank pouch doesn't just carry fuel for an incinerator- they can also carry full-size extinguishers. Toolbelts & tool pouches also may hold miniature extinguishers. The M2C heavy machine gunner belt rig can also carry C4, breaching charges, and most tools. +You can always multitask as Medic, such as by using pills or healing kits at the same time as defibrillator. +The nuclear ordnance requires BOTH communication towers to be actively held to decrypt the nuclear codes. +ARES will periodically report the amount of available tech points on Command Channel. +The quick wield keys generally prioritize wieldable gear going from left to right on your inventory bar. +Orbital Bombardment warheads respect roofing and hive core protection. They won't hit inside of protected areas. diff --git a/strings/memetips.txt b/strings/memetips.txt index e05ac2f66b..abfe087218 100644 --- a/strings/memetips.txt +++ b/strings/memetips.txt @@ -12,17 +12,39 @@ Contrary to popular belief, turning off IFF as a Smartgunner does not actually i When playing as a Xenomorph, remember to aim for the groin to inflict additional psychological damage to marines. Never tell an officer that you're smarter than them - especially if it's true. There is no USS Sulaco. -There is no such thing as an Intel Officer. +There is no such thing as a Radio-Telephone Operator. There is no such thing as a techweb. +There is no such thing as a tip. +There is no such thing as a Fatty. +Dropship update is dropping tomorrow. +Don't forget your ceramic plates. Echo Squad does not exist. +Reqs should always spend all its resources on the Black Market. Foxtrot Squad DEFINITELY does not exist. +Intel Squad is a unicorn. Spec rolls are not actually random. +Watch out for Queen's charge ability. Never, ever attempt to correct a Provost about anything. If you die, make sure to ahelp so staff can restart the round! +You can obtain spec tokens by climbing outside the map and into space. There is no alcohol on Whiskey Outpost, other than in the Ground Commander's locker. Hitting enemies with weapons damages them. +Don't swap East and West. AGAIN. +Don't swap Minus and Positive coordinates... AGAIN. +OB'ing the FOB is always an option. +OB'ing the FOB is the best way to get some recognition from the aCO. +The sky erupts into flames right above you! This tip is a lie. +Stay hydrated. +Have a good day. +There is no tip. +These tips suck. Please write more. +This tip is not ready, please wait until next round. +Someone stole this tip, ask staff for a new one. If it's stupid but it works, it isn't stupid. If it's stupid but it works, it's still stupid and you got lucky. Corroders aren't real. They can't hurt you. ARES is not sentient. It has no feelings and its only thoughts are pre-programmed subroutines. +Remember that as Yautja HPCs are your primary weapons. +You can always bully staff into giving you more awesome tips. +Embrace the suck. diff --git a/strings/metatips.txt b/strings/metatips.txt index f694da02b5..24be6896bc 100644 --- a/strings/metatips.txt +++ b/strings/metatips.txt @@ -1,13 +1,22 @@ Remember hotkeys and macros can be customized to your liking. Hotkeys can be accessed in your preferences, and macros can be edited in the Byond macro editor, available in the top left drop down menu (click the Byond logo in the corner of the game window). -If you're unsure about a gameplay mechanic, use the 'mentorhelp' verb in the Admin tab to ask veteran players on the subject. +If you're unsure about a gameplay mechanic, use the 'mentorhelp' verb in the Admin tab to ask veteran players on the subject. It is also available from the pause menu, pressing ESCAPE. Try not to get too mad about dying. We’re all here to have fun. +You can get information on current TestMerges by pressing 'Show Server Revision' in 'OOC' tab. After dying, ask yourself what you did wrong and make a mental note to not make the same mistake again. Communication, be it from a marine to a marine, a drone to the queen, or command to everyone, is vital and information on flanks can change how the entire round plays out. As an alien or marine, be careful of the flank, regardless of if the push is going well or stalling out. Half of getting good is knowing to be aggressive. The other half is knowing when not to be aggressive. Alt-click a storage item to draw the last item in it (last non-weapon if it's a weapon belt). Middle-click a storage item to immediately open it, and middle-click structures to attempt to vault them. Use "North, South, West, East" when referring to locations in-game rather than "up, down, left, right". +As a mentor, you can become the imaginary friend of a new player to teach them! You shouldn't ignore what your allies are up to. Sometimes they can be organizing a flank in hivemind/radio, sometimes they can be walking up behind you with a slug-loaded shotgun. Either way, it pays to be alert to what they're doing, as much to as what the enemies are. The Wiki (https://cm-ss13.com/wiki) is a very useful repository of information about the game, such as weapons, equipment, xenomorph castes and their strains. It may not be fully up to date much of the time, but the basics are usually accurate. As an observer, you may see how much remaining hijack time is left in the status panel. -Embrace the suck. +You can always AdminHelp with the F1 key to question a mmeber of staff regarding rules or game bugs. +As ghost you are given extra tools for spectating the round: you can jump and follow specific players, get notifications about CAS and OB strikes, can see all health bars, and such. +You can press ESC key to bring up the game pause menu. It allows you change settings, AdminHelp and MentorHelp, and even access the Web Maps of game by clicking at top right. +Dead? You can take that moment to 'Edit Characters' from Preferences or Escape menus, to flesh out your characters or change your settings. +Control of intelligence is important: be it for retrieving it as marine, or denying it as Xeno. +If the lobby music is too loud or bothering you, you can disable it in Preferences tab at top right. +Maps can and will be unpredictably modified by the Nightmare system - stay frosty while roaming around! +You can go to GitHub to view code of the game and propose modifications of your own. diff --git a/strings/xenotips.txt b/strings/xenotips.txt index 2ca2964ae2..8674146de6 100644 --- a/strings/xenotips.txt +++ b/strings/xenotips.txt @@ -32,5 +32,7 @@ You can join the hive as a living Facehugger by clicking on the hive's Eggmorphe Playable Facehuggers can leap onto targets with a one-second windup, but this will only infect them if they are adjacent to it. Otherwise, it will simply knock them down for a small duration. As a Facehugger, you cannot talk in hivemind, but you can still open Hive Status and overwatch your sisters. This can be useful if you're locating other Facehuggers, flanker castes, or trying to learn from experienced Facehugger players. Shift-clicking the Queen indicator will tell you what area you are in, on the map. +As a Ravager your abilities become greatly enhanced when you empower with three or more people around you. Resisting on a water tile will immediately put out fires. Make sure you're alone though - It's usually better to let a friendly Xenomorph pat you out than it is to expose yourself to open water. You can filter out the Xenomorphs displayed in hive status by health, allowing you to look only for wounded sisters. +Each xeno has their own ‘tackle counter’ on a marine. The range to successfully tackle can be anywhere from two to six tackles based on caste. If a marine gets stunned or knocked over by other means it will reset everyone's tackle counters and they may get up! From 98c34ed44c37c9f6698c62052650d74fe465be7f Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Thu, 26 Oct 2023 21:58:47 +0100 Subject: [PATCH 12/54] Automatic changelog for PR #4772 [ci skip] --- html/changelogs/AutoChangeLog-pr-4772.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-4772.yml diff --git a/html/changelogs/AutoChangeLog-pr-4772.yml b/html/changelogs/AutoChangeLog-pr-4772.yml new file mode 100644 index 0000000000..bf0c0ef5b0 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-4772.yml @@ -0,0 +1,4 @@ +author: "fira" +delete-after: True +changes: + - rscadd: "Added about 50 new tips." \ No newline at end of file From e7caf52c21e01e4580cbf03ff1c61579054dd7a2 Mon Sep 17 00:00:00 2001 From: fira Date: Thu, 26 Oct 2023 22:08:36 +0200 Subject: [PATCH 13/54] Rewrite Xeno Acid processing (#4759) # About the pull request Rewrites scheduling of xeno acid to hopefully finally be done with dangling references warnings with acid. Also generally improves the awful code quality # Explain why it's good for the game Like, dude, some of these values were outright inversed. acid_**strength**=2.5 is noted as "250% speed" when it multiplies the sleep delays. Can't leave code in that state. # Testing Photographs and Procedure Summary testing, timing appear correct overall but I'm not entirely certain it's perfect due to random delays and obtuse code # Changelog :cl: code: Rewrote Xeno Acid ticking code. fix: Weather updates won't cause turfs to acid melt more rapidly anymore /:cl: --- code/game/objects/effects/aliens.dm | 149 ++++++++++-------- .../abilities/ability_helper_procs.dm | 2 +- .../abilities/runner/runner_powers.dm | 2 +- 3 files changed, 87 insertions(+), 66 deletions(-) diff --git a/code/game/objects/effects/aliens.dm b/code/game/objects/effects/aliens.dm index 49d758b52b..867c6924b3 100644 --- a/code/game/objects/effects/aliens.dm +++ b/code/game/objects/effects/aliens.dm @@ -287,19 +287,23 @@ opacity = FALSE anchored = TRUE unacidable = TRUE + /// Target the acid is melting var/atom/acid_t - var/ticks = 0 - var/acid_strength = 1 //100% speed, normal - var/barricade_damage = 40 + /// Duration left to next acid stage + var/remaining = 0 + /// Acid stages left to complete melting + var/ticks_left = 3 + /// Factor of duration between acid progression + var/acid_delay = 1 /// How much fuel the acid drains from the flare every acid tick var/flare_damage = 500 - var/barricade_damage_ticks = 10 // tick is once per 5 seconds. This tells us how many times it will try damaging barricades + var/barricade_damage = 40 var/in_weather = FALSE //Sentinel weakest acid /obj/effect/xenomorph/acid/weak name = "weak acid" - acid_strength = 2.5 //250% normal speed + acid_delay = 2.5 //250% delay (40% speed) barricade_damage = 20 flare_damage = 150 icon_state = "acid_weak" @@ -307,24 +311,32 @@ //Superacid /obj/effect/xenomorph/acid/strong name = "strong acid" - acid_strength = 0.4 //40% normal speed + acid_delay = 0.4 //40% delay (250% speed) barricade_damage = 100 flare_damage = 1875 icon_state = "acid_strong" -/obj/effect/xenomorph/acid/New(loc, target) - ..(loc) +/obj/effect/xenomorph/acid/Initialize(mapload, atom/target) + . = ..() acid_t = target - var/strength_t = isturf(acid_t) ? 8:4 // Turf take twice as long to take down. + if(isturf(acid_t)) + ticks_left = 7 // Turf take twice as long to take down. + else if(istype(acid_t, /obj/structure/barricade)) + ticks_left = 9 handle_weather() - tick(strength_t) - RegisterSignal(SSdcs, COMSIG_GLOB_WEATHER_CHANGE, PROC_REF(handle_weather)) + RegisterSignal(acid_t, COMSIG_PARENT_QDELETING, PROC_REF(cleanup)) + START_PROCESSING(SSeffects, src) /obj/effect/xenomorph/acid/Destroy() acid_t = null + STOP_PROCESSING(SSeffects, src) . = ..() +/obj/effect/xenomorph/acid/proc/cleanup() + SIGNAL_HANDLER + qdel(src) + /obj/effect/xenomorph/acid/proc/handle_weather() SIGNAL_HANDLER @@ -333,76 +345,85 @@ return if(SSweather.is_weather_event && locate(acids_area) in SSweather.weather_areas) - acid_strength = acid_strength + (SSweather.weather_event_instance.fire_smothering_strength * 0.33) //smothering_strength is 1-10, acid strength is a multiplier + acid_delay = acid_delay + (SSweather.weather_event_instance.fire_smothering_strength * 0.33) //smothering_strength is 1-10, acid strength is a multiplier in_weather = SSweather.weather_event_instance.fire_smothering_strength else - acid_strength = initial(acid_strength) + acid_delay = initial(acid_delay) in_weather = FALSE /obj/effect/xenomorph/acid/proc/handle_barricade() + if(prob(in_weather)) + visible_message(SPAN_XENOWARNING("Acid on \The [acid_t] subsides!")) + return NONE var/obj/structure/barricade/cade = acid_t - if(istype(cade)) - cade.take_acid_damage(barricade_damage) - -/obj/effect/xenomorph/acid/proc/tick(strength_t) - set waitfor = 0 - if(!acid_t || !acid_t.loc) - qdel(src) + cade.take_acid_damage(barricade_damage) + return (5 SECONDS) + +/obj/effect/xenomorph/acid/proc/handle_flashlight() + var/obj/item/device/flashlight/flare/flare = acid_t + if(flare.fuel <= 0) + return NONE + flare.fuel -= flare_damage + return (rand(15, 25) SECONDS) * acid_delay + +/obj/effect/xenomorph/acid/process(delta_time) + remaining -= delta_time * (1 SECONDS) + if(remaining > 0) return + ticks_left -= 1 - if(istype(acid_t,/obj/structure/barricade)) - if(++ticks >= barricade_damage_ticks || prob(in_weather)) - visible_message(SPAN_XENOWARNING("Acid on \The [acid_t] subsides!")) - qdel(src) - return - handle_barricade() - sleep(50) - .() - return - if(istype(acid_t, /obj/item/device/flashlight/flare)) - var/obj/item/device/flashlight/flare/flare = acid_t - if(flare.fuel > 0) //Flares that have fuel in them lose fuel instead of melting - flare.fuel -= flare_damage - sleep(rand(150,250) * (acid_strength)) - return .() - - if(++ticks >= strength_t) - visible_message(SPAN_XENODANGER("[acid_t] collapses under its own weight into a puddle of goop and undigested debris!")) - playsound(src, "acid_hit", 25, TRUE) - - if(istype(acid_t, /turf)) - if(istype(acid_t, /turf/closed/wall)) - var/turf/closed/wall/W = acid_t - new /obj/effect/acid_hole (W) - else - var/turf/T = acid_t - T.ScrapeAway() - else if (istype(acid_t, /obj/structure/girder)) - var/obj/structure/girder/G = acid_t - G.dismantle() - else if(istype(acid_t, /obj/structure/window/framed)) - var/obj/structure/window/framed/WF = acid_t - WF.deconstruct(disassembled = FALSE) - else if(istype(acid_t,/obj/item/explosive/plastic)) - qdel(acid_t) + var/return_delay = NONE + if(istype(acid_t, /obj/structure/barricade)) + return_delay = handle_barricade() + else if(istype(acid_t, /obj/item/device/flashlight/flare)) + return_delay = handle_flashlight() + else + return_delay = (rand(20, 30) SECONDS) * acid_delay - else - if(acid_t.contents.len) //Hopefully won't auto-delete things inside melted stuff.. - for(var/mob/M in acid_t.contents) - if(acid_t.loc) M.forceMove(acid_t.loc) - QDEL_NULL(acid_t) + if(!ticks_left) + finish_melting() + return PROCESS_KILL + if(!return_delay) qdel(src) - return + return PROCESS_KILL - switch(strength_t - ticks) + remaining = return_delay + + switch(ticks_left) if(6) visible_message(SPAN_XENOWARNING("\The [acid_t] is barely holding up against the acid!")) if(4) visible_message(SPAN_XENOWARNING("\The [acid_t]\s structure is being melted by the acid!")) if(2) visible_message(SPAN_XENOWARNING("\The [acid_t] is struggling to withstand the acid!")) if(0 to 1) visible_message(SPAN_XENOWARNING("\The [acid_t] begins to crumble under the acid!")) - sleep(rand(200,300) * (acid_strength)) - .() +/obj/effect/xenomorph/acid/proc/finish_melting() + visible_message(SPAN_XENODANGER("[acid_t] collapses under its own weight into a puddle of goop and undigested debris!")) + playsound(src, "acid_hit", 25, TRUE) + + if(istype(acid_t, /turf)) + if(istype(acid_t, /turf/closed/wall)) + var/turf/closed/wall/wall = acid_t + new /obj/effect/acid_hole(wall) + else + var/turf/turf = acid_t + turf.ScrapeAway() + + else if (istype(acid_t, /obj/structure/girder)) + var/obj/structure/girder/girder = acid_t + girder.dismantle() + + else if(istype(acid_t, /obj/structure/window/framed)) + var/obj/structure/window/framed/window = acid_t + window.deconstruct(disassembled = FALSE) + + else if(istype(acid_t, /obj/structure/barricade)) + pass() // Don't delete it, just damaj + + else + for(var/mob/mob in acid_t) + mob.forceMove(loc) + qdel(acid_t) + qdel(src) /obj/effect/xenomorph/boiler_bombard name = "???" diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm b/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm index af8f33cf1c..7058376992 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/ability_helper_procs.dm @@ -135,7 +135,7 @@ if(istype(O, /obj/vehicle/multitile)) var/obj/vehicle/multitile/R = O - R.take_damage_type((1 / A.acid_strength) * 40, "acid", src) + R.take_damage_type(40 / A.acid_delay, "acid", src) visible_message(SPAN_XENOWARNING("[src] vomits globs of vile stuff at \the [O]. It sizzles under the bubbling mess of acid!"), \ SPAN_XENOWARNING("You vomit globs of vile stuff at [O]. It sizzles under the bubbling mess of acid!"), null, 5) playsound(loc, "sound/bullets/acid_impact1.ogg", 25) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_powers.dm index 708334d31a..9a29e2cb6d 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/runner/runner_powers.dm @@ -130,7 +130,7 @@ if(istype(O, /obj/vehicle/multitile)) var/obj/vehicle/multitile/R = O - R.take_damage_type((1 / A.acid_strength) * 20, "acid", src) + R.take_damage_type(20 / A.acid_delay, "acid", src) visible_message(SPAN_XENOWARNING("[src] vomits globs of vile stuff at \the [O]. It sizzles under the bubbling mess of acid!"), \ SPAN_XENOWARNING("You vomit globs of vile stuff at [O]. It sizzles under the bubbling mess of acid!"), null, 5) playsound(loc, "sound/bullets/acid_impact1.ogg", 25) From 6c9641d9cedc9b507877ea0e9b7d76f6401f6c11 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Thu, 26 Oct 2023 22:13:28 +0100 Subject: [PATCH 14/54] Automatic changelog for PR #4759 [ci skip] --- html/changelogs/AutoChangeLog-pr-4759.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-4759.yml diff --git a/html/changelogs/AutoChangeLog-pr-4759.yml b/html/changelogs/AutoChangeLog-pr-4759.yml new file mode 100644 index 0000000000..42a30db9e6 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-4759.yml @@ -0,0 +1,5 @@ +author: "fira" +delete-after: True +changes: + - code_imp: "Rewrote Xeno Acid ticking code." + - bugfix: "Weather updates won't cause turfs to acid melt more rapidly anymore" \ No newline at end of file From aafa42697f0b9558d51a4fcb6a0ebebe1795b87b Mon Sep 17 00:00:00 2001 From: forest2001 <41653574+realforest2001@users.noreply.github.com> Date: Thu, 26 Oct 2023 21:09:03 +0100 Subject: [PATCH 15/54] Fixes custom ERT calling (#4783) # About the pull request Removes announce_dispatch_message variable as it was a defunct duplicate of a different variable. Adds and fixes the announcement settings for custom ERTs. # Explain why it's good for the game # Testing Photographs and Procedure
Screenshots & Videos Put screenshots and videos here with an empty line between the screenshots and the `
` tags.
# Changelog :cl: fix: Fixes custom ERT calling broadcasting when it should not. code: Removes unused vars from ERT procs. code: Renames the announce var in ERT procs to be more indicative of what it does. add: Added a setting on custom ERTs for announcing beacon was received. /:cl: --- code/datums/emergency_calls/cryo_marines.dm | 2 +- .../emergency_calls/cryo_marines_heavy.dm | 2 +- code/datums/emergency_calls/emergency_call.dm | 14 +++++----- .../colonialmarines/colonialmarines.dm | 2 +- .../colonialmarines/whiskey_outpost.dm | 2 +- code/game/supplyshuttle.dm | 2 +- code/modules/admin/tabs/event_tab.dm | 21 ++++++++------ code/modules/admin/topic/topic.dm | 2 +- code/modules/admin/topic/topic_events.dm | 28 +++++++++++++++++-- .../cm_tech/techs/marine/tier3/cryo_spec.dm | 2 +- .../cm_tech/techs/marine/tier3/cryorine.dm | 2 +- .../chemistry_properties/prop_special.dm | 2 +- 12 files changed, 54 insertions(+), 27 deletions(-) diff --git a/code/datums/emergency_calls/cryo_marines.dm b/code/datums/emergency_calls/cryo_marines.dm index 7ed61852e9..19f73a9843 100644 --- a/code/datums/emergency_calls/cryo_marines.dm +++ b/code/datums/emergency_calls/cryo_marines.dm @@ -13,7 +13,7 @@ var/leaders = 0 spawn_max_amount = TRUE -/datum/emergency_call/cryo_squad/spawn_candidates(announce, override_spawn_loc, announce_dispatch_message) +/datum/emergency_call/cryo_squad/spawn_candidates(quiet_launch, announce_incoming, override_spawn_loc) var/datum/squad/marine/cryo/cryo_squad = RoleAuthority.squads_by_type[/datum/squad/marine/cryo] leaders = cryo_squad.num_leaders . = ..() diff --git a/code/datums/emergency_calls/cryo_marines_heavy.dm b/code/datums/emergency_calls/cryo_marines_heavy.dm index 70ce524435..f4fe3c9f2a 100644 --- a/code/datums/emergency_calls/cryo_marines_heavy.dm +++ b/code/datums/emergency_calls/cryo_marines_heavy.dm @@ -16,7 +16,7 @@ var/leaders = 0 -/datum/emergency_call/cryo_squad_equipped/spawn_candidates(announce, override_spawn_loc, announce_dispatch_message) +/datum/emergency_call/cryo_squad_equipped/spawn_candidates(quiet_launch, announce_incoming, override_spawn_loc) var/datum/squad/marine/cryo/cryo_squad = RoleAuthority.squads_by_type[/datum/squad/marine/cryo] leaders = cryo_squad.num_leaders . = ..() diff --git a/code/datums/emergency_calls/emergency_call.dm b/code/datums/emergency_calls/emergency_call.dm index 79ba9fff97..4c3dfbbfac 100644 --- a/code/datums/emergency_calls/emergency_call.dm +++ b/code/datums/emergency_calls/emergency_call.dm @@ -91,12 +91,12 @@ else return chosen_call -/datum/game_mode/proc/get_specific_call(call_name, quiet_launch = FALSE, announce = TRUE, is_emergency = TRUE, info = "", announce_dispatch_message = TRUE) +/datum/game_mode/proc/get_specific_call(call_name, quiet_launch = FALSE, announce_incoming = TRUE, info = "") for(var/datum/emergency_call/E in all_calls) //Loop through all potential candidates if(E.name == call_name) var/datum/emergency_call/em_call = new E.type() em_call.objective_info = info - em_call.activate(quiet_launch, announce, is_emergency, announce_dispatch_message) + em_call.activate(quiet_launch, announce_incoming) return error("get_specific_call could not find emergency call '[call_name]'") return @@ -192,7 +192,7 @@ else to_chat(src, SPAN_WARNING("You did not get enlisted in the response team. Better luck next time!")) -/datum/emergency_call/proc/activate(quiet_launch = FALSE, announce = TRUE, turf/override_spawn_loc, announce_dispatch_message = TRUE) +/datum/emergency_call/proc/activate(quiet_launch = FALSE, announce_incoming = TRUE, turf/override_spawn_loc) set waitfor = 0 if(!SSticker.mode) //Something horribly wrong with the gamemode ticker return @@ -205,9 +205,9 @@ if(!quiet_launch) marine_announcement("A distress beacon has been launched from the [MAIN_SHIP_NAME].", "Priority Alert", 'sound/AI/distressbeacon.ogg', logging = ARES_LOG_SECURITY) - addtimer(CALLBACK(src, TYPE_PROC_REF(/datum/emergency_call, spawn_candidates), quiet_launch, announce, override_spawn_loc, announce_dispatch_message), 30 SECONDS) + addtimer(CALLBACK(src, TYPE_PROC_REF(/datum/emergency_call, spawn_candidates), quiet_launch, announce_incoming, override_spawn_loc), 30 SECONDS) -/datum/emergency_call/proc/spawn_candidates(quiet_launch = FALSE, announce = TRUE, override_spawn_loc, announce_dispatch_message = TRUE) +/datum/emergency_call/proc/spawn_candidates(quiet_launch = FALSE, announce_incoming = TRUE, override_spawn_loc) if(SSticker.mode) SSticker.mode.picked_calls -= src @@ -248,7 +248,7 @@ if(I.current) to_chat(I.current, SPAN_WARNING("You didn't get selected to join the distress team. Better luck next time!")) - if(announce) + if(announce_incoming) marine_announcement(dispatch_message, "Distress Beacon", 'sound/AI/distressreceived.ogg', logging = ARES_LOG_SECURITY) //Announcement that the Distress Beacon has been answered, does not hint towards the chosen ERT message_admins("Distress beacon: [src.name] finalized, setting up candidates.") @@ -304,7 +304,7 @@ create_member(null, override_spawn_loc) candidates = list() - if(arrival_message && announce) + if(arrival_message && announce_incoming) marine_announcement(arrival_message, "Intercepted Tranmission:") /datum/emergency_call/proc/add_candidate(mob/M) diff --git a/code/game/gamemodes/colonialmarines/colonialmarines.dm b/code/game/gamemodes/colonialmarines/colonialmarines.dm index 258a1a9627..df04873ac1 100644 --- a/code/game/gamemodes/colonialmarines/colonialmarines.dm +++ b/code/game/gamemodes/colonialmarines/colonialmarines.dm @@ -265,7 +265,7 @@ continue if(groundside_humans > (groundside_xenos * GROUNDSIDE_XENO_MULTIPLIER)) - SSticker.mode.get_specific_call("Xenomorphs Groundside (Forsaken)", TRUE, FALSE, FALSE, announce_dispatch_message = FALSE) + SSticker.mode.get_specific_call("Xenomorphs Groundside (Forsaken)", TRUE, FALSE) TIMER_COOLDOWN_START(src, COOLDOWN_HIJACK_GROUND_CHECK, 1 MINUTES) diff --git a/code/game/gamemodes/colonialmarines/whiskey_outpost.dm b/code/game/gamemodes/colonialmarines/whiskey_outpost.dm index 3d856f35ce..e7d7b7a67e 100644 --- a/code/game/gamemodes/colonialmarines/whiskey_outpost.dm +++ b/code/game/gamemodes/colonialmarines/whiskey_outpost.dm @@ -193,7 +193,7 @@ announce_xeno_wave(wave) if(xeno_wave == 7) //Wave when Marines get reinforcements! - get_specific_call("Marine Reinforcements (Squad)", FALSE, TRUE, FALSE) + get_specific_call("Marine Reinforcements (Squad)", FALSE, TRUE) xeno_wave = min(xeno_wave + 1, WO_MAX_WAVE) diff --git a/code/game/supplyshuttle.dm b/code/game/supplyshuttle.dm index 53ce9ef177..e8f40c1d52 100644 --- a/code/game/supplyshuttle.dm +++ b/code/game/supplyshuttle.dm @@ -1251,7 +1251,7 @@ var/datum/controller/supply/supply_controller = new() /datum/controller/supply/proc/black_market_investigation() black_market_heat = -1 - SSticker.mode.get_specific_call("Inspection - Colonial Marshal Ledger Investigation Team", TRUE, TRUE, FALSE) + SSticker.mode.get_specific_call("Inspection - Colonial Marshal Ledger Investigation Team", TRUE, TRUE) log_game("Black Market Inspection auto-triggered.") /obj/structure/machinery/computer/supplycomp/proc/is_buyable(datum/supply_packs/supply_pack) diff --git a/code/modules/admin/tabs/event_tab.dm b/code/modules/admin/tabs/event_tab.dm index b3e40af66e..8bcd15cb04 100644 --- a/code/modules/admin/tabs/event_tab.dm +++ b/code/modules/admin/tabs/event_tab.dm @@ -218,14 +218,17 @@ if(!istype(chosen_ert)) return - var/quiet_launch = tgui_alert(usr, "Would you like to announce the distress beacon to the server population? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS) - if(!quiet_launch) - qdel(chosen_ert) - return - if(quiet_launch == "No") - quiet_launch = TRUE - if (quiet_launch == "Yes") - quiet_launch = FALSE + var/launch_broadcast = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS) + if(launch_broadcast == "Yes") + launch_broadcast = TRUE + else + launch_broadcast = FALSE + + var/announce_receipt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS) + if(announce_receipt == "Yes") + announce_receipt = TRUE + else + announce_receipt = FALSE var/turf/override_spawn_loc var/prompt = tgui_alert(usr, "Spawn at their assigned spawn, or at your location?", "Spawnpoint Selection", list("Spawn", "Current Location"), 0) @@ -235,7 +238,7 @@ if(prompt == "Current Location") override_spawn_loc = get_turf(usr) - chosen_ert.activate(quiet_launch = quiet_launch, announce = !quiet_launch, override_spawn_loc = override_spawn_loc) + chosen_ert.activate(quiet_launch = launch_broadcast, announce_incoming = announce_receipt, override_spawn_loc = override_spawn_loc) message_admins("[key_name_admin(usr)] admin-called a [choice == "Randomize" ? "randomized ":""]distress beacon: [chosen_ert.name]") diff --git a/code/modules/admin/topic/topic.dm b/code/modules/admin/topic/topic.dm index 27e457be6d..f78b6a844d 100644 --- a/code/modules/admin/topic/topic.dm +++ b/code/modules/admin/topic/topic.dm @@ -2017,7 +2017,7 @@ if(distress_cancel) return distress_cancel = TRUE - SSticker.mode.get_specific_call("[ert_called]", TRUE, FALSE, FALSE) + SSticker.mode.get_specific_call("[ert_called]", TRUE, FALSE) log_game("[key_name_admin(approver)] has sent [ert_called], requested by [key_name_admin(ref_person)]") message_admins("[key_name_admin(approver)] has sent [ert_called], requested by [key_name_admin(ref_person)]") diff --git a/code/modules/admin/topic/topic_events.dm b/code/modules/admin/topic/topic_events.dm index 45d826668d..c38f715d93 100644 --- a/code/modules/admin/topic/topic_events.dm +++ b/code/modules/admin/topic/topic_events.dm @@ -206,7 +206,19 @@ em_call.players_to_offer = humans em_call.owner = owner - em_call.activate(announce = FALSE) + var/launch_broadcast = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS) + if(launch_broadcast == "Yes") + launch_broadcast = TRUE + else + launch_broadcast = FALSE + + var/announce_receipt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS) + if(announce_receipt == "Yes") + announce_receipt = TRUE + else + announce_receipt = FALSE + + em_call.activate(launch_broadcast, announce_receipt) message_admins("[key_name_admin(usr)] created [humans_to_spawn] humans as [job_name] at [get_area(initial_spot)]") @@ -284,7 +296,19 @@ em_call.players_to_offer = xenos em_call.owner = owner - em_call.activate(announce = FALSE) + var/launch_broadcast = tgui_alert(usr, "Would you like to broadcast the beacon launch? This will reveal the distress beacon to all players.", "Announce distress beacon?", list("Yes", "No"), 20 SECONDS) + if(launch_broadcast == "Yes") + launch_broadcast = TRUE + else + launch_broadcast = FALSE + + var/announce_receipt = tgui_alert(usr, "Would you like to announce the beacon received message? This will reveal the distress beacon to all players.", "Announce beacon received?", list("Yes", "No"), 20 SECONDS) + if(announce_receipt == "Yes") + announce_receipt = TRUE + else + announce_receipt = FALSE + + em_call.activate(launch_broadcast, announce_receipt) message_admins("[key_name_admin(usr)] created [xenos_to_spawn] xenos as [xeno_caste] at [get_area(initial_spot)]") diff --git a/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm b/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm index d6c849e883..16f0f26576 100644 --- a/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm +++ b/code/modules/cm_tech/techs/marine/tier3/cryo_spec.dm @@ -21,4 +21,4 @@ /datum/tech/cryomarine/on_unlock() . = ..() - SSticker.mode.get_specific_call("Marine Cryo Reinforcement (Spec)", TRUE, FALSE, FALSE, announce_dispatch_message = FALSE) + SSticker.mode.get_specific_call("Marine Cryo Reinforcement (Spec)", TRUE, FALSE) diff --git a/code/modules/cm_tech/techs/marine/tier3/cryorine.dm b/code/modules/cm_tech/techs/marine/tier3/cryorine.dm index 575ffe67b8..49b4eea8f5 100644 --- a/code/modules/cm_tech/techs/marine/tier3/cryorine.dm +++ b/code/modules/cm_tech/techs/marine/tier3/cryorine.dm @@ -23,4 +23,4 @@ /datum/tech/repeatable/cryomarine/on_unlock() . = ..() - SSticker.mode.get_specific_call("Marine Cryo Reinforcements (Tech)", TRUE, FALSE, FALSE, announce_dispatch_message = FALSE) + SSticker.mode.get_specific_call("Marine Cryo Reinforcements (Tech)", TRUE, FALSE) diff --git a/code/modules/reagents/chemistry_properties/prop_special.dm b/code/modules/reagents/chemistry_properties/prop_special.dm index 640e184263..cec04ca666 100644 --- a/code/modules/reagents/chemistry_properties/prop_special.dm +++ b/code/modules/reagents/chemistry_properties/prop_special.dm @@ -96,7 +96,7 @@ H.contract_disease(new /datum/disease/xeno_transformation(0),1) //This is the real reason PMCs are being sent to retrieve it. /datum/chem_property/special/DNA_Disintegrating/trigger() - SSticker.mode.get_specific_call("Weyland-Yutani Goon (Chemical Investigation Squad)", TRUE, FALSE, FALSE, holder.name, TRUE) + SSticker.mode.get_specific_call("Weyland-Yutani Goon (Chemical Investigation Squad)", TRUE, FALSE, holder.name) chemical_data.update_credits(10) message_admins("The research department has discovered DNA_Disintegrating in [holder.name] adding 10 bonus tech points.") var/datum/techtree/tree = GET_TREE(TREE_MARINE) From 9146ca8a80dea08360e80daa61131508f8b545c6 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Thu, 26 Oct 2023 22:28:45 +0100 Subject: [PATCH 16/54] Automatic changelog for PR #4783 [ci skip] --- html/changelogs/AutoChangeLog-pr-4783.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-4783.yml diff --git a/html/changelogs/AutoChangeLog-pr-4783.yml b/html/changelogs/AutoChangeLog-pr-4783.yml new file mode 100644 index 0000000000..ebded74b04 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-4783.yml @@ -0,0 +1,7 @@ +author: "realforest2001" +delete-after: True +changes: + - bugfix: "Fixes custom ERT calling broadcasting when it should not." + - code_imp: "Removes unused vars from ERT procs." + - code_imp: "Renames the announce var in ERT procs to be more indicative of what it does." + - rscadd: "Added a setting on custom ERTs for announcing beacon was received." \ No newline at end of file From 4b641b9e1b1bbc150b9ae8f0991c1bc9c068a63e Mon Sep 17 00:00:00 2001 From: Birdtalon Date: Thu, 26 Oct 2023 21:18:59 +0100 Subject: [PATCH 17/54] Vanguard Prae Pierce Refactor + Bugfix (#4641) # About the pull request Refactors a bit of `praetorian_powers.dm` Fixes #4612 Previously the ability would check for `opacity` alone meaning that it could be used through doors with windows in and attack people on the other side. Now checks each turf in turn for any `obj` which has `density` and `throwpass = 0` Also changed the visible message as the description for this ability says the Praetorian is using it's tail but the visible message says claws. # Explain why it's good for the game # Testing Photographs and Procedure
Screenshots & Videos ![dreamseeker_2023-10-11_21-26-49](https://github.com/cmss13-devs/cmss13/assets/25027759/f0d2ae9a-d730-4c86-892f-c1e980e50209) ![dreamseeker_2023-10-11_21-27-31](https://github.com/cmss13-devs/cmss13/assets/25027759/a310dbd3-e9f9-4e07-92b0-872da9254ed4)
# Changelog :cl: refactor: Refactored praetorian pierce ability fix: Praetorian vanguard can no longer pierce through windowed doors /:cl: --------- Co-authored-by: Lee B --- .../abilities/praetorian/praetorian_powers.dm | 100 +++++++++--------- 1 file changed, 51 insertions(+), 49 deletions(-) diff --git a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm index 3975a229bb..e926349af6 100644 --- a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm +++ b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_powers.dm @@ -1,74 +1,76 @@ -/datum/action/xeno_action/activable/pierce/use_ability(atom/A) - var/mob/living/carbon/xenomorph/X = owner +/datum/action/xeno_action/activable/pierce/use_ability(atom/targetted_atom) + var/mob/living/carbon/xenomorph/source_xeno = owner if (!action_cooldown_check()) return - if (!X.check_state()) + if (!source_xeno.check_state()) return - if(!A || A.layer >= FLY_LAYER || !isturf(X.loc)) + if(!targetted_atom || targetted_atom.layer >= FLY_LAYER || !isturf(source_xeno.loc)) return if (!check_and_use_plasma_owner()) return + //X = xeno user, A = target atom + var/list/turf/target_turfs = getline2(source_xeno, targetted_atom, include_from_atom = FALSE) + var/length_of_line = LAZYLEN(target_turfs) + if(length_of_line > 3) + target_turfs = target_turfs.Copy(1, 4) + // Get list of target mobs var/list/target_mobs = list() + var/blocked = FALSE - - var/list/target_turfs = list() - var/facing = Get_Compass_Dir(X, A) - var/turf/T = X.loc - var/turf/temp = X.loc - - for(var/x in 0 to 2) - temp = get_step(T, facing) - if(!temp || temp.density || temp.opacity) - break - - var/blocked = FALSE - for(var/obj/structure/S in temp) - if(istype(S, /obj/structure/window/framed)) - var/obj/structure/window/framed/W = S - if(!W.unslashable) - W.deconstruct(disassembled = FALSE) - - if(S.opacity) - blocked = TRUE - break + for(var/turf/path_turf as anything in target_turfs) if(blocked) break + //Check for walls etc and stop if we encounter one + if(path_turf.density) + break - T = temp - target_turfs += T - - for(var/turf/target_turf in target_turfs) - for(var/mob/living/carbon/H in target_turf) - if (!isxeno_human(H) || X.can_not_harm(H)) - continue - - if(!(H in target_mobs)) - target_mobs += H - - X.visible_message(SPAN_XENODANGER("[X] slashes its claws through the area in front of it!"), SPAN_XENODANGER("You slash your claws through the area in front of you!")) - X.animation_attack_on(A, 15) - - X.emote("roar") - - // Loop through our turfs, finding any humans there and dealing damage to them - for (var/mob/living/carbon/H in target_mobs) - if (!isxeno_human(H) || X.can_not_harm(H)) + //Check for structures such as doors + for(var/atom/path_content as anything in path_turf.contents) + if(isobj(path_content)) + var/obj/object = path_content + //If we shouldn't be able to pass through it then stop at this turf + if(object.density && !object.throwpass) + blocked = TRUE + break + + if(istype(object, /obj/structure/window/framed)) + var/obj/structure/window/framed/framed_window = object + if(!framed_window.unslashable) + framed_window.deconstruct(disassembled = FALSE) + + //Check for mobs and add them to our target list for damage + if(iscarbon(path_content)) + var/mob/living/carbon/mob_to_act = path_content + if(!isxeno_human(mob_to_act) || source_xeno.can_not_harm(mob_to_act)) + continue + + if(!(mob_to_act in target_mobs)) + target_mobs += mob_to_act + + source_xeno.visible_message(SPAN_XENODANGER("[source_xeno] slashes its tail through the area in front of it!"), SPAN_XENODANGER("You slash your tail through the area in front of you!")) + source_xeno.animation_attack_on(targetted_atom, 15) + + source_xeno.emote("roar") + + // Loop through our mob list, finding any humans there and dealing damage to them + for (var/mob/living/carbon/current_mob in target_mobs) + if (!isxeno_human(current_mob) || source_xeno.can_not_harm(current_mob)) continue - if (H.stat == DEAD) + if (current_mob.stat == DEAD) continue - X.flick_attack_overlay(H, "slash") - H.apply_armoured_damage(get_xeno_damage_slash(H, damage), ARMOR_MELEE, BRUTE, null, 20) + current_mob.flick_attack_overlay(current_mob, "slash") + current_mob.apply_armoured_damage(get_xeno_damage_slash(current_mob, damage), ARMOR_MELEE, BRUTE, null, 20) if (target_mobs.len >= shield_regen_threshold) - if (X.mutation_type == PRAETORIAN_VANGUARD) - var/datum/behavior_delegate/praetorian_vanguard/BD = X.behavior_delegate + if (source_xeno.mutation_type == PRAETORIAN_VANGUARD) + var/datum/behavior_delegate/praetorian_vanguard/BD = source_xeno.behavior_delegate if (istype(BD)) BD.regen_shield() From 7c5f7ab5d5f82429a90320e28f9b1b69e0ac9458 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Thu, 26 Oct 2023 22:44:21 +0100 Subject: [PATCH 18/54] Automatic changelog for PR #4641 [ci skip] --- html/changelogs/AutoChangeLog-pr-4641.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-4641.yml diff --git a/html/changelogs/AutoChangeLog-pr-4641.yml b/html/changelogs/AutoChangeLog-pr-4641.yml new file mode 100644 index 0000000000..96049a37d1 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-4641.yml @@ -0,0 +1,5 @@ +author: "Birdtalon" +delete-after: True +changes: + - refactor: "Refactored praetorian pierce ability" + - bugfix: "Praetorian vanguard can no longer pierce through windowed doors" \ No newline at end of file From 38ced94fc7dee11e73f66f6c008983493aac13a5 Mon Sep 17 00:00:00 2001 From: SASoperative <147741618+SASoperative@users.noreply.github.com> Date: Thu, 26 Oct 2023 19:34:01 -0500 Subject: [PATCH 19/54] Sprites changes for old donator kit (#4702) # About the pull request Added sprites for the Juggernaut Donator kit. # Explain why it's good for the game Replaces the old donator set which was using the vanilla syndicate hardsuit from SS13. # Testing Photographs and Procedure
Screenshots & Videos (https://media.discordapp.net/attachments/1155292420343345182/1158740768677175396/jbTCHQLNCAANgNFAq26gCqW1JQoiUKTlCe6Fw6MLaXkbaVde0BxSxRAQAeyREQFokxREQARQEEypikNABCACiPOu7WoWAWzX9ot68lkQwKIQ02KFgBAQAitBQASwEkPqMYSAEBACXgREAF7EJC8EhIAQWAkCIoCVGFKPIQSEgBDwIiAC8CImeSEgBITAShAQAazEkHoMISAEhIAXARGAFzHJCwEhIARWgoAIYCWG1GMIASEgBLwIiAC8iEleCAgBIbASBP4POBL9vytFWmQAAAAASUVORK5CYII.png?ex=652e7c6f&is=651c076f&hm=12a12a220c0c86891b429785dacdfc940dde3ac22dddd9f346ecf3b05be15459&)
# Changelog :cl: add: Added donator item and sprites /:cl: --------- Co-authored-by: Zonespace <41448081+Zonespace27@users.noreply.github.com> --- code/modules/cm_marines/Donator_Items.dm | 26 ++++++++++++----------- code/modules/cm_marines/Donator_Kits.dm | 2 +- icons/mob/humans/onmob/back.dmi | Bin 104630 -> 110676 bytes icons/mob/humans/onmob/head_0.dmi | Bin 111771 -> 112697 bytes icons/mob/humans/onmob/suit_0.dmi | Bin 330109 -> 332134 bytes icons/obj/items/clothing/backpacks.dmi | Bin 60368 -> 60965 bytes icons/obj/items/clothing/hats.dmi | Bin 54930 -> 55462 bytes icons/obj/items/clothing/suits.dmi | Bin 164838 -> 165536 bytes 8 files changed, 15 insertions(+), 13 deletions(-) diff --git a/code/modules/cm_marines/Donator_Items.dm b/code/modules/cm_marines/Donator_Items.dm index 1c7281114c..bcebad4661 100644 --- a/code/modules/cm_marines/Donator_Items.dm +++ b/code/modules/cm_marines/Donator_Items.dm @@ -126,6 +126,9 @@ /obj/item/storage/backpack/marine/fluff xeno_types = null +/obj/item/storage/backpack/marine/satchel/fluff + xeno_types = null + /obj/item/clothing/gloves/marine/fluff //MARINE GLOVES TEMPLATE name = "ITEM NAME" desc = "ITEM DESCRIPTION. DONOR ITEM" //Add UNIQUE if Unique @@ -211,10 +214,10 @@ item_state = "armor_reflec" /obj/item/clothing/suit/storage/marine/fluff/sas_juggernaut //CKEY=sasoperative (UNIQUE) - name = "Juggernaut Armor" + name = "juggernaut armor" desc = "Some fancy looking armor. DONOR ITEM" - icon_state = "rig-syndi" - item_state = "syndie_hardsuit" + icon_state = "skinnerarmor" + item_state = "skinnerarmor" /obj/item/clothing/suit/storage/marine/fluff/penguin //CKEY=tophatpenguin name = "Trenchcoat" @@ -589,8 +592,8 @@ flags_inv_hide = HIDEEARS|HIDEALLHAIR /obj/item/clothing/head/helmet/marine/fluff/sas_juggernaut //CKEY=sasoperative (UNIQUE) - name = "Juggernaut Helmet" - icon_state = "rig0-syndi" + name = "juggernaut helmet" + icon_state = "skinnerhelmet" desc = "A red helmet, for pairing with JuggerNaut Armor. DONOR ITEM" /obj/item/clothing/head/helmet/marine/fluff/tristan //CKEY=tristan63 @@ -613,13 +616,6 @@ flags_inventory = BLOCKSHARPOBJ flags_inv_hide = HIDEEARS|HIDEMASK|HIDEEYES|HIDEALLHAIR -/obj/item/clothing/head/helmet/marine/fluff/sas_juggernaut_alt //CKEY=sasoperative (UNIQUE) - name = "Juggernaut Helmet" - icon_state = "ncrhelmet" - desc = "A red helmet, for pairing with JuggerNaut Armor. DONOR ITEM" - flags_inventory = BLOCKSHARPOBJ - flags_inv_hide = HIDEEARS|HIDEMASK|HIDEEYES|HIDEALLHAIR - /obj/item/clothing/head/helmet/marine/fluff/sadokist //CKEY=sadokist name = "Tanya's Beret" desc = "A bright red beret, owned by Tanya Edenia." @@ -1366,6 +1362,12 @@ icon_state = "securitypack" item_state = "securitypack" +/obj/item/storage/backpack/marine/satchel/fluff/sas_juggernaut //CKEY=sasoperative (UNIQUE) + name = "tactical radiopack" + desc = "A Radio backpack for use with the Juggernaut armor. DONOR ITEM" + icon_state = "skinnerpack" + item_state = "skinnerpack" + /obj/item/clothing/glasses/fluff/alexwarhammer name = "Black Jack's Dank Shades" desc = "+20 Badass points. Donor item" diff --git a/code/modules/cm_marines/Donator_Kits.dm b/code/modules/cm_marines/Donator_Kits.dm index 6c8347f328..01acf638c2 100644 --- a/code/modules/cm_marines/Donator_Kits.dm +++ b/code/modules/cm_marines/Donator_Kits.dm @@ -427,7 +427,7 @@ donor_key = "sasoperative" kit_variant = "Juggernaut" donor_gear = list( - /obj/item/clothing/head/helmet/marine/fluff/sas_juggernaut_alt, + /obj/item/storage/backpack/marine/satchel/fluff/sas_juggernaut, /obj/item/clothing/head/helmet/marine/fluff/sas_juggernaut, /obj/item/clothing/suit/storage/marine/fluff/sas_juggernaut, ) diff --git a/icons/mob/humans/onmob/back.dmi b/icons/mob/humans/onmob/back.dmi index 8a51050c03c322def9e366f173d973ee9dac06eb..a6e9ef72c010aa95517c677918c16c942f696e70 100644 GIT binary patch literal 110676 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

uid*tKg+yYWC>Ynj*7jDNpB^HU; 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 delta 15784 zcmcKhbyOT*&;|%M5+F!`Kp=qt0TSGT1`n>m-QC^2aVG>4AV9DXB)DtP1b2c2cLsMG zY_|Emdv?#Bv*$be$M@cUdggXbPxpPQ>Q+5f-FSqSzK!hYo98i?!8gO7CZ|Q+1P4>av{ztbv#|yGED4AEz93?DA13pG z!2^W+j1I^)d0h|K=9dIvi&4q4tk!lyB>Y?!-`A&l*?03VTv=Ow3TkhhS!78&i)Ojb*J}|Rt%*{ZB+MK6q$`seSf*u< z?SlnZc2;7mR$acNsDC$A6u!Lx*WP~n`IT-c%lamSEy464>EK}Q(XJ<%M0pNbLIv|< zAra;=ntue$zZNPje?Jz--V5)2dnx-}GHBy8fMaBR?SS^$2;6(o;PWom-ck{Wt2n*M zwIbMyio7{Yw)0mg`{pmii|Z-yj|_04dy8V;wXuaig_KTw_&Z@HPCpG4A5{I6>$uV$s%=!pH3+vzTT;y~(EBXTwY!z>q~B z6*#(ZC@on!8X$>npsl(n1S^I@!zHBy@wZ`B_)e;tHKVofZOfB;`UV#FF1CFu(7aI%?TT73y7H0nkVU+X0N@! zR}`LMwwd!Al&0l6j*u>|O+IBQ8!}>H6!CCCx*%7wM7?cyM#&@<#%M+egpVZK1Hhh4 z#hFB#L57-j$TvpI2siuq`})Puuz}UE&F)xGY3J#B%=<%d=V#Ul=b%~((%UtPFGNfP zJdgSo;egYyQh0?zscj8XA@8&6Uz1xkrSceu+NMRN0_QW=@Se>6O7F7TugAEuNA^L) zD%D7rMDJB;v#XHVo~>Fe5f#}XE(Al4Iun}U)V^qsN0x|4i=&?7|5UpV${g-*N*-EZ z7Uo2z!QM6pPxl_L2p->Epq7+2*$b{wa+NpH5xD~ubmeOF0U^FMA}1ZE&xKZqZkx_n zQ7^4R1W6S;i%W?tpG3hCu)RgX^oz{)yO3tn36#rDp8RL6_a@Ia{m-zgs!l7Xys4-5 z`Oqvc^F>dP+MBMpo~4eJrSp8#OItoOgsl)vJO#dht}YU0=x)|=r+waZ{frVGvPcdM zc{mJ%#6}G4|5?}HRsW;iQCVpr;OZKFn>}fxtfdv%*(v&x*F{acVA5t~7j}vQ7=xhj z{V$!9lat_>YS*|8mf_)}latPP;qqk3CE_<1gf;L(%2%)26L(i*Cnnss+>-6vtd1=K zFt9%ws~YKF4Nz9nz@{7EhZ}DJ1VR$1Xmw$YHWvfvr%S*8MUdB;+u;aCgqi*u4H~Vp z3!n43P)$Yz7~#e~dIJQa=-v}1F7)<27VG>yR;JG{aPiMe-rpKiKCf%*Z3XTbWGK&4 zRwf!xMXO5BUwSak)}4y92?>r?nPY*RuC8J-*7TUyZV{E)sJeCgPp8lYBhFQ?+sp@u zthjC7(I^IxTU5UYN2d09LdwKMT0xjq*ej)bNaUXXzF-$?I zf~Jy&Y2$_m^*31sf@J1hZ$qy**Q}d`^+!Ozn-!p*yM`E4f7VV;p1duQm&XOhFvIJ9 z8F1p_;xZYwzVyGjkm#?O27n%)h3NRF_kT_{2EsO2pfem6gY7Xb4qYG8Xx<+pVfcXD z7Y7S5?z>Zu2Ob5c{>}UhWH)+ zK#)3$kNEQ3dPI6Z=MiX-($|42R@*s2sVV~X}q=wI4r0w1{AYVKvh#LPV-aX@gWopV>jH$x__ z?%s4kX4PzFEM>J>RIp3MRJ{)2tBBnN{p|{EUT1Y9+T)oIm3AF!sO~Qc?Lhp-j6-jo z(@nwldW|{IZ&2Xuv!@2i12ZAV+zj@-*F)j)9>o$eCXIIeH2CWjbrC z=oHdxq`8%tewv20gagr&fe%Sr6Fn5W9%R22`Jafvc7wkE0#)p!-yyZDWc#Amg$mU! zJCbkj_#HvV7qP8SH(0;-2Wd`fn$5XCB6%M-`#Ip&p0UqV zVBiPe=1;7zudmoU-<`IlqM~|jIASq6O%gcV<3|J#yaYx@Rj3(hbbsovJFA6#)(l zOb}^c@r4 zL-MjEHHBs`UVrN>jP$*~?< zK@XEoG0)W&PuTauf1y#PzblQlSwRFa{S&%)f#u!6-(_(_C6oet09d|$O0q}^wuI+i?$A~N8I2`&c8K71zvIXhC)|aThKpv=d$-{ zbid7c%s{V6OJ5N_a&){O;OY4?V86n#doPx$-6eXsTf+DFdtlU8Vp%S_iF7B})#AUF z6;y2PE{uaQ$wnYa{?D0Z@^B7@l&61igN{ctTNU<-2^1!Bc6LUNc||=1R+8_wX~iG! z#~z(NO*vD9dn2tG|M{H2s>Y0e$#>O^Kc(7d-H`3vxawb)0t!a!%_P2&;~X1H#xl0} zHWCh!X6*(HN@}{oj*gs$R=Z-j&_YD$gNH0Qu+dP6SPe=Zg50Cq2EOhx2h&(F^* zDJcOwJUmQbWYnLgmOicnTG`B;=PeEgfpa&Dp}Icvp$|s`9?$ogB72aj37qqDI}n?! zc^FTPmule=M6JqN5)%FkILoOE4n`)_l@EZI>rqvjK(l?KoEp_%F|lqj=(M$8qW6PR?=T6EW%J$S}M2409xRVgUzRMvWOdI|poYZMv{m zd%_m&RSU@h7&z>doYEOsp8%zkgRSL{=FK1efrEh#86lw#2(n84FRk|X-_jkGl|g)N z``OU%->H_JuckbOb!RJ#LpE>wMC}afD9R3!siau~Zlv5K(v1|&zo>m_Xm}U*cH}|a z%*^Z+B_)#Ql0OgIi`M)5d->Pq;{fmqkP#PA>m44hJBxTFAt3>M3U6y`Q*okw{rVL( zH3~GvwwW4A1mxw>JjaUb9RlUW8)sspqcOjv5A_bohgOb8s&o*q&@*#&SaE)@sZmQk zr$yLlmklo&IXgd&mCRMaD9Fpt{q-7)m_-e!_*QPaD-VCWvC6~DMW$1#VJ+qC992qf zdsR@*m{8t!azg#i>4@;jOWu#UJ)fPZ-aeL!r(J1JSbLc5ABc~P2GNwx=lvGgwrj0o zb;%3Hc0#-FsCCHL9K63-jN6U{mZw+TBd*rsxilFZV8a=V`lAiYgD>W??k7JnX;+DJ zIFDn;fus~Kue=#EpWw9Y^|0R)OuKC_W(8c!xFYT@<)-S(3-C2ny-a3ip20%SG5RseOC)H~bTY;GGx_n}klw9bRDdC>MLKrjc#Q zKd0v{pQ{rzUmd)cHxPLnFyDZ6qqyaaU>1s;YbBoZ(863Uq@+~0Cm5KVdCWh|E&9ok z*TaF6vUmD1KRE2uz95lNT)`8%-)43|_!!`(Q0M@0<*v53E#7JBL_H!s{iNxn-s4s- z3tgMYZcyw~Il*irSJz!uN;W>`Sc@xO)0J(QBLdRR4^~!%6TiG&37vsZ?Z(BQV;Mz{wYEh2lh8-OQMKFz3|&Tap65mqbk zDJ2CR5N>G96J_B!bvcE;(%w=B=C__zp#huzN15xJn;)kQ>L*emEjG`vf--Hj>XYVY ziS8ZSd#kZEQ1XC^yzxf6a~NrOr0V6eg4~CQ>KNC!@0a6wF-3Zh<}%lnmwh*v3@lN- zz|#{)^&8zSFx?!@qMrEjed|?DORxPFsB7rgw9cQS{gC`_4)H8~S@c@N$;;}ABc(-B zLIb%S)L_;B_U%`HydaTJb6$vdoyvy|eQ3t1j-vy39+dK_tn8iJyvytB4$6I}0ek;Z|LlJ;PN887 zw0(DFV`^DgtTM^?jsLWc(L+qSh3Uw6b)!A=->SGaxRs{ zHAZMM;Nf0&F9@Hp+OFeHo}mTJY;EiiNxF$)Z3kjv)ITbJ2SfR$D-igp%;7n>Z0ap@ zAF%l76hVDo{V9t~Sc5M?CGrR2DtE2=#n#gaWQ2CzIAwjC+t`Z;0<68NyJk;^#~;>Q zChI|~(%i)ipT-q6(Vw$jS|L=IQCmVvjIhI!xe7@aXXo%4y^jghRAdg#<+lzJ83|ea zm;FxWDGYIk{xk z{R5&gCzMtK_r%dJ5ZUV+Yf&kt-ODYHifu};nphe)>&CIim~%YOXtD+CxtnLX5tq# zimF7;Pbx^_6~%WG%p2S5|wn?9{TlXPzKpt-t3+R zDAfWqP^3xq-S#)~m7xO!GFLuw<&}Dbdt3ELR3tR+$+Q3h{D+YshUeKQ{~!&?qlG?V z`)?M+=S3xI7yoapVMo9AiGx;Rw|CIdS5d{B#{&!AP3+a1t@iWD+@FyuYtT8b+ z>T7gx01qEuxd3N(x?D34=VFj1I`X;Z$nK%-qycy_OiML43PmgW=d3Nqvho=`fjmq4 z?L2@=R}2Tmry4#>H=OO*wTP$2oL|;*d4&tXi|cAnAt2U!?`_|78=*~oZYwM^X(e2J zAf;F1{$NoGe#|DZuN}tX?@!jYb6^oD)jKC?WzHLv| zFCxsj7)B55?Umk!ygM5SqtQY#hcANAAW~9XT$=29v1neX!koB9hnCY}{<-Z`2|jo; z8{?zoz2DgEOE>T#-(&-(Uff1Jh2{$z2oDdFK?)+<(N9VCK?5q7xu^2?pOX;LAhjpC z*k@>GMMgTSL_EnnvYC|CPEOB?=de6cqZi%JU`@YjCv#tnXuCBoV1Qo?qA?*t1W42w z>SI{B)b|mJVuPB^I2ZlI$M?RI)L^^gucy>QSr-71T|$Qr91R@y9CtImeHvr*biXSV zS31LSA0wlgv|IdRcdCKRzo%`a)tkapLut2hN7G9s@c0LTNaK*}Trnf5lFoRxud>Ih zgXphoqm3G`)SD?-F6V<@Kdi1y9MwBcPBovEFk&{V(O2f$etrU?Vq)MMu4pA*#4!J% zTC)A(FYQ{t_7hyI!LM(DK#>r%9NX!#{w9SCzQ?vwkZ*U}nV{deI9}_)r=TdWkvS87 z-*`2#zO!4h%WL=Q0SKxXC0`iIWS65vSl(5wgPc=@$5(+%GVA-Z7oxLl-Us|D&`hAZ z#fUMAGkXB>w{PD-ycaL%qgaAlTKt#yp=U4xX6w$Se0l2VIH=WLG|I-E?sIlM01+MO(F#QE7?Q6ux3Z;1uT@ZK={SKfTX@TUDE|~S}w0dn{ zQJH+3C{ic*I%KiF31b|9!dRVJn_vjL#9pe2MJWG_!kwq|zPeP3KH{LK2LiXYtgQPI z--w>(=H|ZPtbd8RjYo*u?gALCqIgQ%JnJBjV;C#9eU(YZg@@2?#`67GP=r6Xd}2QG zktDLxRih}a&1F;T)^eZ4JXOa(`+Ooty;#F)@fWXvpkP8uN(2zjjzCEh6?fT3EdFlG-j!!DvAdCG&?P@dSX7LP~uMk)|{DRMuXMUVf zTsz;@Q!JTeMZ>#F*C%YbJXCCS=bQS#XH3nq zxno-+VJ#&dYPOrO92tp0-yqiPbK2y-8(x8a&}CUIjHiQIu5;I7AwLnKA`=BZzP1Zd z@k{#h)rkEW7KMMUXRAOHmRj5&3zTcS0fnVjVO%6YR#skA(xkqt+lD3<6dkujs95UD zME#VU6Sv;~_A#G@$E52v%6&?Z4=z{ZA@ozWH6}(b1K()CrxN~tXqAUYm;y@gmstHY zv=Q0uRPXrsbgG7Z+)h$7{Kr7CBr2~}u}hh|CbaLW`~wI|_|2b)gU_wE2bRa^6eL=$ zC5F@Q)n{M9PzwK|jloZD4#TQs*PAyP!=MlSwgHH{o<|kuH88;*m)(+)8DG@Et6U{V z|EpHcy~U2BQ$^>2KUIyaIbwox)1nIfQA!y`Qk@nGz<~)|c z{!X?N(?&VD@yw_q(?_^5qK zk#LQB5HKU(Xip^-baQza|3)r(dE%$4R%6w5BDh#iCKRg1%DFNBZmj<*G_*iH|_Z-QJ|2aq^B1fML=7` zjTIOeL;Qzqt4YVEE-xdVfM$N03^wkHC&>L$PUD_>s4ZFVyeSO4sa2BfD@^Xi{pz_}7dLR@(wPL7y1E|SHMxm9s{Ko)`2pubsPZusDvr}aHo zAlSdM8H>ib^Lrlr8PAg&`!0cHoLk`%;OzXCorA+RHq^qx;(J4bmQ{d#2A{i1^b(lC z?|Fa6`tQ9zuM2)j_~XBZf6^1;kpT9;Pj~g(?qevzHd!-n@SEKBB3Uk%a+!GexH_YL zyk3C=O3KPX0hdc5rAv1|n2O6;#fw}}j1#$HTJQ&6F2B{OM%Pvvs0n%onX%W4DPo$CW4 z-%V`wJ-^d`vhH$l<7hFS+cIWn~kO1GE##hPGR8r3oQD44rzMKV77lkGtWef4+LPo85#XR>( z3RG1YS6Z^#?d_lrt4rQ_3>C)H zmDd#jTHs`{rs=;53QDQ+0WtO;Xy^aoi@bk zs>zSMJmd47Nzv2YYFC(o-$@^>tYK()IHs>~nSW(DEDJOs;rA#hY~Z`NJ;QqX@>$8pSUQpWu3Y-^m(iD-_9S-~nqaiQS!`NLu zRvS#?XjAAeN&TExai1X}i2|f)w)`oP3M@@2mMG%Gt@i*UzXfUERBi~R%uz+B5q~ua z_&tyk<%MWF7(u#lTnmXko$22y-}-#Czh4}N#dTdG@RIjyM9pGdi4YJScBF)Wjyis0af;{#?~lJBy9UD|(uP-_Zz3;*0&8u^a|t}n)y zE0(<>s-(N>NzF))W2y3aw0m04tF?ARPLuww!Upa#1i|me>sW0uweHAi@7H3NIo&;t zRZRot!d(_E9?otQjX=&Qne`dydtWekjVwQ1wMYa%K0cO~lM{1xt~^OfP7c4i@>+pU zL15>{{+eR(DJ@sBXRM`A9p0PxNdV1Soc_ADo2kS4EBrO+0YrD-;FBb$WzKw%4F#&B zUEiQL4&Ux-J7Os)C|G@QAUS{Fc`n zU-@;bt$AEZtmN%~E5FgHj-?Zi{8Hy}Pox`e$pG`7PG)+!yd{+&YB7BCqKGGJc{?eS^8=+iHdSjK6o3l8#>LuVigbH8n0 zll6$b4pB#O6aQkArDAev3C`yS|E)0e2mRoai6{E%@|eKDWMuLBrp7A|PpaW8A-cUa zuaeUxpMd8Eh#yV={CDBTQ2g<#;1{zFNSq;p&zJ3ey7>;gezmiUo3Q?JSIF^T>4B<* z_Hq%0MxPL1-OKLo9ubdaw7ZRaLecRwN%*EJCjrZttBS;BMK`^$u1u#@k7Kj4=f_Pq zPKj$y!Kxm`N|pp8j6(QJBu7i4)2$K}c{&>!_~vEjh#~FI6YT~U(tvxu$LHXANSehE zD2_=XgeMGUpwiYnyS`mpUFFQl$x(q)q^WYlcqocBU${QsJwEQCFugoj=oE_A94>dv z(7TNqOzE3L>@~Unt9PWhKHCoAvYi4d2v=(h#OL~Hv;4k$-@{>f{09wU^!J)&dQnh$ zcg1ef&56qZ0kvnmHNK7kzj9wcj*TV>sx9VOzM~*EjlooP+PGCk-!a&q{4lMOSt{CFOC5g(^}eBZ_TC`#U&*(!yb*xAcb(&wTD3 z#VSmDo(w?_GS6XDq@1UHZtjE(_(=XiGY=!BK%^dPFVJ#PFSj4GJTw>%mSFr+S9s3b z-d3WIp3Qvi;TVrpKOZW5&lesyM^Ky`b2%{Uu2omW+^T<6QMI@7)p2ZA`}PsubU8wY z0ROE*VvG^a&P7jz95;sj?=M^U?$`58SL&zLpQ6fAXjoVdD3-M8{SYGsyoNXluwN>_ z%^IJcO1vhwF6mbQ5lgkXwvik21!EzG>Uqq<2VT0!Ot4qQ3+N{jMC&6RkFxzx<4Ise zz3|1w#eVh{gL0jKxH^H0uX)TmrB(9c$F}=$SeE7!M4Rx z!%`on>mXXcm~m`3fog1D>Dg)r*~C*|-fJyx)TVZHy9i|Mt@gk1_;*eH$qXW7#y?St zeVIcGL6XeHr&ZK>f)Po6XHQ4&wT#qvEvlNCnR&H>?ky@&IfBvEMLtFGN{=U+edUC8~}mUmLq)fD{|uE2;u*m4r(|ke*Zr-68;@&#s82_ zR8$e|$X_2wrpU;b$XG`ILoK;rFa`d{JVo|W{(lezAAbG+N%H>>f}#YzJb`749G6cL zY*=sX);!{LKzO<2lhV(Ki!}S9jk#tVoE7+g&p9^v7h;j_*7)P2e3WL6Jv}d#lGEk8 z`bUa2K-OP)4?GMU4RxZKg^?NO|Am{eJRqZLMDzUp<)`ZL;(Vi*_qChfJ4f>V#P}i= zRAJXcyzOEUn80@`v zOY2{QAcACI!tZ|Uuq+X1*N35hrX&C=)|1{AZNz7^DuFIzJ`8XRQ*w=Ae}&0?VUO!h zlDW2DH5kGH>|#mWu>tpFeKV!rappEcpzmc{iy>IIhbSgTy12Lqa(qwf<>Rv&eqrx? zZN~?--h4{(AouaVsI6I{Aica=dkVNcd5i>jH8kgXyUIyHvdF-2rXW-$z7mtZXGTHG z_P+ryfWTkB1ORBi#EF6c;3?ssL(-F_)FpDF-c=2I{A^I?PZVs|XGiTgmuA52o3A z$MTw$$-+xE>+#pye-(wF&4$Z-rjgPAcD;Ju#mYEiIg;5`Wj^qlD|#75+#~l{Y98Ct z(sDlFX8&rxeo4u|;N!z|mcUzSuls-7Sb3H-LeU32tZfDT{?~H&>LdBP*dGK1In$O{6n8_ia$*`fBu{b4 zg2#;BSN4UTYHLIBf7oxS_|>Da++Jx#V)m!a%-kBE6Ee%zdmFoG2*6l06i8lWmUfnh zQDeC$km_p;=8@@p{8sHsQLp^kuAk=8vI-ilLqRdlw0j7g5 z<>Lg4bhwS^1E5u1XWcc?s)5MYpCIDC@J`)OnW+j#L_`GR@naEbX$(Jq|F`D-gp(%) z@~Kqt>uUx$bPg;M{15S=TIQAQjZ#0Z>AF9W3Ar!14Tqq#YpLl96%fA6$FTbQy@-yW zJZBxf=2$fUrwV+>Hzb9@zQQxW!GUGag2N!r2UnlpvkL;e!;YJgy3%ID(!zqFt2_-3 zB`%+RE)PlxGksbNwy|n^@5-ikoiFyZpT|j_9e@kX!-X{%G-5QtAtBB;`%wPm(01p6 zijK}m?fkvbN>EuN014(2owQn9a*M22lUcO>V75B}b8HZbWBtD$MSx4eFXFK!y}aIG zjuV8zh=0&h2?)I8Ab$}H0W89ZOZ*^sS7+=lnI}=M#D zGvnsoH0`GUxCv!1WJMfo^*mg_$TgiJIM+<yCFkq$?zB!=)o` zqo=2Tc2bp{{i*;WNM+8Xoy^RB{P?^5DJkhusRkBQ$^Vj^+-b!rTJV>Won7Ur;8O}v17m)amE;?Z%Z76K58{B2? zn%D%>wT|0JHBZ75M)cgnbpsZH+uPq`d)1IajR&KvQx5-X zZHen{n;tC(5>1XyyV*5mzg@>CM z`ek?jKHEsl*UxH2I`;%YW$#Rz3g=s^eQ7sfLlKHI0*)3^^=(5t%Ztx_F{3FH)sL|N z8gFk|*=SWICA7qK60P*7nkp<^$Zx|{>r=*P}GL={j_aS*ZmI;Y^(TVnf3z$~<^ZLBaZlmezDM zTcq=}9#SD-w87f6#%2=p{g7*dYn5y0`lcDo==gh=)&5_S-Ko;zgw(98_?V>RJNz+p z$|iU0_thM`l;({&<6VyuXJReDyu7Wc%6r?t|8xd!QJHRXHhHriLIs^oS^&>5P?P3R z)aQi7jN3l8MrRIzit31%&QiG_W~sjmf`zUR>@6TJeD0!l5XDUxQxCy@nV?U0TzR?6 zFtZUa#f6^+(MJk_NHTs8j0GeLC}vuC`4l;;ljgy>XqX?i2TOpAdoIU0Ukk{Sy05Ui zDYj`pEvzDce98CvR#fXD1=7>g%ZMFdCQbkw-7oqzsp~0g-a!0$5d-@)a)r?2F;t^3 z3Izl{LKS*}{WiqEAxO6xE2iKsW44?m#%#}5iw_bjEQZqhzMmA&vQfNe1xB~sLQ3Y4 zA`elhT=Y`-!4dViQ$zCyC;fz6pm6>GB5rnwJ6zOojBgY(_|)0chx+Y_iHQf(dE(~` z-(2h=!jG=2^NKT(Gtv{H=40i(;5U<6`T2SwNJ4QFysL1<4NUU8ME$aMm12z8n3%tu zp;T%P5iQY6v-S<+K}aG2HP>*KTG5Tuk4SQ3#7dyM`dN{vnpbOwQJ}!1CZYra){@eq z>om)jQ5&<&Na@IdeY2v*(>{~w0FurN%Sv0r|LYc50&6q*P#-;-e2H{%E+H$6>Ed$E zZ9ku6CzPV+&r+3PFO(9?jWmR~|A?U7(|6+z^_Xx7>9?QJ9@$s6LDkLj)b(v70p0jA z*iZD--O4{tmugpAWNqC-IpkhUZ0sINyHb*%iV$7)-)%Ks45$n%ElWZ-lD8qi3*_k4&NDQ zP(SysehU>`;S)A9uK_HQEez&|`nNI|;yg*+E^a2QF5v)`Y>3((?m--khvxnp>v->w z|2He);Qy52|2K;3p)?l`?X{87(TOBHrLF#zPqkWnY9&i=m2)Mf%MQx=_t{lnOo3$! z**dK)bE9~f!n|dLg>*8o?VNe;^=HM`mx#0KF_nGuEQDoLQ8_}2!e7nBR^yIFOGhQ@ z8KVZYspwingon=-X+NwKBJv^AP783}I}79TKpv2bIa;IT2t5phcodn^U%Dd2ry{ml z+`WB5xVe<1@M}MHk6@`d5|GmUV3D-cf0k~*rD}xw_$Xj9x;>&>Qijg0(V%*>Z(YaK%zw$JwEeUi z@DL{X_|5q4#*xQ!NWNBfU(Ud7+AK;aT!P;Hc%Qwa zZjJw|Qo130y_K6dJV&ZSA?$VImD>W6ej9p+>t9C>-SzV`pPbz6i{bKe9N>$`Hz7Ar z$%=G+k5tr$E)^)-g;)QVTG#5I6K+-hC6--qBn`hc;n4AJF#0{4^>!_x0|OVgXTnp6 zU`$dX^(Qv^k`Gqfa0XUZzwEk~_sYn;p5IIjy&nUkvIWCU+i=R<(e8ZXm7_;fm7O0W zg&B{1bR-dTXkE^rT6lwUZbfSa9w?NQq?MdiTGBjFP|7eO%)}(`b2`LRN$*fxwRbQI zbpeIR*boNdP_~Vbp|CV7xRLIqI&!BQbH4~IO34t?#m)9X9k=6-iFUw)yO7oh1xWMy z;n7DF&yKaAU!Na5h8{ch=g-dSxtscq%scc?E?3!AEQP+fIWrGRQ|AIg*7uNn_%&e% z)|b6NZb_qTYtYm749Ow_Dh{frkGBi5X5FN`CJONr9d$voJj?d$TUBl7*-w1%RTDOT zj{NNF$(i)Y4$};*Dr4ipku-ga9MX)LfysO+l0!*x!fEDx?QGlzJTUUs73CLv$H6+<#sfyI->f7qU3M5t@r&)q=%LtNJTK5%uiT;&>o6f{Oy*u zox}u|H#WlN=k>k;pFU@p?s6jodJFmqNtsAXb@yDu!by-Zr7(ZAPjcim(~Wb03>=3VvIOO(v`5N-kdM4m8T!Vq#_ONf3)r>q~k=AyeXf zv-t_{9Y23=UNMma63f2`;n4LR0YMwW0I-%`;_GBrrCsSJUAc(1fsTr{ARp6LchWP< zj~!k5=+!f^pTUEmn3#d3+lzC0=AYu$GDFH1yWEAxw+}Q^*|a)wdofru683Q&e{qD! z&tvA+(j+rseN|q(Rd0DRbBA#$IYw0(T8gBelq}0snfb`#+G}>nI1YfcbBX;I-v6`XJ7U-mOV-!pK8X&+=)*Dws#kxq#s)3c3ghV{{8#+ z*Nr$+_S6u3Hof;;6d~(72Vk_zT@qHj%bj*ZlWn3+X9w~SB-bZ~#rQ1nOyp}apiGxh#5Gby7t zRa-$$nKD;IrS4H@YHG@*D129g3S@!zjfwQE1pY`2yMCUUnqN{<*6wI&!WDII-vE1P zfj@q{Hip-dH!s~N%40+CP(n}7c(FH=Tca#~u`^i=a&csl!0SN-m6RBccb60W&(ImO zz_ffGJxNfKM6f-Ho%R1&4WLt7tZ)VIVI z(D*mnP-OFAqR`CQ(t<|J8^G)Spt+OB4o~>meA7|OI6K!#Pdo*ywjrvVy~_pqDUAP* zRh9rIQ@oqcjhAj2Y6cFlDhVPjpCXvXdR0GeP$6Op#PVo`+rd(V?e78QF^yZR+QWj4fE5mEuaCu38p*$#^I^h%H8e! zk4v8DemLv}|JQW*voztq{=bK<;s@IQN}Hnh!?nf#cRL@iC@hCp&%zpxA^>Q}NGOPx Ii5dm}A8F6E9smFU diff --git a/icons/mob/humans/onmob/suit_0.dmi b/icons/mob/humans/onmob/suit_0.dmi index d7dfd5394f0d7771aadc09a5fd20412cbbae2714..52f2c7f0a9cbb563d1d9023f48e1d0eee62627d5 100644 GIT binary patch delta 24466 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 delta 22425 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 vGp5jdX~l7cTq{pYQKk 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 diff --git a/icons/obj/items/clothing/hats.dmi b/icons/obj/items/clothing/hats.dmi index 7d2c45103ba63fcc8fba8eef68ddf08aabd6d8ed..a6a0e6fb9099ade5c160f60375e67ed85734ae85 100644 GIT binary patch delta 17547 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 delta 17029 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�gwWoBAP>%;k!xVAXHuyoRahw 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 E3lYAwjsO4v From ff5b007b2534aa9a5dada95a2b8d6553646a72a5 Mon Sep 17 00:00:00 2001 From: cm13-github <128137806+cm13-github@users.noreply.github.com> Date: Fri, 27 Oct 2023 01:43:23 +0100 Subject: [PATCH 20/54] Automatic changelog for PR #4702 [ci skip] --- html/changelogs/AutoChangeLog-pr-4702.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-4702.yml diff --git a/html/changelogs/AutoChangeLog-pr-4702.yml b/html/changelogs/AutoChangeLog-pr-4702.yml new file mode 100644 index 0000000000..5554ecbf0f --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-4702.yml @@ -0,0 +1,4 @@ +author: "SASoperative" +delete-after: True +changes: + - rscadd: "Added donator item and sprites" \ No newline at end of file From 2588df1208dc3991d176b4f0fbc02d139a4aea13 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Fri, 27 Oct 2023 01:07:08 +0000 Subject: [PATCH 21/54] Automatic changelog compile [ci skip] --- html/changelogs/AutoChangeLog-pr-4641.yml | 5 ----- html/changelogs/AutoChangeLog-pr-4696.yml | 4 ---- html/changelogs/AutoChangeLog-pr-4702.yml | 4 ---- html/changelogs/AutoChangeLog-pr-4759.yml | 5 ----- html/changelogs/AutoChangeLog-pr-4762.yml | 6 ----- html/changelogs/AutoChangeLog-pr-4763.yml | 4 ---- html/changelogs/AutoChangeLog-pr-4772.yml | 4 ---- html/changelogs/AutoChangeLog-pr-4783.yml | 7 ------ html/changelogs/AutoChangeLog-pr-4784.yml | 4 ---- html/changelogs/archive/2023-10.yml | 27 +++++++++++++++++++++++ 10 files changed, 27 insertions(+), 43 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-4641.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4696.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4702.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4759.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4762.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4763.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4772.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4783.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-4784.yml diff --git a/html/changelogs/AutoChangeLog-pr-4641.yml b/html/changelogs/AutoChangeLog-pr-4641.yml deleted file mode 100644 index 96049a37d1..0000000000 --- a/html/changelogs/AutoChangeLog-pr-4641.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "Birdtalon" -delete-after: True -changes: - - refactor: "Refactored praetorian pierce ability" - - bugfix: "Praetorian vanguard can no longer pierce through windowed doors" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-4696.yml b/html/changelogs/AutoChangeLog-pr-4696.yml deleted file mode 100644 index 3cec025915..0000000000 --- a/html/changelogs/AutoChangeLog-pr-4696.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "fira" -delete-after: True -changes: - - bugfix: "Fixed various issues in the Networking between Turing machine and Smartfridges." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-4702.yml b/html/changelogs/AutoChangeLog-pr-4702.yml deleted file mode 100644 index 5554ecbf0f..0000000000 --- a/html/changelogs/AutoChangeLog-pr-4702.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "SASoperative" -delete-after: True -changes: - - rscadd: "Added donator item and sprites" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-4759.yml b/html/changelogs/AutoChangeLog-pr-4759.yml deleted file mode 100644 index 42a30db9e6..0000000000 --- a/html/changelogs/AutoChangeLog-pr-4759.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "fira" -delete-after: True -changes: - - code_imp: "Rewrote Xeno Acid ticking code." - - bugfix: "Weather updates won't cause turfs to acid melt more rapidly anymore" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-4762.yml b/html/changelogs/AutoChangeLog-pr-4762.yml deleted file mode 100644 index 9d3c3f7a6c..0000000000 --- a/html/changelogs/AutoChangeLog-pr-4762.yml +++ /dev/null @@ -1,6 +0,0 @@ -author: "fira" -delete-after: True -changes: - - rscadd: "Bloody footprints are now slightly offset to break long visual straight lines." - - bugfix: "Items do not align back to the center of turfs anymore when picked from a surface (table or rack)" - - rscadd: "Some more items now have offsets on the map display, and they all can be slightly offset." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-4763.yml b/html/changelogs/AutoChangeLog-pr-4763.yml deleted file mode 100644 index cf9158bbf9..0000000000 --- a/html/changelogs/AutoChangeLog-pr-4763.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Backsea" -delete-after: True -changes: - - bugfix: "Fixed the incorrectly placed shutters at req and that one light near CIC" \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-4772.yml b/html/changelogs/AutoChangeLog-pr-4772.yml deleted file mode 100644 index bf0c0ef5b0..0000000000 --- a/html/changelogs/AutoChangeLog-pr-4772.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "fira" -delete-after: True -changes: - - rscadd: "Added about 50 new tips." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-4783.yml b/html/changelogs/AutoChangeLog-pr-4783.yml deleted file mode 100644 index ebded74b04..0000000000 --- a/html/changelogs/AutoChangeLog-pr-4783.yml +++ /dev/null @@ -1,7 +0,0 @@ -author: "realforest2001" -delete-after: True -changes: - - bugfix: "Fixes custom ERT calling broadcasting when it should not." - - code_imp: "Removes unused vars from ERT procs." - - code_imp: "Renames the announce var in ERT procs to be more indicative of what it does." - - rscadd: "Added a setting on custom ERTs for announcing beacon was received." \ No newline at end of file diff --git a/html/changelogs/AutoChangeLog-pr-4784.yml b/html/changelogs/AutoChangeLog-pr-4784.yml deleted file mode 100644 index 6ee8c2d91e..0000000000 --- a/html/changelogs/AutoChangeLog-pr-4784.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Zonespace27" -delete-after: True -changes: - - rscdel: "Re-removed CO/XO bridge coat" \ No newline at end of file diff --git a/html/changelogs/archive/2023-10.yml b/html/changelogs/archive/2023-10.yml index fb4ed664fd..1afc45c37a 100644 --- a/html/changelogs/archive/2023-10.yml +++ b/html/changelogs/archive/2023-10.yml @@ -380,3 +380,30 @@ XDinka: - rscadd: 'Added four new haircuts: gentle ponytail, edgar haircut, emo bun, taper haircut.' +2023-10-27: + Backsea: + - bugfix: Fixed the incorrectly placed shutters at req and that one light near CIC + Birdtalon: + - refactor: Refactored praetorian pierce ability + - bugfix: Praetorian vanguard can no longer pierce through windowed doors + SASoperative: + - rscadd: Added donator item and sprites + Zonespace27: + - rscdel: Re-removed CO/XO bridge coat + fira: + - rscadd: Added about 50 new tips. + - rscadd: Bloody footprints are now slightly offset to break long visual straight + lines. + - bugfix: Items do not align back to the center of turfs anymore when picked from + a surface (table or rack) + - rscadd: Some more items now have offsets on the map display, and they all can + be slightly offset. + - code_imp: Rewrote Xeno Acid ticking code. + - bugfix: Weather updates won't cause turfs to acid melt more rapidly anymore + - bugfix: Fixed various issues in the Networking between Turing machine and Smartfridges. + realforest2001: + - bugfix: Fixes custom ERT calling broadcasting when it should not. + - code_imp: Removes unused vars from ERT procs. + - code_imp: Renames the announce var in ERT procs to be more indicative of what + it does. + - rscadd: Added a setting on custom ERTs for announcing beacon was received. From c244681bff5edf48cfd6189eea7a89d1ae01e461 Mon Sep 17 00:00:00 2001 From: Morrow Date: Fri, 27 Oct 2023 04:59:37 -0400 Subject: [PATCH 22/54] slight tweak to drone AI --- code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm b/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm index ef91bd32bc..043046b01a 100644 --- a/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm +++ b/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm @@ -93,7 +93,7 @@ var/blocked = FALSE for(var/atom/potential_blocker as anything in checked_turf) - if(potential_blocker.can_block_movement) + if(potential_blocker.density || potential_blocker.can_block_movement) blocked = TRUE break From 89a39f7c94ad7761ad49f6cffad2212652bfef62 Mon Sep 17 00:00:00 2001 From: Morrow Date: Fri, 27 Oct 2023 09:23:56 -0400 Subject: [PATCH 23/54] Probably need cleanup I guess --- code/modules/admin/game_master/game_master.dm | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/code/modules/admin/game_master/game_master.dm b/code/modules/admin/game_master/game_master.dm index 4aa6f208ce..1b3e16a7d9 100644 --- a/code/modules/admin/game_master/game_master.dm +++ b/code/modules/admin/game_master/game_master.dm @@ -270,10 +270,7 @@ GLOBAL_VAR_INIT(radio_communication_clarity, 100) return TRUE SSminimaps.remove_marker(object) - for(var/list/cycled_objective in GLOB.game_master_objectives) - var/atom/objective_object = locate(cycled_objective["object_ref"]) - if(objective_object == object) - GLOB.game_master_objectives.Remove(list(cycled_objective)) + remove_objective(object) return TRUE if(tgui_alert(user, "Do you want to make [object] an objective?", "Confirmation", list("Yes", "No")) != "Yes") @@ -308,6 +305,8 @@ GLOBAL_VAR_INIT(radio_communication_clarity, 100) var/object_ref = REF(object) + RegisterSignal(object, COMSIG_PARENT_QDELETING, PROC_REF(remove_objective)) + GLOB.game_master_objectives += list(list( "object_name" = object.name, "objective_info" = (objective_info || ""), @@ -327,6 +326,14 @@ GLOBAL_VAR_INIT(radio_communication_clarity, 100) current_submenus += new new_menu_type(user, object) return TRUE +/datum/game_master/proc/remove_objective(datum/destroying_datum) + SIGNAL_HANDLER + + for(var/list/cycled_objective in GLOB.game_master_objectives) + var/atom/objective_object = locate(cycled_objective["object_ref"]) + if(objective_object == destroying_datum) + GLOB.game_master_objectives.Remove(list(cycled_objective)) + UnregisterSignal(objective_object, COMSIG_PARENT_QDELETING) #undef DEFAULT_SPAWN_XENO_STRING #undef GAME_MASTER_AI_XENOS From f5582f765cc86949906b5b1634e0ccb0c4184879 Mon Sep 17 00:00:00 2001 From: Morrow Date: Fri, 27 Oct 2023 09:29:52 -0400 Subject: [PATCH 24/54] wall locker moment --- maps/map_files/golden_arrow/golden_arrow.dmm | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index 5013a4c3fe..bb5771e4b9 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -4404,10 +4404,6 @@ icon_state = "cargo_arrow" }, /area/almayer/living/cryo_cells) -"BN" = ( -/obj/structure/closet/emcloset, -/turf/closed/wall/almayer/outer, -/area/almayer/engineering) "BO" = ( /obj/structure/bed/chair{ dir = 1 @@ -23434,7 +23430,7 @@ HT ah wa yo -BN +YB yy mo an From cfbf1962a854719f2d343119ca25f960c03a2456 Mon Sep 17 00:00:00 2001 From: Morrow Date: Fri, 27 Oct 2023 09:36:26 -0400 Subject: [PATCH 25/54] No clicky --- code/modules/admin/game_master/game_master.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/game_master/game_master.dm b/code/modules/admin/game_master/game_master.dm index 1b3e16a7d9..943199c9a8 100644 --- a/code/modules/admin/game_master/game_master.dm +++ b/code/modules/admin/game_master/game_master.dm @@ -244,7 +244,7 @@ GLOBAL_VAR_INIT(radio_communication_clarity, 100) if(LAZYACCESS(modifiers, MIDDLE_CLICK)) if(isxeno(object)) qdel(object) - return + return TRUE var/spawning_xeno_type = RoleAuthority.get_caste_by_text(selected_xeno) From 79108008985e03f3af057f4a1156a33f09f612f0 Mon Sep 17 00:00:00 2001 From: Morrow Date: Fri, 27 Oct 2023 09:51:08 -0400 Subject: [PATCH 26/54] makes executions less accidental --- code/modules/projectiles/gun.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index 723426b842..3840a029ad 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -1248,7 +1248,7 @@ and you're good to go. return TRUE //Nothing else to do here, time to cancel out. return TRUE -#define EXECUTION_CHECK (attacked_mob.stat == UNCONSCIOUS || attacked_mob.is_mob_restrained()) && ((user.a_intent == INTENT_GRAB)||(user.a_intent == INTENT_DISARM)) +#define EXECUTION_CHECK (attacked_mob.stat == UNCONSCIOUS || attacked_mob.is_mob_restrained()) && ((user.a_intent == INTENT_GRAB) || (user.a_intent == INTENT_DISARM)) && !(length(user.faction_group & attacked_mob.faction_group)) && ishuman(attacked_mob) /obj/item/weapon/gun/afterattack(atom/target, mob/user, proximity_flag, click_parameters) if(!proximity_flag) From 794a048c9180311c3a660e6d58db99f4294030da Mon Sep 17 00:00:00 2001 From: Morrow Date: Fri, 27 Oct 2023 09:52:50 -0400 Subject: [PATCH 27/54] tool pouch buff --- code/game/objects/items/storage/pouch.dm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/pouch.dm b/code/game/objects/items/storage/pouch.dm index f38f15cfef..5f671037ae 100644 --- a/code/game/objects/items/storage/pouch.dm +++ b/code/game/objects/items/storage/pouch.dm @@ -1150,7 +1150,7 @@ /obj/item/storage/pouch/tools name = "tools pouch" desc = "It's designed to hold maintenance tools - screwdriver, wrench, cable coil, etc. It also has a hook for an entrenching tool or light replacer." - storage_slots = 4 + storage_slots = 5 max_w_class = SIZE_MEDIUM icon_state = "tools" can_hold = list( @@ -1192,30 +1192,35 @@ new /obj/item/tool/wirecutters(src) new /obj/item/device/multitool(src) new /obj/item/tool/wrench(src) + new /obj/item/stack/cable_coil(src) /obj/item/storage/pouch/tools/pfc/fill_preset_inventory() new /obj/item/tool/screwdriver(src) new /obj/item/tool/wirecutters(src) new /obj/item/tool/weldingtool(src) new /obj/item/tool/wrench(src) + new /obj/item/stack/cable_coil(src) /obj/item/storage/pouch/tools/synth/fill_preset_inventory() new /obj/item/tool/screwdriver(src) new /obj/item/device/multitool(src) new /obj/item/tool/weldingtool(src) new /obj/item/stack/cable_coil(src) + new /obj/item/stack/cable_coil(src) /obj/item/storage/pouch/tools/tank/fill_preset_inventory() new /obj/item/tool/crowbar(src) new /obj/item/tool/wrench(src) new /obj/item/tool/weldingtool/hugetank(src) new /obj/item/tool/extinguisher/mini(src) + new /obj/item/stack/cable_coil(src) /obj/item/storage/pouch/tools/mortar/fill_preset_inventory() new /obj/item/tool/crowbar(src) new /obj/item/tool/wrench(src) new /obj/item/tool/wirecutters(src) new /obj/item/tool/shovel/etool(src) + new /obj/item/stack/cable_coil(src) /obj/item/storage/pouch/tools/tactical/full/fill_preset_inventory() new /obj/item/tool/screwdriver/tactical(src) @@ -1232,6 +1237,7 @@ new /obj/item/tool/wirecutters(src) new /obj/item/tool/weldingtool(src) new /obj/item/tool/wrench(src) + new /obj/item/stack/cable_coil(src) /obj/item/storage/pouch/sling name = "sling strap" From 30e3abb042f117c2f35e592ac5161d1542b0a53d Mon Sep 17 00:00:00 2001 From: Morrow Date: Fri, 27 Oct 2023 10:17:30 -0400 Subject: [PATCH 28/54] falsey moment --- .../carbon/xenomorph/ai/movement/drone.dm | 22 +++++++++---------- 1 file changed, 10 insertions(+), 12 deletions(-) diff --git a/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm b/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm index 043046b01a..5682062cea 100644 --- a/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm +++ b/code/modules/mob/living/carbon/xenomorph/ai/movement/drone.dm @@ -37,19 +37,17 @@ var/turf/current_turf = get_turf(idle_xeno) next_home_search = world.time + home_search_delay - if(!current_turf.weeds && check_turf(current_turf)) - home_turf = current_turf - else - var/shortest_distance - for(var/turf/potential_home as anything in RANGE_TURFS(home_locate_range, current_turf)) - if(!check_turf(potential_home)) - continue - if(shortest_distance && get_dist(idle_xeno, potential_home) > shortest_distance) - continue + var/shortest_distance + for(var/turf/potential_home as anything in shuffle(RANGE_TURFS(home_locate_range, current_turf))) + if(!check_turf(potential_home)) + continue - shortest_distance = get_dist(idle_xeno, potential_home) - home_turf = potential_home + if(!isnull(shortest_distance) && get_dist(idle_xeno, potential_home) > shortest_distance) + continue + + shortest_distance = get_dist(idle_xeno, potential_home) + home_turf = potential_home if(!home_turf) if(!idle_xeno.resting) @@ -93,7 +91,7 @@ var/blocked = FALSE for(var/atom/potential_blocker as anything in checked_turf) - if(potential_blocker.density || potential_blocker.can_block_movement) + if(parent != potential_blocker && (potential_blocker.density || potential_blocker.can_block_movement)) blocked = TRUE break From dd9e0dcd98366668767aecba228157317aeb85f7 Mon Sep 17 00:00:00 2001 From: Morrow Date: Fri, 27 Oct 2023 10:38:01 -0400 Subject: [PATCH 29/54] Changes colors to USCM blue --- code/game/jobs/job/marine/squads.dm | 4 ++-- code/stylesheet.dm | 2 +- tgui/packages/tgui-panel/styles/goon/chat-dark.scss | 2 +- tgui/packages/tgui-panel/styles/goon/chat-light.scss | 2 +- tgui/public/tgui-panel.bundle.css | 4 ++-- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/code/game/jobs/job/marine/squads.dm b/code/game/jobs/job/marine/squads.dm index 5eb8a052a8..2a1f496302 100644 --- a/code/game/jobs/job/marine/squads.dm +++ b/code/game/jobs/job/marine/squads.dm @@ -122,8 +122,8 @@ /datum/squad/marine/alpha name = SQUAD_MARINE_1 - equipment_color = "#e61919" - chat_color = "#e67d7d" + equipment_color = "#252D78" + chat_color = "#505bc9" access = list(ACCESS_MARINE_ALPHA) radio_freq = ALPHA_FREQ minimap_color = MINIMAP_SQUAD_ALPHA diff --git a/code/stylesheet.dm b/code/stylesheet.dm index ab74dc547c..99cb831dcc 100644 --- a/code/stylesheet.dm +++ b/code/stylesheet.dm @@ -56,7 +56,7 @@ em {font-style: normal; font-weight: bold;} .clfradio {color: #6f679c} -.alpharadio {color: #EA0000;} +.alpharadio {color: #505bc9;} .bravoradio {color: #C68610;} .charlieradio {color: #AA55AA;} .deltaradio {color: #007FCF;} diff --git a/tgui/packages/tgui-panel/styles/goon/chat-dark.scss b/tgui/packages/tgui-panel/styles/goon/chat-dark.scss index 835a943417..910f27b999 100644 --- a/tgui/packages/tgui-panel/styles/goon/chat-dark.scss +++ b/tgui/packages/tgui-panel/styles/goon/chat-dark.scss @@ -1001,7 +1001,7 @@ em { } .alpharadio { - color: #db2626; + color: #505bc9; } .bravoradio { diff --git a/tgui/packages/tgui-panel/styles/goon/chat-light.scss b/tgui/packages/tgui-panel/styles/goon/chat-light.scss index 8501d0b952..138d98ddf6 100644 --- a/tgui/packages/tgui-panel/styles/goon/chat-light.scss +++ b/tgui/packages/tgui-panel/styles/goon/chat-light.scss @@ -1029,7 +1029,7 @@ h2.alert { } .alpharadio { - color: #ea0000; + color: #505bc9; } .bravoradio { diff --git a/tgui/public/tgui-panel.bundle.css b/tgui/public/tgui-panel.bundle.css index 3cb39fe3db..32c1b1607a 100644 --- a/tgui/public/tgui-panel.bundle.css +++ b/tgui/public/tgui-panel.bundle.css @@ -1,2 +1,2 @@ -html,body{box-sizing:border-box;height:100%;margin:0;font-size:12px}html{overflow:hidden;cursor:default}body{overflow:auto;font-family:Verdana,Geneva,sans-serif}*,*:before,*:after{box-sizing:inherit}h1,h2,h3,h4,h5,h6{display:block;margin:0;padding:6px 0;padding:.5rem 0}h1{font-size:18px;font-size:1.5rem}h2{font-size:16px;font-size:1.333rem}h3{font-size:14px;font-size:1.167rem}h4{font-size:12px;font-size:1rem}td,th{vertical-align:baseline;text-align:left}.candystripe:nth-child(odd){background-color:rgba(0,0,0,.25)}.color-black{color:#1a1a1a !important}.color-white{color:#fff !important}.color-red{color:#df3e3e !important}.color-orange{color:#f37f33 !important}.color-yellow{color:#fbda21 !important}.color-olive{color:#cbe41c !important}.color-green{color:#25ca4c !important}.color-teal{color:#00d6cc !important}.color-blue{color:#2e93de !important}.color-dark-blue{color:#005fa7 !important}.color-violet{color:#7349cf !important}.color-purple{color:#ad45d0 !important}.color-pink{color:#e34da1 !important}.color-brown{color:#b97447 !important}.color-grey{color:#848484 !important}.color-light-grey{color:#b3b3b3 !important}.color-good{color:#68c22d !important}.color-average{color:#f29a29 !important}.color-bad{color:#df3e3e !important}.color-label{color:#8b9bb0 !important}.color-xeno{color:#664573 !important}.color-bg-black{background-color:#000 !important}.color-bg-white{background-color:#d9d9d9 !important}.color-bg-red{background-color:#bd2020 !important}.color-bg-orange{background-color:#d95e0c !important}.color-bg-yellow{background-color:#d9b804 !important}.color-bg-olive{background-color:#9aad14 !important}.color-bg-green{background-color:#1b9638 !important}.color-bg-teal{background-color:#009a93 !important}.color-bg-blue{background-color:#1c71b1 !important}.color-bg-dark-blue{background-color:#003e6e !important}.color-bg-violet{background-color:#552dab !important}.color-bg-purple{background-color:#8b2baa !important}.color-bg-pink{background-color:#cf2082 !important}.color-bg-brown{background-color:#8c5836 !important}.color-bg-grey{background-color:#646464 !important}.color-bg-light-grey{background-color:#919191 !important}.color-bg-good{background-color:#4d9121 !important}.color-bg-average{background-color:#cd7a0d !important}.color-bg-bad{background-color:#bd2020 !important}.color-bg-label{background-color:#657a94 !important}.color-bg-xeno{background-color:#462f4e !important}.debug-layout,.debug-layout *:not(g):not(path){color:rgba(255,255,255,.9) !important;background:transparent !important;outline:1px solid rgba(255,255,255,.5) !important;box-shadow:none !important;filter:none !important}.debug-layout:hover,.debug-layout *:not(g):not(path):hover{outline-color:rgba(255,255,255,.8) !important}.outline-dotted{outline-style:dotted !important}.outline-dashed{outline-style:dashed !important}.outline-solid{outline-style:solid !important}.outline-double{outline-style:double !important}.outline-groove{outline-style:groove !important}.outline-ridge{outline-style:ridge !important}.outline-inset{outline-style:inset !important}.outline-outset{outline-style:outset !important}.outline-color-black{outline:.167rem solid #1a1a1a !important}.outline-color-white{outline:.167rem solid #fff !important}.outline-color-red{outline:.167rem solid #df3e3e !important}.outline-color-orange{outline:.167rem solid #f37f33 !important}.outline-color-yellow{outline:.167rem solid #fbda21 !important}.outline-color-olive{outline:.167rem solid #cbe41c !important}.outline-color-green{outline:.167rem solid #25ca4c !important}.outline-color-teal{outline:.167rem solid #00d6cc !important}.outline-color-blue{outline:.167rem solid #2e93de !important}.outline-color-dark-blue{outline:.167rem solid #005fa7 !important}.outline-color-violet{outline:.167rem solid #7349cf !important}.outline-color-purple{outline:.167rem solid #ad45d0 !important}.outline-color-pink{outline:.167rem solid #e34da1 !important}.outline-color-brown{outline:.167rem solid #b97447 !important}.outline-color-grey{outline:.167rem solid #848484 !important}.outline-color-light-grey{outline:.167rem solid #b3b3b3 !important}.outline-color-good{outline:.167rem solid #68c22d !important}.outline-color-average{outline:.167rem solid #f29a29 !important}.outline-color-bad{outline:.167rem solid #df3e3e !important}.outline-color-label{outline:.167rem solid #8b9bb0 !important}.outline-color-xeno{outline:.167rem solid #664573 !important}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-baseline{text-align:baseline}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-pre{white-space:pre}.text-bold{font-weight:bold}.text-italic{font-style:italic}.text-underline{text-decoration:underline}.BlockQuote{color:#8b9bb0;border-left:.1666666667em solid #8b9bb0;padding-left:.5em;margin-bottom:.5em}.BlockQuote:last-child{margin-bottom:0}.Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.Button:last-child{margin-right:0;margin-bottom:0}.Button .fa,.Button .fas,.Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.Button--hasContent .fa,.Button--hasContent .fas,.Button--hasContent .far{margin-right:.25em}.Button--hasContent.Button--iconPosition--right .fa,.Button--hasContent.Button--iconPosition--right .fas,.Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.Button--fluid{display:block;margin-left:0;margin-right:0}.Button--circular{border-radius:50%}.Button--compact{padding:0 .25em;line-height:1.333em}.Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.Button--color--black:hover{transition:color 0ms,background-color 0ms}.Button--color--black:focus{transition:color 100ms,background-color 100ms}.Button--color--black:hover,.Button--color--black:focus{background-color:#131313;color:#fff}.Button--color--white{transition:color 50ms,background-color 50ms;background-color:#d9d9d9;color:#000}.Button--color--white:hover{transition:color 0ms,background-color 0ms}.Button--color--white:focus{transition:color 100ms,background-color 100ms}.Button--color--white:hover,.Button--color--white:focus{background-color:#f8f8f8;color:#000}.Button--color--red{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--red:hover{transition:color 0ms,background-color 0ms}.Button--color--red:focus{transition:color 100ms,background-color 100ms}.Button--color--red:hover,.Button--color--red:focus{background-color:#dc4848;color:#fff}.Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#d95e0c;color:#fff}.Button--color--orange:hover{transition:color 0ms,background-color 0ms}.Button--color--orange:focus{transition:color 100ms,background-color 100ms}.Button--color--orange:hover,.Button--color--orange:focus{background-color:#f0853f;color:#fff}.Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.Button--color--yellow:hover,.Button--color--yellow:focus{background-color:#f5d72e;color:#000}.Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#9aad14;color:#fff}.Button--color--olive:hover{transition:color 0ms,background-color 0ms}.Button--color--olive:focus{transition:color 100ms,background-color 100ms}.Button--color--olive:hover,.Button--color--olive:focus{background-color:#c4da2b;color:#fff}.Button--color--green{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--color--green:hover{transition:color 0ms,background-color 0ms}.Button--color--green:focus{transition:color 100ms,background-color 100ms}.Button--color--green:hover,.Button--color--green:focus{background-color:#32c154;color:#fff}.Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#009a93;color:#fff}.Button--color--teal:hover{transition:color 0ms,background-color 0ms}.Button--color--teal:focus{transition:color 100ms,background-color 100ms}.Button--color--teal:hover,.Button--color--teal:focus{background-color:#13c4bc;color:#fff}.Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#1c71b1;color:#fff}.Button--color--blue:hover{transition:color 0ms,background-color 0ms}.Button--color--blue:focus{transition:color 100ms,background-color 100ms}.Button--color--blue:hover,.Button--color--blue:focus{background-color:#3a95d9;color:#fff}.Button--color--dark-blue{transition:color 50ms,background-color 50ms;background-color:#003e6e;color:#fff}.Button--color--dark-blue:hover{transition:color 0ms,background-color 0ms}.Button--color--dark-blue:focus{transition:color 100ms,background-color 100ms}.Button--color--dark-blue:hover,.Button--color--dark-blue:focus{background-color:#135b92;color:#fff}.Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#552dab;color:#fff}.Button--color--violet:hover{transition:color 0ms,background-color 0ms}.Button--color--violet:focus{transition:color 100ms,background-color 100ms}.Button--color--violet:hover,.Button--color--violet:focus{background-color:#7953cc;color:#fff}.Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#8b2baa;color:#fff}.Button--color--purple:hover{transition:color 0ms,background-color 0ms}.Button--color--purple:focus{transition:color 100ms,background-color 100ms}.Button--color--purple:hover,.Button--color--purple:focus{background-color:#ad4fcd;color:#fff}.Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#cf2082;color:#fff}.Button--color--pink:hover{transition:color 0ms,background-color 0ms}.Button--color--pink:focus{transition:color 100ms,background-color 100ms}.Button--color--pink:hover,.Button--color--pink:focus{background-color:#e257a5;color:#fff}.Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#8c5836;color:#fff}.Button--color--brown:hover{transition:color 0ms,background-color 0ms}.Button--color--brown:focus{transition:color 100ms,background-color 100ms}.Button--color--brown:hover,.Button--color--brown:focus{background-color:#b47851;color:#fff}.Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#646464;color:#fff}.Button--color--grey:hover{transition:color 0ms,background-color 0ms}.Button--color--grey:focus{transition:color 100ms,background-color 100ms}.Button--color--grey:hover,.Button--color--grey:focus{background-color:#868686;color:#fff}.Button--color--light-grey{transition:color 50ms,background-color 50ms;background-color:#919191;color:#fff}.Button--color--light-grey:hover{transition:color 0ms,background-color 0ms}.Button--color--light-grey:focus{transition:color 100ms,background-color 100ms}.Button--color--light-grey:hover,.Button--color--light-grey:focus{background-color:#bababa;color:#fff}.Button--color--good{transition:color 50ms,background-color 50ms;background-color:#4d9121;color:#fff}.Button--color--good:hover{transition:color 0ms,background-color 0ms}.Button--color--good:focus{transition:color 100ms,background-color 100ms}.Button--color--good:hover,.Button--color--good:focus{background-color:#6cba39;color:#fff}.Button--color--average{transition:color 50ms,background-color 50ms;background-color:#cd7a0d;color:#fff}.Button--color--average:hover{transition:color 0ms,background-color 0ms}.Button--color--average:focus{transition:color 100ms,background-color 100ms}.Button--color--average:hover,.Button--color--average:focus{background-color:#ed9d35;color:#fff}.Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--bad:hover{transition:color 0ms,background-color 0ms}.Button--color--bad:focus{transition:color 100ms,background-color 100ms}.Button--color--bad:hover,.Button--color--bad:focus{background-color:#dc4848;color:#fff}.Button--color--label{transition:color 50ms,background-color 50ms;background-color:#657a94;color:#fff}.Button--color--label:hover{transition:color 0ms,background-color 0ms}.Button--color--label:focus{transition:color 100ms,background-color 100ms}.Button--color--label:hover,.Button--color--label:focus{background-color:#91a1b3;color:#fff}.Button--color--xeno{transition:color 50ms,background-color 50ms;background-color:#462f4e;color:#fff}.Button--color--xeno:hover{transition:color 0ms,background-color 0ms}.Button--color--xeno:focus{transition:color 100ms,background-color 100ms}.Button--color--xeno:hover,.Button--color--xeno:focus{background-color:#64496d;color:#fff}.Button--color--default{transition:color 50ms,background-color 50ms;background-color:#3e6189;color:#fff}.Button--color--default:hover{transition:color 0ms,background-color 0ms}.Button--color--default:focus{transition:color 100ms,background-color 100ms}.Button--color--default:hover,.Button--color--default:focus{background-color:#5c83b0;color:#fff}.Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--caution:hover{transition:color 0ms,background-color 0ms}.Button--color--caution:focus{transition:color 100ms,background-color 100ms}.Button--color--caution:hover,.Button--color--caution:focus{background-color:#f5d72e;color:#000}.Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--danger:hover{transition:color 0ms,background-color 0ms}.Button--color--danger:focus{transition:color 100ms,background-color 100ms}.Button--color--danger:hover,.Button--color--danger:focus{background-color:#dc4848;color:#fff}.Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#202020;color:#fff;background-color:rgba(32,32,32,0);color:rgba(255,255,255,.5)}.Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.Button--color--transparent:hover,.Button--color--transparent:focus{background-color:#383838;color:#fff}.Button--disabled{background-color:#999 !important}.Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--selected:hover{transition:color 0ms,background-color 0ms}.Button--selected:focus{transition:color 100ms,background-color 100ms}.Button--selected:hover,.Button--selected:focus{background-color:#32c154;color:#fff}.Button--flex{display:inline-flex;flex-direction:column}.Button--flex--fluid{width:100%}.Button--verticalAlignContent--top{justify-content:flex-start}.Button--verticalAlignContent--middle{justify-content:center}.Button--verticalAlignContent--bottom{justify-content:flex-end}.Button__content{display:block;align-self:stretch}.ColorBox{display:inline-block;width:1em;height:1em;line-height:1em;text-align:center}.Dimmer{display:flex;justify-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,.75);z-index:1}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Dropdown{position:relative}.Dropdown__control{position:relative;display:inline-block;font-family:Verdana,sans-serif;font-size:1em;width:8.3333333333em;line-height:1.4166666667em;user-select:none}.Dropdown__arrow-button{float:right;padding-left:.35em;width:1.2em;height:1.8333333333em;border-left:.0833333333em solid #000;border-left:.0833333333em solid rgba(0,0,0,.25)}.Dropdown__menu{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;overflow-y:scroll;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menu-noscroll{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menuentry{padding:.1666666667em .3333333333em;font-family:Verdana,sans-serif;font-size:1em;line-height:1.4166666667em;transition:background-color 100ms ease-out}.Dropdown__menuentry:hover{background-color:rgba(255,255,255,.2);transition:background-color 0ms}.Dropdown__over{top:auto;bottom:100%}.Dropdown__selected-text{display:inline-block;text-overflow:ellipsis;white-space:nowrap;height:1.4166666667em;width:calc(100% - 1.2em)}.Flex{display:-ms-flexbox;display:flex}.Flex--inline{display:inline-flex}.Flex--iefix{display:block}.Flex--iefix.Flex--inline{display:inline-block}.Flex__item--iefix{display:inline-block}.Flex--iefix--column>.Flex__item--iefix{display:block}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto;margin-bottom:-0.2em;cursor:n-resize}.Knob:after{content:".";color:transparent;line-height:2.5em}.Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:rgba(255,255,255,.9)}.Knob__popupValue{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.Knob__ringTrackPivot{transform:rotateZ(135deg)}.Knob__ringTrack{fill:transparent;stroke:rgba(255,255,255,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.Knob__ringFillPivot{transform:rotateZ(135deg)}.Knob--bipolar .Knob__ringFillPivot{transform:rotateZ(270deg)}.Knob__ringFill{fill:transparent;stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.Knob--color--black .Knob__ringFill{stroke:#1a1a1a}.Knob--color--white .Knob__ringFill{stroke:#fff}.Knob--color--red .Knob__ringFill{stroke:#df3e3e}.Knob--color--orange .Knob__ringFill{stroke:#f37f33}.Knob--color--yellow .Knob__ringFill{stroke:#fbda21}.Knob--color--olive .Knob__ringFill{stroke:#cbe41c}.Knob--color--green .Knob__ringFill{stroke:#25ca4c}.Knob--color--teal .Knob__ringFill{stroke:#00d6cc}.Knob--color--blue .Knob__ringFill{stroke:#2e93de}.Knob--color--dark-blue .Knob__ringFill{stroke:#005fa7}.Knob--color--violet .Knob__ringFill{stroke:#7349cf}.Knob--color--purple .Knob__ringFill{stroke:#ad45d0}.Knob--color--pink .Knob__ringFill{stroke:#e34da1}.Knob--color--brown .Knob__ringFill{stroke:#b97447}.Knob--color--grey .Knob__ringFill{stroke:#848484}.Knob--color--light-grey .Knob__ringFill{stroke:#b3b3b3}.Knob--color--good .Knob__ringFill{stroke:#68c22d}.Knob--color--average .Knob__ringFill{stroke:#f29a29}.Knob--color--bad .Knob__ringFill{stroke:#df3e3e}.Knob--color--label .Knob__ringFill{stroke:#8b9bb0}.Knob--color--xeno .Knob__ringFill{stroke:#664573}.LabeledList{display:table;width:100%;width:calc(100% + 1em);border-collapse:collapse;border-spacing:0;margin:-0.25em -0.5em;margin-bottom:0;padding:0}.LabeledList__row{display:table-row}.LabeledList__row:last-child .LabeledList__cell{padding-bottom:0}.LabeledList__cell{display:table-cell;margin:0;padding:.25em .5em;border:0;text-align:left}.LabeledList__label--nowrap{width:1%;white-space:nowrap;min-width:5em}.LabeledList__buttons{width:.1%;white-space:nowrap;text-align:right;padding-top:.0833333333em;padding-bottom:0}.Modal{background-color:#202020;max-width:calc(100% - 1rem);padding:1rem}.NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:bold;font-style:italic;color:#000;background-color:#bb9b68;background-image:repeating-linear-gradient(-45deg, transparent, transparent 0.8333333333em, rgba(0, 0, 0, 0.1) 0.8333333333em, rgba(0, 0, 0, 0.1) 1.6666666667em)}.NoticeBox--color--black{color:#fff;background-color:#000}.NoticeBox--color--white{color:#000;background-color:#b3b3b3}.NoticeBox--color--red{color:#fff;background-color:#701f1f}.NoticeBox--color--orange{color:#fff;background-color:#854114}.NoticeBox--color--yellow{color:#000;background-color:#83710d}.NoticeBox--color--olive{color:#000;background-color:#576015}.NoticeBox--color--green{color:#fff;background-color:#174e24}.NoticeBox--color--teal{color:#fff;background-color:#064845}.NoticeBox--color--blue{color:#fff;background-color:#1b4565}.NoticeBox--color--dark-blue{color:#fff;background-color:#02121f}.NoticeBox--color--violet{color:#fff;background-color:#3b2864}.NoticeBox--color--purple{color:#fff;background-color:#542663}.NoticeBox--color--pink{color:#fff;background-color:#802257}.NoticeBox--color--brown{color:#fff;background-color:#4c3729}.NoticeBox--color--grey{color:#fff;background-color:#3e3e3e}.NoticeBox--color--light-grey{color:#fff;background-color:#6a6a6a}.NoticeBox--color--good{color:#fff;background-color:#2e4b1a}.NoticeBox--color--average{color:#fff;background-color:#7b4e13}.NoticeBox--color--bad{color:#fff;background-color:#701f1f}.NoticeBox--color--label{color:#fff;background-color:#53565a}.NoticeBox--color--xeno{color:#fff;background-color:#19161b}.NoticeBox--type--info{color:#fff;background-color:#235982}.NoticeBox--type--success{color:#fff;background-color:#1e662f}.NoticeBox--type--warning{color:#fff;background-color:#a95219}.NoticeBox--type--danger{color:#fff;background-color:#8f2828}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.NumberInput{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#88bfff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.NumberInput--fluid{display:block}.NumberInput__content{margin-left:.5em}.NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #88bfff;background-color:#88bfff}.NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-width:.0833333333em !important;border-style:solid !important;border-radius:.16em;background-color:rgba(0,0,0,0);transition:border-color 900ms ease-out}.ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.ProgressBar--color--default{border:.0833333333em solid #3e6189}.ProgressBar--color--default .ProgressBar__fill{background-color:#3e6189}.ProgressBar--color--black{border-color:#000 !important}.ProgressBar--color--black .ProgressBar__fill{background-color:#000}.ProgressBar--color--white{border-color:#d9d9d9 !important}.ProgressBar--color--white .ProgressBar__fill{background-color:#d9d9d9}.ProgressBar--color--red{border-color:#bd2020 !important}.ProgressBar--color--red .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--orange{border-color:#d95e0c !important}.ProgressBar--color--orange .ProgressBar__fill{background-color:#d95e0c}.ProgressBar--color--yellow{border-color:#d9b804 !important}.ProgressBar--color--yellow .ProgressBar__fill{background-color:#d9b804}.ProgressBar--color--olive{border-color:#9aad14 !important}.ProgressBar--color--olive .ProgressBar__fill{background-color:#9aad14}.ProgressBar--color--green{border-color:#1b9638 !important}.ProgressBar--color--green .ProgressBar__fill{background-color:#1b9638}.ProgressBar--color--teal{border-color:#009a93 !important}.ProgressBar--color--teal .ProgressBar__fill{background-color:#009a93}.ProgressBar--color--blue{border-color:#1c71b1 !important}.ProgressBar--color--blue .ProgressBar__fill{background-color:#1c71b1}.ProgressBar--color--dark-blue{border-color:#003e6e !important}.ProgressBar--color--dark-blue .ProgressBar__fill{background-color:#003e6e}.ProgressBar--color--violet{border-color:#552dab !important}.ProgressBar--color--violet .ProgressBar__fill{background-color:#552dab}.ProgressBar--color--purple{border-color:#8b2baa !important}.ProgressBar--color--purple .ProgressBar__fill{background-color:#8b2baa}.ProgressBar--color--pink{border-color:#cf2082 !important}.ProgressBar--color--pink .ProgressBar__fill{background-color:#cf2082}.ProgressBar--color--brown{border-color:#8c5836 !important}.ProgressBar--color--brown .ProgressBar__fill{background-color:#8c5836}.ProgressBar--color--grey{border-color:#646464 !important}.ProgressBar--color--grey .ProgressBar__fill{background-color:#646464}.ProgressBar--color--light-grey{border-color:#919191 !important}.ProgressBar--color--light-grey .ProgressBar__fill{background-color:#919191}.ProgressBar--color--good{border-color:#4d9121 !important}.ProgressBar--color--good .ProgressBar__fill{background-color:#4d9121}.ProgressBar--color--average{border-color:#cd7a0d !important}.ProgressBar--color--average .ProgressBar__fill{background-color:#cd7a0d}.ProgressBar--color--bad{border-color:#bd2020 !important}.ProgressBar--color--bad .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--label{border-color:#657a94 !important}.ProgressBar--color--label .ProgressBar__fill{background-color:#657a94}.ProgressBar--color--xeno{border-color:#462f4e !important}.ProgressBar--color--xeno .ProgressBar__fill{background-color:#462f4e}.Section{position:relative;margin-bottom:.5em;background-color:#131313;background-color:#131313;box-sizing:border-box}.Section:last-child{margin-bottom:0}.Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #4972a1}.Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.Section__rest{position:relative}.Section__content{padding:.66em .5em}.Section--fitted>.Section__rest>.Section__content{padding:0}.Section--fill{display:flex;flex-direction:column;height:100%}.Section--fill>.Section__rest{flex-grow:1}.Section--fill>.Section__rest>.Section__content{height:100%}.Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.Section--scrollable{overflow-x:hidden;overflow-y:hidden}.Section--scrollable>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:hidden}.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:hidden;overflow-x:scroll}.Section--scrollable.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.Section--scrollable.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:scroll}.Section .Section{background-color:transparent;margin-left:-0.5em;margin-right:-0.5em}.Section .Section:first-child{margin-top:-0.5em}.Section .Section .Section__titleText{font-size:1.0833333333em}.Section .Section .Section .Section__titleText{font-size:1em}.Slider{cursor:e-resize}.Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none !important}.Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #fff}.Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid transparent;border-right:.4166666667em solid transparent;border-bottom:.4166666667em solid #fff}.Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--fill{height:100%}.Stack--horizontal>.Stack__item{margin-left:.5em}.Stack--horizontal>.Stack__item:first-child{margin-left:0}.Stack--vertical>.Stack__item{margin-top:.5em}.Stack--vertical>.Stack__item:first-child{margin-top:0}.Stack--horizontal>.Stack__divider:not(.Stack__divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--vertical>.Stack__divider:not(.Stack__divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Table{display:table;width:100%;border-collapse:collapse;border-spacing:0;margin:0}.Table--collapsing{width:auto}.Table__row{display:table-row}.Table__cell{display:table-cell;padding:0 .25em}.Table__cell:first-child{padding-left:0}.Table__cell:last-child{padding-right:0}.Table__row--header .Table__cell,.Table__cell--header{font-weight:bold;padding-bottom:.5em}.Table__cell--collapsing{width:1%;white-space:nowrap}.Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:#131313}.Tabs--fill{height:100%}.Section .Tabs{background-color:transparent}.Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.Tabs--horizontal:last-child{margin-bottom:0}.Tabs__Tab{flex-grow:0}.Tabs--fluid .Tabs__Tab{flex-grow:1}.Tab{display:flex;align-items:center;justify-content:space-between;background-color:transparent;color:rgba(255,255,255,.5);min-height:2.25em;min-width:4em}.Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075)}.Tab--selected{background-color:rgba(255,255,255,.125);color:#dfe7f0}.Tab__text{flex-grow:1;margin:0 .5em}.Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.Tabs--horizontal .Tab{border-top:.1666666667em solid transparent;border-bottom:.1666666667em solid transparent;border-top-left-radius:.25em;border-top-right-radius:.25em}.Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #d4dfec}.Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid transparent;border-right:.1666666667em solid transparent;border-top-left-radius:.25em;border-bottom-left-radius:.25em}.Tabs--vertical .Tab--selected{border-right:.1666666667em solid #d4dfec}.Tab--selected.Tab--color--black{color:#535353}.Tabs--horizontal .Tab--selected.Tab--color--black{border-bottom-color:#1a1a1a}.Tabs--vertical .Tab--selected.Tab--color--black{border-right-color:#1a1a1a}.Tab--selected.Tab--color--white{color:#fff}.Tabs--horizontal .Tab--selected.Tab--color--white{border-bottom-color:#fff}.Tabs--vertical .Tab--selected.Tab--color--white{border-right-color:#fff}.Tab--selected.Tab--color--red{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--red{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--red{border-right-color:#df3e3e}.Tab--selected.Tab--color--orange{color:#f69f66}.Tabs--horizontal .Tab--selected.Tab--color--orange{border-bottom-color:#f37f33}.Tabs--vertical .Tab--selected.Tab--color--orange{border-right-color:#f37f33}.Tab--selected.Tab--color--yellow{color:#fce358}.Tabs--horizontal .Tab--selected.Tab--color--yellow{border-bottom-color:#fbda21}.Tabs--vertical .Tab--selected.Tab--color--yellow{border-right-color:#fbda21}.Tab--selected.Tab--color--olive{color:#d8eb55}.Tabs--horizontal .Tab--selected.Tab--color--olive{border-bottom-color:#cbe41c}.Tabs--vertical .Tab--selected.Tab--color--olive{border-right-color:#cbe41c}.Tab--selected.Tab--color--green{color:#53e074}.Tabs--horizontal .Tab--selected.Tab--color--green{border-bottom-color:#25ca4c}.Tabs--vertical .Tab--selected.Tab--color--green{border-right-color:#25ca4c}.Tab--selected.Tab--color--teal{color:#21fff5}.Tabs--horizontal .Tab--selected.Tab--color--teal{border-bottom-color:#00d6cc}.Tabs--vertical .Tab--selected.Tab--color--teal{border-right-color:#00d6cc}.Tab--selected.Tab--color--blue{color:#62aee6}.Tabs--horizontal .Tab--selected.Tab--color--blue{border-bottom-color:#2e93de}.Tabs--vertical .Tab--selected.Tab--color--blue{border-right-color:#2e93de}.Tab--selected.Tab--color--dark-blue{color:#008ffd}.Tabs--horizontal .Tab--selected.Tab--color--dark-blue{border-bottom-color:#005fa7}.Tabs--vertical .Tab--selected.Tab--color--dark-blue{border-right-color:#005fa7}.Tab--selected.Tab--color--violet{color:#9676db}.Tabs--horizontal .Tab--selected.Tab--color--violet{border-bottom-color:#7349cf}.Tabs--vertical .Tab--selected.Tab--color--violet{border-right-color:#7349cf}.Tab--selected.Tab--color--purple{color:#c274db}.Tabs--horizontal .Tab--selected.Tab--color--purple{border-bottom-color:#ad45d0}.Tabs--vertical .Tab--selected.Tab--color--purple{border-right-color:#ad45d0}.Tab--selected.Tab--color--pink{color:#ea79b9}.Tabs--horizontal .Tab--selected.Tab--color--pink{border-bottom-color:#e34da1}.Tabs--vertical .Tab--selected.Tab--color--pink{border-right-color:#e34da1}.Tab--selected.Tab--color--brown{color:#ca9775}.Tabs--horizontal .Tab--selected.Tab--color--brown{border-bottom-color:#b97447}.Tabs--vertical .Tab--selected.Tab--color--brown{border-right-color:#b97447}.Tab--selected.Tab--color--grey{color:#a3a3a3}.Tabs--horizontal .Tab--selected.Tab--color--grey{border-bottom-color:#848484}.Tabs--vertical .Tab--selected.Tab--color--grey{border-right-color:#848484}.Tab--selected.Tab--color--light-grey{color:#c6c6c6}.Tabs--horizontal .Tab--selected.Tab--color--light-grey{border-bottom-color:#b3b3b3}.Tabs--vertical .Tab--selected.Tab--color--light-grey{border-right-color:#b3b3b3}.Tab--selected.Tab--color--good{color:#8cd95a}.Tabs--horizontal .Tab--selected.Tab--color--good{border-bottom-color:#68c22d}.Tabs--vertical .Tab--selected.Tab--color--good{border-right-color:#68c22d}.Tab--selected.Tab--color--average{color:#f5b35e}.Tabs--horizontal .Tab--selected.Tab--color--average{border-bottom-color:#f29a29}.Tabs--vertical .Tab--selected.Tab--color--average{border-right-color:#f29a29}.Tab--selected.Tab--color--bad{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--bad{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--bad{border-right-color:#df3e3e}.Tab--selected.Tab--color--label{color:#a8b4c4}.Tabs--horizontal .Tab--selected.Tab--color--label{border-bottom-color:#8b9bb0}.Tabs--vertical .Tab--selected.Tab--color--label{border-right-color:#8b9bb0}.Tab--selected.Tab--color--xeno{color:#9366a3}.Tabs--horizontal .Tab--selected.Tab--color--xeno{border-bottom-color:#664573}.Tabs--vertical .Tab--selected.Tab--color--xeno{border-right-color:#664573}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.TextArea{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;background-color:#0a0a0a;margin-right:.1666666667em;line-height:1.4166666667em;box-sizing:border-box;width:100%}.TextArea--fluid{display:block;width:auto;height:auto}.TextArea--noborder{border:0px}.TextArea__textarea.TextArea__textarea--scrollable{overflow:auto;overflow-x:hidden;overflow-y:scroll}.TextArea__textarea{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;height:100%;font-size:1em;line-height:1.4166666667em;min-height:1.4166666667em;margin:0;padding:0 .5em;font-family:inherit;background-color:transparent;color:inherit;box-sizing:border-box;word-wrap:break-word;overflow:hidden}.TextArea__textarea:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.TextArea__textarea_custom{overflow:visible;white-space:pre-wrap}.Tooltip{z-index:2;padding:.5em .75em;pointer-events:none;text-align:left;transition:opacity 150ms ease-out;background-color:#000;color:#fff;box-shadow:.1em .1em 1.25em -0.1em rgba(0,0,0,.5);border-radius:.16em;max-width:20.8333333333em}.Chat{color:#abc6ec}.Chat__badge{display:inline-block;min-width:.5em;font-size:.7em;padding:.2em .3em;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:crimson;border-radius:10px;transition:font-size 200ms ease-out}.Chat__badge:before{content:"x"}.Chat__badge--animate{font-size:.9em;transition:font-size 0ms}.Chat__scrollButton{position:fixed;right:2em;bottom:1em}.Chat__reconnected{font-size:.85em;text-align:center;margin:1em 0 2em}.Chat__reconnected:before{content:"Reconnected";display:inline-block;border-radius:1em;padding:0 .7em;color:#db2828;background-color:#131313}.Chat__reconnected:after{content:"";display:block;margin-top:-0.75em;border-bottom:.1666666667em solid #db2828}.Chat__highlight{color:#000}.Chat__highlight--restricted{color:#fff;background-color:#a00;font-weight:bold}.ChatMessage{word-wrap:break-word}.ChatMessage--highlighted{position:relative;border-left:.1666666667em solid #fd4;padding-left:.5em}.ChatMessage--highlighted:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(255,221,68,.1);pointer-events:none}.Ping{position:relative;padding:.125em .25em;border:.0833333333em solid rgba(140,140,140,.5);border-radius:.25em;width:3.75em;text-align:right}.Ping__indicator{content:"";position:absolute;top:.5em;left:.5em;width:.5em;height:.5em;background-color:#888;border-radius:.25em}.Notifications{position:absolute;bottom:1em;left:1em;right:2em}.Notification{color:#fff;background-color:crimson;padding:.5em;margin:1em 0}.Notification:first-child{margin-top:0}.Notification:last-child{margin-bottom:0}.Layout,.Layout *{scrollbar-base-color:#181818;scrollbar-face-color:#363636;scrollbar-3dlight-color:#202020;scrollbar-highlight-color:#202020;scrollbar-track-color:#181818;scrollbar-arrow-color:#909090;scrollbar-shadow-color:#363636}.Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.Layout__content--scrollable{overflow-y:scroll;margin-bottom:0}.Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#202020;background-image:linear-gradient(to bottom, #202020 0%, #202020 100%)}.Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.Window__contentPadding:after{height:0}.Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(56,56,56,.25);pointer-events:none}.Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}em{font-style:normal;font-weight:bold}img{margin:0;padding:0;line-height:1;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated}img.icon{height:1em;min-height:16px;width:auto;vertical-align:bottom}a{color:#397ea5}a.visited{color:#7c00e6}a:visited{color:#7c00e6}a.popt{text-decoration:none}.popup{position:fixed;top:50%;left:50%;background:#ddd}.popup .close{position:absolute;background:#aaa;top:0;right:0;color:#333;text-decoration:none;z-index:2;padding:0 10px;height:30px;line-height:30px}.popup .close:hover{background:#999}.popup .head{background:#999;color:#ddd;padding:0 10px;height:30px;line-height:30px;text-transform:uppercase;font-size:.9em;font-weight:bold;border-bottom:2px solid green}.popup input{border:1px solid #999;background:#fff;margin:0;padding:5px;outline:none;color:#333}.popup input[type=text]:hover,.popup input[type=text]:active,.popup input[type=text]:focus{border-color:green}.popup input[type=submit]{padding:5px 10px;background:#999;color:#ddd;text-transform:uppercase;font-size:.9em;font-weight:bold}.popup input[type=submit]:hover,.popup input[type=submit]:focus,.popup input[type=submit]:active{background:#aaa;cursor:pointer}.changeFont{padding:10px}.changeFont a{display:block;text-decoration:none;padding:3px;color:#333}.changeFont a:hover{background:#ccc}.highlightPopup{padding:10px;text-align:center}.highlightPopup input[type=text]{display:block;width:215px;text-align:left;margin-top:5px}.highlightPopup input.highlightColor{background-color:#ff0}.highlightPopup input.highlightTermSubmit{margin-top:5px}.contextMenu{background-color:#ddd;position:fixed;margin:2px;width:150px}.contextMenu a{display:block;padding:2px 5px;text-decoration:none;color:#333}.contextMenu a:hover{background-color:#ccc}.filterMessages{padding:5px}.filterMessages div{padding:2px 0}.icon-stack{height:1em;line-height:1em;width:1em;vertical-align:middle;margin-top:-2px}.motd{color:#a4bad6;font-family:Verdana,sans-serif;white-space:normal}.motd h1,.motd h2,.motd h3,.motd h4,.motd h5,.motd h6{color:#a4bad6;text-decoration:underline}.motd a,.motd a:link,.motd a:visited,.motd a:active,.motd a:hover{color:#a4bad6}.bold,.name,.prefix,.ooc,.looc,.adminooc,.admin,.medal,.yell{font-weight:bold}.italic,.italics{font-style:italic}.highlight{background:#ff0}h1,h2,h3,h4,h5,h6{color:#a4bad6;font-family:Georgia,Verdana,sans-serif}h1.alert,h2.alert{color:#a4bad6}em{font-style:normal;font-weight:bold}.ooc{font-weight:bold}.adminobserverooc{color:#09c;font-weight:bold}.adminooc{color:#3d5bc3;font-weight:bold}.adminsay{color:#9611d4;font-weight:bold}.admin{color:#5975da;font-weight:bold}.name{font-weight:bold}.deadsay{color:#e2c1ff}.binarysay{color:#1e90ff}.binarysay a{color:lime}.binarysay a:active,.binarysay a:visited{color:#8f8}.radio{color:#1ecc43}.sciradio{color:#c68cfa}.comradio{color:#fcdf03}.secradio{color:#dd3535}.medradio{color:#57b8f0}.engradio{color:#f37746}.suppradio{color:#b88646}.servradio{color:#6ca729}.syndradio{color:#8f4a4b}.gangradio{color:#ac2ea1}.centcomradio{color:#2681a5}.aiprivradio{color:#d65d95}.redteamradio{color:#f44}.blueteamradio{color:#3434fd}.greenteamradio{color:#34fd34}.yellowteamradio{color:#fdfd34}.yell{font-weight:bold}.alert{color:#d82020}.userdanger{color:#c51e1e;font-weight:bold;font-size:185%}.bolddanger{color:#c51e1e;font-weight:bold}.danger{color:#c51e1e}.warning{color:#c51e1e;font-style:italic}.alertwarning{color:red;font-weight:bold}.boldwarning{color:#c51e1e;font-style:italic;font-weight:bold}.announce{color:#c51e1e;font-weight:bold}.boldannounce{color:#c51e1e;font-weight:bold}.minorannounce{font-weight:bold;font-size:185%}.greenannounce{color:#059223;font-weight:bold}.rose{color:#ff5050}.info{color:#9ab0ff}.notice{color:#6685f5}.staff_ic{color:#6685f5}.tinynotice{color:#6685f5;font-size:85%}.tinynoticeital{color:#6685f5;font-style:italic;font-size:85%}.smallnotice{color:#6685f5;font-size:90%}.smallnoticeital{color:#6685f5;font-style:italic;font-size:90%}.boldnotice{color:#6685f5;font-weight:bold}.hear{color:#6685f5;font-style:italic}.adminnotice{color:#6685f5}.adminhelp{color:red;font-weight:bold}.unconscious{color:#a4bad6;font-weight:bold}.suicide{color:#ff5050;font-style:italic}.green{color:#059223}.grey{color:#838383}.red{color:red}.blue{color:#215cff}.nicegreen{color:#059223}.boldnicegreen{color:#059223;font-weight:bold}.cult{color:#973e3b}.cultitalic{color:#973e3b;font-style:italic}.cultbold{color:#973e3b;font-style:italic;font-weight:bold}.cultboldtalic{color:#973e3b;font-weight:bold;font-size:185%}.cultlarge{color:#973e3b;font-weight:bold;font-size:185%}.narsie{color:#973e3b;font-weight:bold;font-size:925%}.narsiesmall{color:#973e3b;font-weight:bold;font-size:370%}.colossus{color:#7f282a;font-size:310%}.hierophant{color:#b441ee;font-weight:bold;font-style:italic}.hierophant_warning{color:#c56bf1;font-style:italic}.purple{color:#9956d3}.holoparasite{color:#88809c}.revennotice{color:#c099e2}.revenboldnotice{color:#c099e2;font-weight:bold}.revenbignotice{color:#c099e2;font-weight:bold;font-size:185%}.revenminor{color:#823abb}.revenwarning{color:#760fbb;font-style:italic}.revendanger{color:#760fbb;font-weight:bold;font-size:185%}.deconversion_message{color:#a947ff;font-size:185%;font-style:italic}.ghostalert{color:#60f;font-style:italic;font-weight:bold}.alien{color:#855d85}.noticealien{color:#059223}.alertalien{color:#059223;font-weight:bold}.changeling{color:#059223;font-style:italic}.alertsyndie{color:red;font-size:185%;font-weight:bold}.spider{color:#80f;font-weight:bold;font-size:185%}.interface{color:#750e75}.sans{font-family:"Comic Sans MS",cursive,sans-serif}.papyrus{font-family:"Papyrus",cursive,sans-serif}.robot{font-family:"Courier New",cursive,sans-serif}.tape_recorder{color:red;font-family:"Courier New",cursive,sans-serif}.command_headset{font-weight:bold;font-size:160%}.small{font-size:60%}.big{font-size:185%}.reallybig{font-size:245%}.extremelybig{font-size:310%}.greentext{color:#059223;font-size:185%}.redtext{color:#c51e1e;font-size:185%}.clown{color:#ff70c1;font-size:160%;font-family:"Comic Sans MS",cursive,sans-serif;font-weight:bold}.singing{font-family:"Trebuchet MS",cursive,sans-serif;font-style:italic}.his_grace{color:#15d512;font-family:"Courier New",cursive,sans-serif;font-style:italic}.hypnophrase{color:#202020;font-weight:bold;animation:hypnocolor 1500ms infinite;animation-direction:alternate}@keyframes hypnocolor{0%{color:#202020}25%{color:#4b02ac}50%{color:#9f41f1}75%{color:#541c9c}100%{color:#7adbf3}}.phobia{color:#d00;font-weight:bold;animation:phobia 750ms infinite}@keyframes phobia{0%{color:#f75a5a}50%{color:#d00}100%{color:#f75a5a}}.icon{height:1em;width:auto}.bigicon{font-size:2.5em}.memo{color:#638500;text-align:center}.memoedit{text-align:center;font-size:125%}.abductor{color:#c204c2;font-style:italic}.mind_control{color:#df3da9;font-size:100%;font-weight:bold;font-style:italic}.slime{color:#00ced1}.drone{color:#848482}.monkey{color:#975032}.swarmer{color:#2c75ff}.resonate{color:#298f85}.monkeyhive{color:#a56408}.monkeylead{color:#af6805;font-size:80%}.connectionClosed,.fatalError{background:red;color:#fff;padding:5px}.connectionClosed.restored{background:green}.internal.boldnshit{color:#3d5bc3;font-weight:bold}.text-normal{font-weight:normal;font-style:normal}.hidden{display:none;visibility:hidden}.ml-1{margin-left:1em}.ml-2{margin-left:2em}.ml-3{margin-left:3em}.xooc{color:#ac04e9;font-weight:bold;font-size:140%}.mooc{color:#090;font-weight:bold;font-size:140%}.yooc{color:#999600;font-weight:bold;font-size:140%}.headminsay{color:#653d78;font-weight:bold}.radio{color:#b4b4b4}.deptradio{color:#939}.comradio{color:#779cc2}.centradio{color:#5c5c8a}.hcradio{color:#318779}.pvstradio{color:#9b0612}.cryoradio{color:#ad6d48}.airadio{color:#f0f}.secradio{color:#a52929}.engradio{color:#a66300}.sentryradio{color:#844300}.sentryradio{color:#844300}.medradio{color:#008160}.supradio{color:#ba8e41}.jtacradio{color:#ad3b98}.intelradio{color:#027d02}.wyradio{color:#fe9b24}.pmcradio{color:#4dc5ce}.vairadio{color:#e3580e}.rmcradio{color:#e3580e}.cmbradio{color:#1b748c}.clfradio{color:#8e83ca}.alpharadio{color:#db2626}.bravoradio{color:#c68610}.charlieradio{color:#a5a}.deltaradio{color:#007fcf}.echoradio{color:#3eb489}.medium{font-size:110%}.big{font-size:115%}.large{font-size:125%}.extra_large{font-size:130%}.huge{font-size:150%}.underline{text-decoration:underline}.orange{color:#eca100}.normal{font-style:normal}.attack{color:#ff3838}.moderate{color:#c00}.disarm{color:#900}.passive{color:#600}.helpful{color:#368f31}.scanner{color:#ff3838}.scannerb{color:#ff3838;font-weight:bold}.scannerburn{color:orange}.scannerburnb{color:orange;font-weight:bold}.rose{color:#ff5050}.debuginfo{color:#493d26;font-style:italic}.xenonotice{color:#51a16c}.xenoboldnotice{color:#51a16c;font-style:italic}.xenowarning{color:#51a16c;font-style:italic}.xenominorwarning{color:#51a16c;font-weight:bold;font-style:italic}.xenodanger{color:#51a16c;font-weight:bold}.avoidharm{color:#72a0e5;font-weight:bold}.highdanger{color:#ff3838;font-weight:bold;font-size:140%}.xenohighdanger{color:#51a16c;font-weight:bold;font-size:140%}.xenoannounce{color:#65c585;font-family:book-antiqua;font-weight:bold;font-size:140%}.yautjabold{color:purple;font-weight:bold}.yautjaboldbig{color:purple;font-weight:bold;font-size:120%}.objectivebig{font-weight:bold;font-size:130%}.objectivegreen{color:lime}.objectivered{color:red}.objectivesuccess{color:lime;font-weight:bold;font-size:110%}.objectivefail{color:red;font-weight:bold;font-size:110%}.xenotalk,.xeno{color:#c048c0;font-style:italic}.xenoleader{color:#996e99;font-style:italic;font-size:125%}.xenoqueen{color:#996e99;font-style:italic;font-weight:bold;font-size:125%}.newscaster{color:maroon}.role_header{color:#e92d2d;display:block;text-align:center;font-weight:bold;font-family:trebuchet-ms;font-size:150%}.role_body{color:#3a3ae9;display:block;text-align:center;font-size:125%}.round_header{color:#e92d2d;display:block;text-align:center;font-family:courier;font-weight:bold;font-size:180%}.round_body{color:#c5c5c5;display:block;text-align:center;font-family:trebuchet-ms;font-weight:bold;font-size:125%}.event_announcement{color:#600d48;font-family:arial-narrow;font-weight:bold;font-size:125%}.announce_header{color:#cecece;font-weight:bold;font-size:150%}.announce_header_blue{color:#7575f3;font-weight:bold;font-size:150%}.announce_header_admin{color:#7575f3;font-weight:bold;font-size:150%}.announce_body{color:#e92d2d;font-weight:normal;font-size:125%}.centerbold{display:block;text-align:center;font-weight:bold}.mod{color:#917455;font-weight:bold}.modooc{color:#184880;font-weight:bold}.adminmod{color:#7c440c;font-weight:bold}.mentorsay{color:#d4af57;font-weight:bold}.mentorhelp{color:#090;font-weight:bold}.mentorbody{color:#da6200;font-weight:bold}.mentorstaff{color:#b5850d;font-weight:bold}.staffsay{color:#b5850d;font-weight:bold}.tajaran{color:#803b56}.tajaran_signlang{color:#941c1c}.skrell{color:#00ced1}.soghun{color:#228b22}.changeling{color:purple}.vox{color:#a0a}.monkey{color:#966c47}.german{color:#858f1e;font-family:"Times New Roman",Times,serif}.spanish{color:#cf982b}.japanese{color:#940927}.chinese{color:#fe1919}.zombie{color:#2dacb1;font-style:italic}.rough{font-family:trebuchet-ms,cursive,sans-serif}.commando{color:#fe9b24;font-style:bold}.say_quote{font-family:Georgia,Verdana,sans-serif}.admin .message{color:#314cad}.admin .prefix{font-weight:bolder}.pm{font-size:110%}.deadsay{color:#8b4dff}.retro_translator{font-weight:bold}.yautja_translator{color:#a00;font-weight:bold;animation:glitch .5s infinite}@keyframes glitch{25%{color:#a00;transform:translate(-2px, -1px)}50%{color:#be0000;transform:translate(1px, -2px)}75%{color:#8d0000;transform:translate(-1px, 2px)}100%{color:#830000;transform:translate(1px, 1px)}}.examine_block{background:#1b1c1e;border:1px solid #a4bad6;margin:.5em;padding:.5em .75em}.examine_block .icon{width:1.5em;height:1.5em;margin:0;padding:0}.tooltip{font-style:italic;border-bottom:1px dashed #fff} -.theme-light .color-black{color:#000 !important}.theme-light .color-white{color:#e6e6e6 !important}.theme-light .color-red{color:#c82121 !important}.theme-light .color-orange{color:#e6630d !important}.theme-light .color-yellow{color:#e5c304 !important}.theme-light .color-olive{color:#a3b816 !important}.theme-light .color-green{color:#1d9f3b !important}.theme-light .color-teal{color:#00a39c !important}.theme-light .color-blue{color:#1e78bb !important}.theme-light .color-dark-blue{color:#004274 !important}.theme-light .color-violet{color:#5a30b5 !important}.theme-light .color-purple{color:#932eb4 !important}.theme-light .color-pink{color:#db228a !important}.theme-light .color-brown{color:#955d39 !important}.theme-light .color-grey{color:#e6e6e6 !important}.theme-light .color-light-grey{color:#999 !important}.theme-light .color-good{color:#529923 !important}.theme-light .color-average{color:#da810e !important}.theme-light .color-bad{color:#c82121 !important}.theme-light .color-label{color:#353535 !important}.theme-light .color-xeno{color:#4a3253 !important}.theme-light .color-bg-black{background-color:#000 !important}.theme-light .color-bg-white{background-color:#bfbfbf !important}.theme-light .color-bg-red{background-color:#a61c1c !important}.theme-light .color-bg-orange{background-color:#c0530b !important}.theme-light .color-bg-yellow{background-color:#bfa303 !important}.theme-light .color-bg-olive{background-color:#889912 !important}.theme-light .color-bg-green{background-color:#188532 !important}.theme-light .color-bg-teal{background-color:#008882 !important}.theme-light .color-bg-blue{background-color:#19649c !important}.theme-light .color-bg-dark-blue{background-color:#003761 !important}.theme-light .color-bg-violet{background-color:#4b2897 !important}.theme-light .color-bg-purple{background-color:#7a2696 !important}.theme-light .color-bg-pink{background-color:#b61d73 !important}.theme-light .color-bg-brown{background-color:#7c4d2f !important}.theme-light .color-bg-grey{background-color:#bfbfbf !important}.theme-light .color-bg-light-grey{background-color:gray !important}.theme-light .color-bg-good{background-color:#44801d !important}.theme-light .color-bg-average{background-color:#b56b0b !important}.theme-light .color-bg-bad{background-color:#a61c1c !important}.theme-light .color-bg-label{background-color:#2c2c2c !important}.theme-light .color-bg-xeno{background-color:#3e2945 !important}.theme-light .Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:#fff}.theme-light .Tabs--fill{height:100%}.theme-light .Section .Tabs{background-color:transparent}.theme-light .Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.theme-light .Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.theme-light .Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.theme-light .Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.theme-light .Tabs--horizontal:last-child{margin-bottom:0}.theme-light .Tabs__Tab{flex-grow:0}.theme-light .Tabs--fluid .Tabs__Tab{flex-grow:1}.theme-light .Tab{display:flex;align-items:center;justify-content:space-between;background-color:transparent;color:rgba(0,0,0,.5);min-height:2.25em;min-width:4em}.theme-light .Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075)}.theme-light .Tab--selected{background-color:rgba(255,255,255,.125);color:#404040}.theme-light .Tab__text{flex-grow:1;margin:0 .5em}.theme-light .Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.theme-light .Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.theme-light .Tabs--horizontal .Tab{border-top:.1666666667em solid transparent;border-bottom:.1666666667em solid transparent;border-top-left-radius:.25em;border-top-right-radius:.25em}.theme-light .Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #000}.theme-light .Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid transparent;border-right:.1666666667em solid transparent;border-top-left-radius:.25em;border-bottom-left-radius:.25em}.theme-light .Tabs--vertical .Tab--selected{border-right:.1666666667em solid #000}.theme-light .Tab--selected.Tab--color--black{color:#404040}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--black{border-bottom-color:#000}.theme-light .Tabs--vertical .Tab--selected.Tab--color--black{border-right-color:#000}.theme-light .Tab--selected.Tab--color--white{color:#ececec}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--white{border-bottom-color:#e6e6e6}.theme-light .Tabs--vertical .Tab--selected.Tab--color--white{border-right-color:#e6e6e6}.theme-light .Tab--selected.Tab--color--red{color:#e14d4d}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--red{border-bottom-color:#c82121}.theme-light .Tabs--vertical .Tab--selected.Tab--color--red{border-right-color:#c82121}.theme-light .Tab--selected.Tab--color--orange{color:#f48942}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--orange{border-bottom-color:#e6630d}.theme-light .Tabs--vertical .Tab--selected.Tab--color--orange{border-right-color:#e6630d}.theme-light .Tab--selected.Tab--color--yellow{color:#fcdd33}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--yellow{border-bottom-color:#e5c304}.theme-light .Tabs--vertical .Tab--selected.Tab--color--yellow{border-right-color:#e5c304}.theme-light .Tab--selected.Tab--color--olive{color:#d0e732}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--olive{border-bottom-color:#a3b816}.theme-light .Tabs--vertical .Tab--selected.Tab--color--olive{border-right-color:#a3b816}.theme-light .Tab--selected.Tab--color--green{color:#33da5a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--green{border-bottom-color:#1d9f3b}.theme-light .Tabs--vertical .Tab--selected.Tab--color--green{border-right-color:#1d9f3b}.theme-light .Tab--selected.Tab--color--teal{color:#00faef}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--teal{border-bottom-color:#00a39c}.theme-light .Tabs--vertical .Tab--selected.Tab--color--teal{border-right-color:#00a39c}.theme-light .Tab--selected.Tab--color--blue{color:#419ce1}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--blue{border-bottom-color:#1e78bb}.theme-light .Tabs--vertical .Tab--selected.Tab--color--blue{border-right-color:#1e78bb}.theme-light .Tab--selected.Tab--color--dark-blue{color:#0079d7}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--dark-blue{border-bottom-color:#004274}.theme-light .Tabs--vertical .Tab--selected.Tab--color--dark-blue{border-right-color:#004274}.theme-light .Tab--selected.Tab--color--violet{color:#7f58d3}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--violet{border-bottom-color:#5a30b5}.theme-light .Tabs--vertical .Tab--selected.Tab--color--violet{border-right-color:#5a30b5}.theme-light .Tab--selected.Tab--color--purple{color:#b455d4}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--purple{border-bottom-color:#932eb4}.theme-light .Tabs--vertical .Tab--selected.Tab--color--purple{border-right-color:#932eb4}.theme-light .Tab--selected.Tab--color--pink{color:#e558a7}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--pink{border-bottom-color:#db228a}.theme-light .Tabs--vertical .Tab--selected.Tab--color--pink{border-right-color:#db228a}.theme-light .Tab--selected.Tab--color--brown{color:#c0825a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--brown{border-bottom-color:#955d39}.theme-light .Tabs--vertical .Tab--selected.Tab--color--brown{border-right-color:#955d39}.theme-light .Tab--selected.Tab--color--grey{color:#ececec}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--grey{border-bottom-color:#e6e6e6}.theme-light .Tabs--vertical .Tab--selected.Tab--color--grey{border-right-color:#e6e6e6}.theme-light .Tab--selected.Tab--color--light-grey{color:#b3b3b3}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--light-grey{border-bottom-color:#999}.theme-light .Tabs--vertical .Tab--selected.Tab--color--light-grey{border-right-color:#999}.theme-light .Tab--selected.Tab--color--good{color:#77d23b}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--good{border-bottom-color:#529923}.theme-light .Tabs--vertical .Tab--selected.Tab--color--good{border-right-color:#529923}.theme-light .Tab--selected.Tab--color--average{color:#f3a23a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--average{border-bottom-color:#da810e}.theme-light .Tabs--vertical .Tab--selected.Tab--color--average{border-right-color:#da810e}.theme-light .Tab--selected.Tab--color--bad{color:#e14d4d}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--bad{border-bottom-color:#c82121}.theme-light .Tabs--vertical .Tab--selected.Tab--color--bad{border-right-color:#c82121}.theme-light .Tab--selected.Tab--color--label{color:#686868}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--label{border-bottom-color:#353535}.theme-light .Tabs--vertical .Tab--selected.Tab--color--label{border-right-color:#353535}.theme-light .Tab--selected.Tab--color--xeno{color:#7e558e}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--xeno{border-bottom-color:#4a3253}.theme-light .Tabs--vertical .Tab--selected.Tab--color--xeno{border-right-color:#4a3253}.theme-light .Section{position:relative;margin-bottom:.5em;background-color:#fff;background-color:#fff;box-sizing:border-box}.theme-light .Section:last-child{margin-bottom:0}.theme-light .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #fff}.theme-light .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#000}.theme-light .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-light .Section__rest{position:relative}.theme-light .Section__content{padding:.66em .5em}.theme-light .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-light .Section--fill{display:flex;flex-direction:column;height:100%}.theme-light .Section--fill>.Section__rest{flex-grow:1}.theme-light .Section--fill>.Section__rest>.Section__content{height:100%}.theme-light .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-light .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-light .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-light .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollable>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:hidden}.theme-light .Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:hidden;overflow-x:scroll}.theme-light .Section--scrollable.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollable.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:scroll}.theme-light .Section .Section{background-color:transparent;margin-left:-0.5em;margin-right:-0.5em}.theme-light .Section .Section:first-child{margin-top:-0.5em}.theme-light .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-light .Section .Section .Section .Section__titleText{font-size:1em}.theme-light .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-light .Button:last-child{margin-right:0;margin-bottom:0}.theme-light .Button .fa,.theme-light .Button .fas,.theme-light .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-light .Button--hasContent .fa,.theme-light .Button--hasContent .fas,.theme-light .Button--hasContent .far{margin-right:.25em}.theme-light .Button--hasContent.Button--iconPosition--right .fa,.theme-light .Button--hasContent.Button--iconPosition--right .fas,.theme-light .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-light .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-light .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-light .Button--circular{border-radius:50%}.theme-light .Button--compact{padding:0 .25em;line-height:1.333em}.theme-light .Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-light .Button--color--black:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--black:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--black:hover,.theme-light .Button--color--black:focus{background-color:#131313;color:#fff}.theme-light .Button--color--white{transition:color 50ms,background-color 50ms;background-color:#bfbfbf;color:#000}.theme-light .Button--color--white:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--white:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--white:hover,.theme-light .Button--color--white:focus{background-color:#efefef;color:#000}.theme-light .Button--color--red{transition:color 50ms,background-color 50ms;background-color:#a61c1c;color:#fff}.theme-light .Button--color--red:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--red:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--red:hover,.theme-light .Button--color--red:focus{background-color:#d23333;color:#fff}.theme-light .Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#c0530b;color:#fff}.theme-light .Button--color--orange:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--orange:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--orange:hover,.theme-light .Button--color--orange:focus{background-color:#ea7426;color:#fff}.theme-light .Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#bfa303;color:#fff}.theme-light .Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--yellow:hover,.theme-light .Button--color--yellow:focus{background-color:#efce17;color:#fff}.theme-light .Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#889912;color:#fff}.theme-light .Button--color--olive:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--olive:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--olive:hover,.theme-light .Button--color--olive:focus{background-color:#afc328;color:#fff}.theme-light .Button--color--green{transition:color 50ms,background-color 50ms;background-color:#188532;color:#fff}.theme-light .Button--color--green:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--green:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--green:hover,.theme-light .Button--color--green:focus{background-color:#2fac4c;color:#fff}.theme-light .Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#008882;color:#fff}.theme-light .Button--color--teal:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--teal:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--teal:hover,.theme-light .Button--color--teal:focus{background-color:#13afa9;color:#fff}.theme-light .Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#19649c;color:#fff}.theme-light .Button--color--blue:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--blue:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--blue:hover,.theme-light .Button--color--blue:focus{background-color:#3086c7;color:#fff}.theme-light .Button--color--dark-blue{transition:color 50ms,background-color 50ms;background-color:#003761;color:#fff}.theme-light .Button--color--dark-blue:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--dark-blue:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--dark-blue:hover,.theme-light .Button--color--dark-blue:focus{background-color:#135283;color:#fff}.theme-light .Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#4b2897;color:#fff}.theme-light .Button--color--violet:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--violet:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--violet:hover,.theme-light .Button--color--violet:focus{background-color:#6a41c1;color:#fff}.theme-light .Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#7a2696;color:#fff}.theme-light .Button--color--purple:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--purple:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--purple:hover,.theme-light .Button--color--purple:focus{background-color:#a03fc0;color:#fff}.theme-light .Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#b61d73;color:#fff}.theme-light .Button--color--pink:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--pink:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--pink:hover,.theme-light .Button--color--pink:focus{background-color:#da3f96;color:#fff}.theme-light .Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#7c4d2f;color:#fff}.theme-light .Button--color--brown:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--brown:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--brown:hover,.theme-light .Button--color--brown:focus{background-color:#a26c49;color:#fff}.theme-light .Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#bfbfbf;color:#000}.theme-light .Button--color--grey:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--grey:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--grey:hover,.theme-light .Button--color--grey:focus{background-color:#efefef;color:#000}.theme-light .Button--color--light-grey{transition:color 50ms,background-color 50ms;background-color:gray;color:#fff}.theme-light .Button--color--light-grey:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--light-grey:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--light-grey:hover,.theme-light .Button--color--light-grey:focus{background-color:#a6a6a6;color:#fff}.theme-light .Button--color--good{transition:color 50ms,background-color 50ms;background-color:#44801d;color:#fff}.theme-light .Button--color--good:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--good:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--good:hover,.theme-light .Button--color--good:focus{background-color:#62a635;color:#fff}.theme-light .Button--color--average{transition:color 50ms,background-color 50ms;background-color:#b56b0b;color:#fff}.theme-light .Button--color--average:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--average:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--average:hover,.theme-light .Button--color--average:focus{background-color:#e48f20;color:#fff}.theme-light .Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#a61c1c;color:#fff}.theme-light .Button--color--bad:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--bad:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--bad:hover,.theme-light .Button--color--bad:focus{background-color:#d23333;color:#fff}.theme-light .Button--color--label{transition:color 50ms,background-color 50ms;background-color:#2c2c2c;color:#fff}.theme-light .Button--color--label:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--label:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--label:hover,.theme-light .Button--color--label:focus{background-color:#464646;color:#fff}.theme-light .Button--color--xeno{transition:color 50ms,background-color 50ms;background-color:#3e2945;color:#fff}.theme-light .Button--color--xeno:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--xeno:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--xeno:hover,.theme-light .Button--color--xeno:focus{background-color:#5a4363;color:#fff}.theme-light .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#bbb;color:#000}.theme-light .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--default:hover,.theme-light .Button--color--default:focus{background-color:#eaeaea;color:#000}.theme-light .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-light .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--caution:hover,.theme-light .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-light .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-light .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--danger:hover,.theme-light .Button--color--danger:focus{background-color:#c4c813;color:#fff}.theme-light .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#eee;color:#000;background-color:rgba(238,238,238,0);color:rgba(0,0,0,.5)}.theme-light .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--transparent:hover,.theme-light .Button--color--transparent:focus{background-color:#fcfcfc;color:#000}.theme-light .Button--disabled{background-color:#363636 !important}.theme-light .Button--selected{transition:color 50ms,background-color 50ms;background-color:#0668b8;color:#fff}.theme-light .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--selected:hover,.theme-light .Button--selected:focus{background-color:#1a8be7;color:#fff}.theme-light .Button--flex{display:inline-flex;flex-direction:column}.theme-light .Button--flex--fluid{width:100%}.theme-light .Button--verticalAlignContent--top{justify-content:flex-start}.theme-light .Button--verticalAlignContent--middle{justify-content:center}.theme-light .Button--verticalAlignContent--bottom{justify-content:flex-end}.theme-light .Button__content{display:block;align-self:stretch}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#353535;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-light .NumberInput--fluid{display:block}.theme-light .NumberInput__content{margin-left:.5em}.theme-light .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-light .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #353535;background-color:#353535}.theme-light .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#fff;color:#000;text-align:right}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .TextArea{position:relative;display:inline-block;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;background-color:#fff;margin-right:.1666666667em;line-height:1.4166666667em;box-sizing:border-box;width:100%}.theme-light .TextArea--fluid{display:block;width:auto;height:auto}.theme-light .TextArea--noborder{border:0px}.theme-light .TextArea__textarea.TextArea__textarea--scrollable{overflow:auto;overflow-x:hidden;overflow-y:scroll}.theme-light .TextArea__textarea{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;height:100%;font-size:1em;line-height:1.4166666667em;min-height:1.4166666667em;margin:0;padding:0 .5em;font-family:inherit;background-color:transparent;color:inherit;box-sizing:border-box;word-wrap:break-word;overflow:hidden}.theme-light .TextArea__textarea:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .TextArea__textarea_custom{overflow:visible;white-space:pre-wrap}.theme-light .Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto;margin-bottom:-0.2em;cursor:n-resize}.theme-light .Knob:after{content:".";color:transparent;line-height:2.5em}.theme-light .Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.theme-light .Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.theme-light .Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:rgba(255,255,255,.9)}.theme-light .Knob__popupValue{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.theme-light .Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.theme-light .Knob__ringTrackPivot{transform:rotateZ(135deg)}.theme-light .Knob__ringTrack{fill:transparent;stroke:rgba(255,255,255,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.theme-light .Knob__ringFillPivot{transform:rotateZ(135deg)}.theme-light .Knob--bipolar .Knob__ringFillPivot{transform:rotateZ(270deg)}.theme-light .Knob__ringFill{fill:transparent;stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.theme-light .Knob--color--black .Knob__ringFill{stroke:#000}.theme-light .Knob--color--white .Knob__ringFill{stroke:#e6e6e6}.theme-light .Knob--color--red .Knob__ringFill{stroke:#c82121}.theme-light .Knob--color--orange .Knob__ringFill{stroke:#e6630d}.theme-light .Knob--color--yellow .Knob__ringFill{stroke:#e5c304}.theme-light .Knob--color--olive .Knob__ringFill{stroke:#a3b816}.theme-light .Knob--color--green .Knob__ringFill{stroke:#1d9f3b}.theme-light .Knob--color--teal .Knob__ringFill{stroke:#00a39c}.theme-light .Knob--color--blue .Knob__ringFill{stroke:#1e78bb}.theme-light .Knob--color--dark-blue .Knob__ringFill{stroke:#004274}.theme-light .Knob--color--violet .Knob__ringFill{stroke:#5a30b5}.theme-light .Knob--color--purple .Knob__ringFill{stroke:#932eb4}.theme-light .Knob--color--pink .Knob__ringFill{stroke:#db228a}.theme-light .Knob--color--brown .Knob__ringFill{stroke:#955d39}.theme-light .Knob--color--grey .Knob__ringFill{stroke:#e6e6e6}.theme-light .Knob--color--light-grey .Knob__ringFill{stroke:#999}.theme-light .Knob--color--good .Knob__ringFill{stroke:#529923}.theme-light .Knob--color--average .Knob__ringFill{stroke:#da810e}.theme-light .Knob--color--bad .Knob__ringFill{stroke:#c82121}.theme-light .Knob--color--label .Knob__ringFill{stroke:#353535}.theme-light .Knob--color--xeno .Knob__ringFill{stroke:#4a3253}.theme-light .Slider{cursor:e-resize}.theme-light .Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none !important}.theme-light .Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #000}.theme-light .Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid transparent;border-right:.4166666667em solid transparent;border-bottom:.4166666667em solid #000}.theme-light .Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.theme-light .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-width:.0833333333em !important;border-style:solid !important;border-radius:.16em;background-color:rgba(0,0,0,0);transition:border-color 900ms ease-out}.theme-light .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-light .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-light .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-light .ProgressBar--color--default{border:.0833333333em solid #bfbfbf}.theme-light .ProgressBar--color--default .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--black{border-color:#000 !important}.theme-light .ProgressBar--color--black .ProgressBar__fill{background-color:#000}.theme-light .ProgressBar--color--white{border-color:#bfbfbf !important}.theme-light .ProgressBar--color--white .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--red{border-color:#a61c1c !important}.theme-light .ProgressBar--color--red .ProgressBar__fill{background-color:#a61c1c}.theme-light .ProgressBar--color--orange{border-color:#c0530b !important}.theme-light .ProgressBar--color--orange .ProgressBar__fill{background-color:#c0530b}.theme-light .ProgressBar--color--yellow{border-color:#bfa303 !important}.theme-light .ProgressBar--color--yellow .ProgressBar__fill{background-color:#bfa303}.theme-light .ProgressBar--color--olive{border-color:#889912 !important}.theme-light .ProgressBar--color--olive .ProgressBar__fill{background-color:#889912}.theme-light .ProgressBar--color--green{border-color:#188532 !important}.theme-light .ProgressBar--color--green .ProgressBar__fill{background-color:#188532}.theme-light .ProgressBar--color--teal{border-color:#008882 !important}.theme-light .ProgressBar--color--teal .ProgressBar__fill{background-color:#008882}.theme-light .ProgressBar--color--blue{border-color:#19649c !important}.theme-light .ProgressBar--color--blue .ProgressBar__fill{background-color:#19649c}.theme-light .ProgressBar--color--dark-blue{border-color:#003761 !important}.theme-light .ProgressBar--color--dark-blue .ProgressBar__fill{background-color:#003761}.theme-light .ProgressBar--color--violet{border-color:#4b2897 !important}.theme-light .ProgressBar--color--violet .ProgressBar__fill{background-color:#4b2897}.theme-light .ProgressBar--color--purple{border-color:#7a2696 !important}.theme-light .ProgressBar--color--purple .ProgressBar__fill{background-color:#7a2696}.theme-light .ProgressBar--color--pink{border-color:#b61d73 !important}.theme-light .ProgressBar--color--pink .ProgressBar__fill{background-color:#b61d73}.theme-light .ProgressBar--color--brown{border-color:#7c4d2f !important}.theme-light .ProgressBar--color--brown .ProgressBar__fill{background-color:#7c4d2f}.theme-light .ProgressBar--color--grey{border-color:#bfbfbf !important}.theme-light .ProgressBar--color--grey .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--light-grey{border-color:gray !important}.theme-light .ProgressBar--color--light-grey .ProgressBar__fill{background-color:gray}.theme-light .ProgressBar--color--good{border-color:#44801d !important}.theme-light .ProgressBar--color--good .ProgressBar__fill{background-color:#44801d}.theme-light .ProgressBar--color--average{border-color:#b56b0b !important}.theme-light .ProgressBar--color--average .ProgressBar__fill{background-color:#b56b0b}.theme-light .ProgressBar--color--bad{border-color:#a61c1c !important}.theme-light .ProgressBar--color--bad .ProgressBar__fill{background-color:#a61c1c}.theme-light .ProgressBar--color--label{border-color:#2c2c2c !important}.theme-light .ProgressBar--color--label .ProgressBar__fill{background-color:#2c2c2c}.theme-light .ProgressBar--color--xeno{border-color:#3e2945 !important}.theme-light .ProgressBar--color--xeno .ProgressBar__fill{background-color:#3e2945}.theme-light .Chat{color:#000}.theme-light .Chat__badge{display:inline-block;min-width:.5em;font-size:.7em;padding:.2em .3em;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:crimson;border-radius:10px;transition:font-size 200ms ease-out}.theme-light .Chat__badge:before{content:"x"}.theme-light .Chat__badge--animate{font-size:.9em;transition:font-size 0ms}.theme-light .Chat__scrollButton{position:fixed;right:2em;bottom:1em}.theme-light .Chat__reconnected{font-size:.85em;text-align:center;margin:1em 0 2em}.theme-light .Chat__reconnected:before{content:"Reconnected";display:inline-block;border-radius:1em;padding:0 .7em;color:#db2828;background-color:#fff}.theme-light .Chat__reconnected:after{content:"";display:block;margin-top:-0.75em;border-bottom:.1666666667em solid #db2828}.theme-light .Chat__highlight{color:#000}.theme-light .Chat__highlight--restricted{color:#fff;background-color:#a00;font-weight:bold}.theme-light .ChatMessage{word-wrap:break-word}.theme-light .ChatMessage--highlighted{position:relative;border-left:.1666666667em solid #fd4;padding-left:.5em}.theme-light .ChatMessage--highlighted:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(255,221,68,.1);pointer-events:none}.theme-light .Layout,.theme-light .Layout *{scrollbar-base-color:#f2f2f2;scrollbar-face-color:#d6d6d6;scrollbar-3dlight-color:#eee;scrollbar-highlight-color:#eee;scrollbar-track-color:#f2f2f2;scrollbar-arrow-color:#777;scrollbar-shadow-color:#d6d6d6}.theme-light .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-light .Layout__content--scrollable{overflow-y:scroll;margin-bottom:0}.theme-light .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#000;background-color:#eee;background-image:linear-gradient(to bottom, #eeeeee 0%, #eeeeee 100%)}.theme-light .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-light .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-light .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-light .Window__contentPadding:after{height:0}.theme-light .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-light .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(252,252,252,.25);pointer-events:none}.theme-light .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-light .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-light .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-light .TitleBar{background-color:#eee;border-bottom:1px solid rgba(0,0,0,.25);box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-light .TitleBar__clickable{color:rgba(0,0,0,.5);background-color:#eee;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-light .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-light .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(0,0,0,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-light .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-light .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-light .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-light .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-light .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-light html,.theme-light body{padding:0;margin:0;height:100%;color:#000}.theme-light body{background:#fff;font-family:Verdana,sans-serif;font-size:13px;line-height:1.2;overflow-x:hidden;overflow-y:scroll;word-wrap:break-word}.theme-light em{font-style:normal;font-weight:bold}.theme-light img{margin:0;padding:0;line-height:1;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated}.theme-light img.icon{height:1em;min-height:16px;width:auto;vertical-align:bottom}.theme-light a{color:blue}.theme-light a.visited{color:#f0f}.theme-light a:visited{color:#f0f}.theme-light a.popt{text-decoration:none}.theme-light .popup{position:fixed;top:50%;left:50%;background:#ddd}.theme-light .popup .close{position:absolute;background:#aaa;top:0;right:0;color:#333;text-decoration:none;z-index:2;padding:0 10px;height:30px;line-height:30px}.theme-light .popup .close:hover{background:#999}.theme-light .popup .head{background:#999;color:#ddd;padding:0 10px;height:30px;line-height:30px;text-transform:uppercase;font-size:.9em;font-weight:bold;border-bottom:2px solid green}.theme-light .popup input{border:1px solid #999;background:#fff;margin:0;padding:5px;outline:none;color:#333}.theme-light .popup input[type=text]:hover,.theme-light .popup input[type=text]:active,.theme-light .popup input[type=text]:focus{border-color:green}.theme-light .popup input[type=submit]{padding:5px 10px;background:#999;color:#ddd;text-transform:uppercase;font-size:.9em;font-weight:bold}.theme-light .popup input[type=submit]:hover,.theme-light .popup input[type=submit]:focus,.theme-light .popup input[type=submit]:active{background:#aaa;cursor:pointer}.theme-light .changeFont{padding:10px}.theme-light .changeFont a{display:block;text-decoration:none;padding:3px;color:#333}.theme-light .changeFont a:hover{background:#ccc}.theme-light .highlightPopup{padding:10px;text-align:center}.theme-light .highlightPopup input[type=text]{display:block;width:215px;text-align:left;margin-top:5px}.theme-light .highlightPopup input.highlightColor{background-color:#ff0}.theme-light .highlightPopup input.highlightTermSubmit{margin-top:5px}.theme-light .contextMenu{background-color:#ddd;position:fixed;margin:2px;width:150px}.theme-light .contextMenu a{display:block;padding:2px 5px;text-decoration:none;color:#333}.theme-light .contextMenu a:hover{background-color:#ccc}.theme-light .filterMessages{padding:5px}.theme-light .filterMessages div{padding:2px 0}.theme-light .icon-stack{height:1em;line-height:1em;width:1em;vertical-align:middle;margin-top:-2px}.theme-light .motd{color:#638500;font-family:Verdana,sans-serif;white-space:normal}.theme-light .motd h1,.theme-light .motd h2,.theme-light .motd h3,.theme-light .motd h4,.theme-light .motd h5,.theme-light .motd h6{color:#638500;text-decoration:underline}.theme-light .motd a,.theme-light .motd a:link,.theme-light .motd a:visited,.theme-light .motd a:active,.theme-light .motd a:hover{color:#638500}.theme-light .bold,.theme-light .name,.theme-light .prefix,.theme-light .ooc,.theme-light .looc,.theme-light .adminooc,.theme-light .admin,.theme-light .medal,.theme-light .yell{font-weight:bold}.theme-light .italic,.theme-light .italics{font-style:italic}.theme-light .highlight{background:#ff0}.theme-light h1,.theme-light h2,.theme-light h3,.theme-light h4,.theme-light h5,.theme-light h6{color:blue;font-family:Georgia,Verdana,sans-serif}.theme-light h1.alert,.theme-light h2.alert{color:#000}.theme-light em{font-style:normal;font-weight:bold}.theme-light .ooc{font-weight:bold}.theme-light .adminobserverooc{color:#09c;font-weight:bold}.theme-light .adminooc{color:#700038;font-weight:bold}.theme-light .adminsay{color:#ff4500;font-weight:bold}.theme-light .admin{color:#4473ff;font-weight:bold}.theme-light .name{font-weight:bold}.theme-light .deadsay{color:#5c00e6}.theme-light .binarysay{color:#20c20e;background-color:#000;display:block}.theme-light .binarysay a{color:lime}.theme-light .binarysay a:active,.theme-light .binarysay a:visited{color:#8f8}.theme-light .radio{color:green}.theme-light .sciradio{color:#939}.theme-light .comradio{color:#948f02}.theme-light .secradio{color:#a30000}.theme-light .medradio{color:#337296}.theme-light .engradio{color:#fb5613}.theme-light .sentryradio{color:#844300}.theme-light .suppradio{color:#a8732b}.theme-light .servradio{color:#6eaa2c}.theme-light .syndradio{color:#6d3f40}.theme-light .gangradio{color:#ac2ea1}.theme-light .centcomradio{color:#686868}.theme-light .aiprivradio{color:#f0f}.theme-light .redteamradio{color:red}.theme-light .blueteamradio{color:blue}.theme-light .greenteamradio{color:lime}.theme-light .yellowteamradio{color:#d1ba22}.theme-light .yell{font-weight:bold}.theme-light .alert{color:red}.theme-light h1.alert,.theme-light h2.alert{color:#000}.theme-light .userdanger{color:red;font-weight:bold;font-size:185%}.theme-light .bolddanger{color:red;font-weight:bold}.theme-light .danger{color:red}.theme-light .tinydanger{color:red;font-size:85%}.theme-light .smalldanger{color:red;font-size:90%}.theme-light .warning{color:red;font-style:italic}.theme-light .alertwarning{color:red;font-weight:bold}.theme-light .boldwarning{color:red;font-style:italic;font-weight:bold}.theme-light .announce{color:#228b22;font-weight:bold}.theme-light .boldannounce{color:red;font-weight:bold}.theme-light .minorannounce{font-weight:bold;font-size:185%}.theme-light .greenannounce{color:lime;font-weight:bold}.theme-light .rose{color:#ff5050}.theme-light .info{color:#00c}.theme-light .notice{color:#009}.theme-light .staff_ic{color:#009}.theme-light .tinynotice{color:#009;font-size:85%}.theme-light .tinynoticeital{color:#009;font-style:italic;font-size:85%}.theme-light .smallnotice{color:#009;font-size:90%}.theme-light .smallnoticeital{color:#009;font-style:italic;font-size:90%}.theme-light .boldnotice{color:#009;font-weight:bold}.theme-light .hear{color:#009;font-style:italic}.theme-light .adminnotice{color:blue}.theme-light .adminhelp{color:red;font-weight:bold}.theme-light .unconscious{color:blue;font-weight:bold}.theme-light .suicide{color:#ff5050;font-style:italic}.theme-light .green{color:#03ff39}.theme-light .grey{color:#838383}.theme-light .red{color:red}.theme-light .blue{color:blue}.theme-light .nicegreen{color:#14a833}.theme-light .boldnicegreen{color:#14a833;font-weight:bold}.theme-light .cult{color:#973e3b}.theme-light .cultitalic{color:#973e3b;font-style:italic}.theme-light .cultbold{color:#973e3b;font-style:italic;font-weight:bold}.theme-light .cultboldtalic{color:#973e3b;font-weight:bold;font-size:185%}.theme-light .cultlarge{color:#973e3b;font-weight:bold;font-size:185%}.theme-light .narsie{color:#973e3b;font-weight:bold;font-size:925%}.theme-light .narsiesmall{color:#973e3b;font-weight:bold;font-size:370%}.theme-light .colossus{color:#7f282a;font-size:310%}.theme-light .hierophant{color:#609;font-weight:bold;font-style:italic}.theme-light .hierophant_warning{color:#609;font-style:italic}.theme-light .purple{color:#5e2d79}.theme-light .holoparasite{color:#35333a}.theme-light .revennotice{color:#1d2953}.theme-light .revenboldnotice{color:#1d2953;font-weight:bold}.theme-light .revenbignotice{color:#1d2953;font-weight:bold;font-size:185%}.theme-light .revenminor{color:#823abb}.theme-light .revenwarning{color:#760fbb;font-style:italic}.theme-light .revendanger{color:#760fbb;font-weight:bold;font-size:185%}.theme-light .deconversion_message{color:#5000a0;font-size:185%;font-style:italic}.theme-light .ghostalert{color:#5c00e6;font-style:italic;font-weight:bold}.theme-light .alien{color:#543354}.theme-light .noticealien{color:#00c000}.theme-light .alertalien{color:#00c000;font-weight:bold}.theme-light .changeling{color:purple;font-style:italic}.theme-light .alertsyndie{color:red;font-size:185%;font-weight:bold}.theme-light .spider{color:#4d004d;font-weight:bold;font-size:185%}.theme-light .interface{color:#303}.theme-light .sans{font-family:"Comic Sans MS",cursive,sans-serif}.theme-light .papyrus{font-family:"Papyrus",cursive,sans-serif}.theme-light .robot{font-family:"Courier New",cursive,sans-serif}.theme-light .tape_recorder{color:maroon;font-family:"Courier New",cursive,sans-serif}.theme-light .command_headset{font-weight:bold;font-size:160%}.theme-light .small{font-size:60%}.theme-light .big{font-size:185%}.theme-light .reallybig{font-size:245%}.theme-light .extremelybig{font-size:310%}.theme-light .greentext{color:lime;font-size:185%}.theme-light .redtext{color:red;font-size:185%}.theme-light .clown{color:#ff69bf;font-size:160%;font-family:"Comic Sans MS",cursive,sans-serif;font-weight:bold}.theme-light .singing{font-family:"Trebuchet MS",cursive,sans-serif;font-style:italic}.theme-light .his_grace{color:#15d512;font-family:"Courier New",cursive,sans-serif;font-style:italic}.theme-light .hypnophrase{color:#0d0d0d;font-weight:bold;animation:hypnocolor 1500ms infinite;animation-direction:alternate}@keyframes hypnocolor{0%{color:#0d0d0d}25%{color:#410194}50%{color:#7f17d8}75%{color:#410194}100%{color:#3bb5d3}}.theme-light .phobia{color:#d00;font-weight:bold;animation:phobia 750ms infinite}@keyframes phobia{0%{color:#0d0d0d}50%{color:#d00}100%{color:#0d0d0d}}.theme-light .icon{height:1em;width:auto}.theme-light .bigicon{font-size:2.5em}.theme-light .memo{color:#638500;text-align:center}.theme-light .memoedit{text-align:center;font-size:125%}.theme-light .abductor{color:purple;font-style:italic}.theme-light .mind_control{color:#a00d6f;font-size:100%;font-weight:bold;font-style:italic}.theme-light .slime{color:#00ced1}.theme-light .drone{color:#848482}.theme-light .monkey{color:#975032}.theme-light .swarmer{color:#2c75ff}.theme-light .resonate{color:#298f85}.theme-light .monkeyhive{color:#774704}.theme-light .monkeylead{color:#774704;font-size:80%}.theme-light .connectionClosed,.theme-light .fatalError{background:red;color:#fff;padding:5px}.theme-light .connectionClosed.restored{background:green}.theme-light .internal.boldnshit{color:blue;font-weight:bold}.theme-light .text-normal{font-weight:normal;font-style:normal}.theme-light .hidden{display:none;visibility:hidden}.theme-light .ml-1{margin-left:1em}.theme-light .ml-2{margin-left:2em}.theme-light .ml-3{margin-left:3em}.theme-light .xooc{color:#6c0094;font-weight:bold;font-size:140%}.theme-light .mooc{color:#090;font-weight:bold;font-size:140%}.theme-light .yooc{color:#999600;font-weight:bold;font-size:140%}.theme-light .headminsay{color:#5a0a7f;font-weight:bold}.theme-light .radio{color:#4e4e4e}.theme-light .deptradio{color:#939}.theme-light .comradio{color:#004080}.theme-light .centradio{color:#5c5c8a}.theme-light .cryoradio{color:#554e3f}.theme-light .hcradio{color:#318779}.theme-light .pvstradio{color:#9b0612}.theme-light .airadio{color:#f0f}.theme-light .secradio{color:#a30000}.theme-light .engradio{color:#a66300}.theme-light .sentryradio{color:#844300}.theme-light .medradio{color:#008160}.theme-light .supradio{color:#5f4519}.theme-light .jtacradio{color:#702963}.theme-light .intelradio{color:#027d02}.theme-light .wyradio{color:#fe9b24}.theme-light .pmcradio{color:#136957}.theme-light .vairadio{color:#943d0a}.theme-light .cmbradio{color:#1b748c}.theme-light .clfradio{color:#6f679c}.theme-light .alpharadio{color:#ea0000}.theme-light .bravoradio{color:#c68610}.theme-light .charlieradio{color:#a5a}.theme-light .deltaradio{color:#007fcf}.theme-light .echoradio{color:#3a7e65}.theme-light .medium{font-size:110%}.theme-light .big{font-size:115%}.theme-light .large{font-size:125%}.theme-light .extra_large{font-size:130%}.theme-light .huge{font-size:150%}.theme-light .underline{text-decoration:underline}.theme-light .orange{color:#eca100}.theme-light .normal{font-style:normal}.theme-light .attack{color:red}.theme-light .moderate{color:#c00}.theme-light .disarm{color:#900}.theme-light .passive{color:#600}.theme-light .helpful{color:#368f31}.theme-light .scanner{color:red}.theme-light .scannerb{color:red;font-weight:bold}.theme-light .scannerburn{color:orange}.theme-light .scannerburnb{color:orange;font-weight:bold}.theme-light .rose{color:#ff5050}.theme-light .debuginfo{color:#493d26;font-style:italic}.theme-light .xenonotice{color:#2a623d}.theme-light .xenoboldnotice{color:#2a623d;font-style:italic}.theme-light .xenowarning{color:#2a623d;font-style:italic}.theme-light .xenominorwarning{color:#2a623d;font-weight:bold;font-style:italic}.theme-light .xenodanger{color:#2a623d;font-weight:bold}.theme-light .avoidharm{color:#72a0e5;font-weight:bold}.theme-light .highdanger{color:red;font-weight:bold;font-size:140%}.theme-light .xenohighdanger{color:#2a623d;font-weight:bold;font-size:140%}.theme-light .xenoannounce{color:#1a472a;font-family:book-antiqua;font-weight:bold;font-size:140%}.theme-light .yautjabold{color:purple;font-weight:bold}.theme-light .yautjaboldbig{color:purple;font-weight:bold;font-size:120%}.theme-light .objectivebig{font-weight:bold;font-size:130%}.theme-light .objectivegreen{color:lime}.theme-light .objectivered{color:red}.theme-light .objectivesuccess{color:lime;font-weight:bold;font-size:110%}.theme-light .objectivefail{color:red;font-weight:bold;font-size:110%}.theme-light .xenotalk,.theme-light .xeno{color:#900090;font-style:italic}.theme-light .xenoleader{color:#730d73;font-style:italic;font-size:125%}.theme-light .xenoqueen{color:#730d73;font-style:italic;font-weight:bold;font-size:125%}.theme-light .newscaster{color:maroon}.theme-light .role_header{color:#db0000;display:block;text-align:center;font-weight:bold;font-family:trebuchet-ms;font-size:150%}.theme-light .role_body{color:#009;display:block;text-align:center;font-size:125%}.theme-light .round_header{color:#db0000;display:block;text-align:center;font-family:courier;font-weight:bold;font-size:180%}.theme-light .round_body{color:#001427;display:block;text-align:center;font-family:trebuchet-ms;font-weight:bold;font-size:125%}.theme-light .event_announcement{color:#600d48;font-family:arial-narrow;font-weight:bold;font-size:125%}.theme-light .announce_header{color:#000;font-weight:bold;font-size:150%}.theme-light .announce_header_blue{color:#009;font-weight:bold;font-size:150%}.theme-light .announce_body{color:red;font-weight:normal;font-size:125%}.theme-light .centerbold{display:block;text-align:center;font-weight:bold}.theme-light .mod{color:#735638;font-weight:bold}.theme-light .modooc{color:#184880;font-weight:bold}.theme-light .adminmod{color:#402a14;font-weight:bold}.theme-light .mentorsay{color:#b38c32;font-weight:bold}.theme-light .mentorhelp{color:#007e00;font-weight:bold}.theme-light .mentorbody{color:#da6200;font-weight:bold}.theme-light .mentorstaff{color:#876101;font-weight:bold}.theme-light .staffsay{color:#876101;font-weight:bold}.theme-light .tajaran{color:#803b56}.theme-light .tajaran_signlang{color:#941c1c}.theme-light .skrell{color:#00ced1}.theme-light .soghun{color:#228b22}.theme-light .changeling{color:purple}.theme-light .vox{color:#a0a}.theme-light .monkey{color:#966c47}.theme-light .german{color:#858f1e;font-family:"Times New Roman",Times,serif}.theme-light .spanish{color:#cf982b}.theme-light .japanese{color:#940927}.theme-light .chinese{color:#fe1919}.theme-light .zombie{color:#216163;font-style:italic}.theme-light .commando{color:#fe9b24;font-style:bold}.theme-light .rough{font-family:trebuchet-ms,cursive,sans-serif}.theme-light .say_quote{font-family:Georgia,Verdana,sans-serif}.theme-light .admin .message{color:#314cad}.theme-light .admin .prefix{font-weight:bolder}.theme-light .pm{font-size:110%}.theme-light .retro_translator{font-weight:bold}.theme-light .yautja_translator{color:#a00;font-weight:bold;animation:glitch .5s infinite}@keyframes glitch{25%{color:#a00;transform:translate(-2px, -1px)}50%{color:#be0000;transform:translate(1px, -2px)}75%{color:#8d0000;transform:translate(-1px, 2px)}100%{color:#830000;transform:translate(1px, 1px)}}.theme-light .examine_block{background:#f2f7fa;border:1px solid #111a27;margin:.5em;padding:.5em .75em}.theme-light .examine_block .icon{width:1.5em;height:1.5em;margin:0;padding:0}.theme-light .tooltip{font-style:italic;border-bottom:1px dashed #000} +html,body{box-sizing:border-box;height:100%;margin:0;font-size:12px}html{overflow:hidden;cursor:default}body{overflow:auto;font-family:Verdana,Geneva,sans-serif}*,*:before,*:after{box-sizing:inherit}h1,h2,h3,h4,h5,h6{display:block;margin:0;padding:6px 0;padding:.5rem 0}h1{font-size:18px;font-size:1.5rem}h2{font-size:16px;font-size:1.333rem}h3{font-size:14px;font-size:1.167rem}h4{font-size:12px;font-size:1rem}td,th{vertical-align:baseline;text-align:left}.candystripe:nth-child(odd){background-color:rgba(0,0,0,.25)}.color-black{color:#1a1a1a !important}.color-white{color:#fff !important}.color-red{color:#df3e3e !important}.color-orange{color:#f37f33 !important}.color-yellow{color:#fbda21 !important}.color-olive{color:#cbe41c !important}.color-green{color:#25ca4c !important}.color-teal{color:#00d6cc !important}.color-blue{color:#2e93de !important}.color-dark-blue{color:#005fa7 !important}.color-violet{color:#7349cf !important}.color-purple{color:#ad45d0 !important}.color-pink{color:#e34da1 !important}.color-brown{color:#b97447 !important}.color-grey{color:#848484 !important}.color-light-grey{color:#b3b3b3 !important}.color-good{color:#68c22d !important}.color-average{color:#f29a29 !important}.color-bad{color:#df3e3e !important}.color-label{color:#8b9bb0 !important}.color-xeno{color:#664573 !important}.color-bg-black{background-color:#000 !important}.color-bg-white{background-color:#d9d9d9 !important}.color-bg-red{background-color:#bd2020 !important}.color-bg-orange{background-color:#d95e0c !important}.color-bg-yellow{background-color:#d9b804 !important}.color-bg-olive{background-color:#9aad14 !important}.color-bg-green{background-color:#1b9638 !important}.color-bg-teal{background-color:#009a93 !important}.color-bg-blue{background-color:#1c71b1 !important}.color-bg-dark-blue{background-color:#003e6e !important}.color-bg-violet{background-color:#552dab !important}.color-bg-purple{background-color:#8b2baa !important}.color-bg-pink{background-color:#cf2082 !important}.color-bg-brown{background-color:#8c5836 !important}.color-bg-grey{background-color:#646464 !important}.color-bg-light-grey{background-color:#919191 !important}.color-bg-good{background-color:#4d9121 !important}.color-bg-average{background-color:#cd7a0d !important}.color-bg-bad{background-color:#bd2020 !important}.color-bg-label{background-color:#657a94 !important}.color-bg-xeno{background-color:#462f4e !important}.debug-layout,.debug-layout *:not(g):not(path){color:rgba(255,255,255,.9) !important;background:transparent !important;outline:1px solid rgba(255,255,255,.5) !important;box-shadow:none !important;filter:none !important}.debug-layout:hover,.debug-layout *:not(g):not(path):hover{outline-color:rgba(255,255,255,.8) !important}.outline-dotted{outline-style:dotted !important}.outline-dashed{outline-style:dashed !important}.outline-solid{outline-style:solid !important}.outline-double{outline-style:double !important}.outline-groove{outline-style:groove !important}.outline-ridge{outline-style:ridge !important}.outline-inset{outline-style:inset !important}.outline-outset{outline-style:outset !important}.outline-color-black{outline:.167rem solid #1a1a1a !important}.outline-color-white{outline:.167rem solid #fff !important}.outline-color-red{outline:.167rem solid #df3e3e !important}.outline-color-orange{outline:.167rem solid #f37f33 !important}.outline-color-yellow{outline:.167rem solid #fbda21 !important}.outline-color-olive{outline:.167rem solid #cbe41c !important}.outline-color-green{outline:.167rem solid #25ca4c !important}.outline-color-teal{outline:.167rem solid #00d6cc !important}.outline-color-blue{outline:.167rem solid #2e93de !important}.outline-color-dark-blue{outline:.167rem solid #005fa7 !important}.outline-color-violet{outline:.167rem solid #7349cf !important}.outline-color-purple{outline:.167rem solid #ad45d0 !important}.outline-color-pink{outline:.167rem solid #e34da1 !important}.outline-color-brown{outline:.167rem solid #b97447 !important}.outline-color-grey{outline:.167rem solid #848484 !important}.outline-color-light-grey{outline:.167rem solid #b3b3b3 !important}.outline-color-good{outline:.167rem solid #68c22d !important}.outline-color-average{outline:.167rem solid #f29a29 !important}.outline-color-bad{outline:.167rem solid #df3e3e !important}.outline-color-label{outline:.167rem solid #8b9bb0 !important}.outline-color-xeno{outline:.167rem solid #664573 !important}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-baseline{text-align:baseline}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-pre{white-space:pre}.text-bold{font-weight:bold}.text-italic{font-style:italic}.text-underline{text-decoration:underline}.BlockQuote{color:#8b9bb0;border-left:.1666666667em solid #8b9bb0;padding-left:.5em;margin-bottom:.5em}.BlockQuote:last-child{margin-bottom:0}.Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.Button:last-child{margin-right:0;margin-bottom:0}.Button .fa,.Button .fas,.Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.Button--hasContent .fa,.Button--hasContent .fas,.Button--hasContent .far{margin-right:.25em}.Button--hasContent.Button--iconPosition--right .fa,.Button--hasContent.Button--iconPosition--right .fas,.Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.Button--fluid{display:block;margin-left:0;margin-right:0}.Button--circular{border-radius:50%}.Button--compact{padding:0 .25em;line-height:1.333em}.Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.Button--color--black:hover{transition:color 0ms,background-color 0ms}.Button--color--black:focus{transition:color 100ms,background-color 100ms}.Button--color--black:hover,.Button--color--black:focus{background-color:#131313;color:#fff}.Button--color--white{transition:color 50ms,background-color 50ms;background-color:#d9d9d9;color:#000}.Button--color--white:hover{transition:color 0ms,background-color 0ms}.Button--color--white:focus{transition:color 100ms,background-color 100ms}.Button--color--white:hover,.Button--color--white:focus{background-color:#f8f8f8;color:#000}.Button--color--red{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--red:hover{transition:color 0ms,background-color 0ms}.Button--color--red:focus{transition:color 100ms,background-color 100ms}.Button--color--red:hover,.Button--color--red:focus{background-color:#dc4848;color:#fff}.Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#d95e0c;color:#fff}.Button--color--orange:hover{transition:color 0ms,background-color 0ms}.Button--color--orange:focus{transition:color 100ms,background-color 100ms}.Button--color--orange:hover,.Button--color--orange:focus{background-color:#f0853f;color:#fff}.Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.Button--color--yellow:hover,.Button--color--yellow:focus{background-color:#f5d72e;color:#000}.Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#9aad14;color:#fff}.Button--color--olive:hover{transition:color 0ms,background-color 0ms}.Button--color--olive:focus{transition:color 100ms,background-color 100ms}.Button--color--olive:hover,.Button--color--olive:focus{background-color:#c4da2b;color:#fff}.Button--color--green{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--color--green:hover{transition:color 0ms,background-color 0ms}.Button--color--green:focus{transition:color 100ms,background-color 100ms}.Button--color--green:hover,.Button--color--green:focus{background-color:#32c154;color:#fff}.Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#009a93;color:#fff}.Button--color--teal:hover{transition:color 0ms,background-color 0ms}.Button--color--teal:focus{transition:color 100ms,background-color 100ms}.Button--color--teal:hover,.Button--color--teal:focus{background-color:#13c4bc;color:#fff}.Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#1c71b1;color:#fff}.Button--color--blue:hover{transition:color 0ms,background-color 0ms}.Button--color--blue:focus{transition:color 100ms,background-color 100ms}.Button--color--blue:hover,.Button--color--blue:focus{background-color:#3a95d9;color:#fff}.Button--color--dark-blue{transition:color 50ms,background-color 50ms;background-color:#003e6e;color:#fff}.Button--color--dark-blue:hover{transition:color 0ms,background-color 0ms}.Button--color--dark-blue:focus{transition:color 100ms,background-color 100ms}.Button--color--dark-blue:hover,.Button--color--dark-blue:focus{background-color:#135b92;color:#fff}.Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#552dab;color:#fff}.Button--color--violet:hover{transition:color 0ms,background-color 0ms}.Button--color--violet:focus{transition:color 100ms,background-color 100ms}.Button--color--violet:hover,.Button--color--violet:focus{background-color:#7953cc;color:#fff}.Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#8b2baa;color:#fff}.Button--color--purple:hover{transition:color 0ms,background-color 0ms}.Button--color--purple:focus{transition:color 100ms,background-color 100ms}.Button--color--purple:hover,.Button--color--purple:focus{background-color:#ad4fcd;color:#fff}.Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#cf2082;color:#fff}.Button--color--pink:hover{transition:color 0ms,background-color 0ms}.Button--color--pink:focus{transition:color 100ms,background-color 100ms}.Button--color--pink:hover,.Button--color--pink:focus{background-color:#e257a5;color:#fff}.Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#8c5836;color:#fff}.Button--color--brown:hover{transition:color 0ms,background-color 0ms}.Button--color--brown:focus{transition:color 100ms,background-color 100ms}.Button--color--brown:hover,.Button--color--brown:focus{background-color:#b47851;color:#fff}.Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#646464;color:#fff}.Button--color--grey:hover{transition:color 0ms,background-color 0ms}.Button--color--grey:focus{transition:color 100ms,background-color 100ms}.Button--color--grey:hover,.Button--color--grey:focus{background-color:#868686;color:#fff}.Button--color--light-grey{transition:color 50ms,background-color 50ms;background-color:#919191;color:#fff}.Button--color--light-grey:hover{transition:color 0ms,background-color 0ms}.Button--color--light-grey:focus{transition:color 100ms,background-color 100ms}.Button--color--light-grey:hover,.Button--color--light-grey:focus{background-color:#bababa;color:#fff}.Button--color--good{transition:color 50ms,background-color 50ms;background-color:#4d9121;color:#fff}.Button--color--good:hover{transition:color 0ms,background-color 0ms}.Button--color--good:focus{transition:color 100ms,background-color 100ms}.Button--color--good:hover,.Button--color--good:focus{background-color:#6cba39;color:#fff}.Button--color--average{transition:color 50ms,background-color 50ms;background-color:#cd7a0d;color:#fff}.Button--color--average:hover{transition:color 0ms,background-color 0ms}.Button--color--average:focus{transition:color 100ms,background-color 100ms}.Button--color--average:hover,.Button--color--average:focus{background-color:#ed9d35;color:#fff}.Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--bad:hover{transition:color 0ms,background-color 0ms}.Button--color--bad:focus{transition:color 100ms,background-color 100ms}.Button--color--bad:hover,.Button--color--bad:focus{background-color:#dc4848;color:#fff}.Button--color--label{transition:color 50ms,background-color 50ms;background-color:#657a94;color:#fff}.Button--color--label:hover{transition:color 0ms,background-color 0ms}.Button--color--label:focus{transition:color 100ms,background-color 100ms}.Button--color--label:hover,.Button--color--label:focus{background-color:#91a1b3;color:#fff}.Button--color--xeno{transition:color 50ms,background-color 50ms;background-color:#462f4e;color:#fff}.Button--color--xeno:hover{transition:color 0ms,background-color 0ms}.Button--color--xeno:focus{transition:color 100ms,background-color 100ms}.Button--color--xeno:hover,.Button--color--xeno:focus{background-color:#64496d;color:#fff}.Button--color--default{transition:color 50ms,background-color 50ms;background-color:#3e6189;color:#fff}.Button--color--default:hover{transition:color 0ms,background-color 0ms}.Button--color--default:focus{transition:color 100ms,background-color 100ms}.Button--color--default:hover,.Button--color--default:focus{background-color:#5c83b0;color:#fff}.Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--caution:hover{transition:color 0ms,background-color 0ms}.Button--color--caution:focus{transition:color 100ms,background-color 100ms}.Button--color--caution:hover,.Button--color--caution:focus{background-color:#f5d72e;color:#000}.Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--danger:hover{transition:color 0ms,background-color 0ms}.Button--color--danger:focus{transition:color 100ms,background-color 100ms}.Button--color--danger:hover,.Button--color--danger:focus{background-color:#dc4848;color:#fff}.Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#202020;color:#fff;background-color:rgba(32,32,32,0);color:rgba(255,255,255,.5)}.Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.Button--color--transparent:hover,.Button--color--transparent:focus{background-color:#383838;color:#fff}.Button--disabled{background-color:#999 !important}.Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--selected:hover{transition:color 0ms,background-color 0ms}.Button--selected:focus{transition:color 100ms,background-color 100ms}.Button--selected:hover,.Button--selected:focus{background-color:#32c154;color:#fff}.Button--flex{display:inline-flex;flex-direction:column}.Button--flex--fluid{width:100%}.Button--verticalAlignContent--top{justify-content:flex-start}.Button--verticalAlignContent--middle{justify-content:center}.Button--verticalAlignContent--bottom{justify-content:flex-end}.Button__content{display:block;align-self:stretch}.ColorBox{display:inline-block;width:1em;height:1em;line-height:1em;text-align:center}.Dimmer{display:flex;justify-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,.75);z-index:1}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Dropdown{position:relative}.Dropdown__control{position:relative;display:inline-block;font-family:Verdana,sans-serif;font-size:1em;width:8.3333333333em;line-height:1.4166666667em;user-select:none}.Dropdown__arrow-button{float:right;padding-left:.35em;width:1.2em;height:1.8333333333em;border-left:.0833333333em solid #000;border-left:.0833333333em solid rgba(0,0,0,.25)}.Dropdown__menu{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;overflow-y:scroll;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menu-noscroll{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menuentry{padding:.1666666667em .3333333333em;font-family:Verdana,sans-serif;font-size:1em;line-height:1.4166666667em;transition:background-color 100ms ease-out}.Dropdown__menuentry:hover{background-color:rgba(255,255,255,.2);transition:background-color 0ms}.Dropdown__over{top:auto;bottom:100%}.Dropdown__selected-text{display:inline-block;text-overflow:ellipsis;white-space:nowrap;height:1.4166666667em;width:calc(100% - 1.2em)}.Flex{display:-ms-flexbox;display:flex}.Flex--inline{display:inline-flex}.Flex--iefix{display:block}.Flex--iefix.Flex--inline{display:inline-block}.Flex__item--iefix{display:inline-block}.Flex--iefix--column>.Flex__item--iefix{display:block}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto;margin-bottom:-0.2em;cursor:n-resize}.Knob:after{content:".";color:transparent;line-height:2.5em}.Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:rgba(255,255,255,.9)}.Knob__popupValue{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.Knob__ringTrackPivot{transform:rotateZ(135deg)}.Knob__ringTrack{fill:transparent;stroke:rgba(255,255,255,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.Knob__ringFillPivot{transform:rotateZ(135deg)}.Knob--bipolar .Knob__ringFillPivot{transform:rotateZ(270deg)}.Knob__ringFill{fill:transparent;stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.Knob--color--black .Knob__ringFill{stroke:#1a1a1a}.Knob--color--white .Knob__ringFill{stroke:#fff}.Knob--color--red .Knob__ringFill{stroke:#df3e3e}.Knob--color--orange .Knob__ringFill{stroke:#f37f33}.Knob--color--yellow .Knob__ringFill{stroke:#fbda21}.Knob--color--olive .Knob__ringFill{stroke:#cbe41c}.Knob--color--green .Knob__ringFill{stroke:#25ca4c}.Knob--color--teal .Knob__ringFill{stroke:#00d6cc}.Knob--color--blue .Knob__ringFill{stroke:#2e93de}.Knob--color--dark-blue .Knob__ringFill{stroke:#005fa7}.Knob--color--violet .Knob__ringFill{stroke:#7349cf}.Knob--color--purple .Knob__ringFill{stroke:#ad45d0}.Knob--color--pink .Knob__ringFill{stroke:#e34da1}.Knob--color--brown .Knob__ringFill{stroke:#b97447}.Knob--color--grey .Knob__ringFill{stroke:#848484}.Knob--color--light-grey .Knob__ringFill{stroke:#b3b3b3}.Knob--color--good .Knob__ringFill{stroke:#68c22d}.Knob--color--average .Knob__ringFill{stroke:#f29a29}.Knob--color--bad .Knob__ringFill{stroke:#df3e3e}.Knob--color--label .Knob__ringFill{stroke:#8b9bb0}.Knob--color--xeno .Knob__ringFill{stroke:#664573}.LabeledList{display:table;width:100%;width:calc(100% + 1em);border-collapse:collapse;border-spacing:0;margin:-0.25em -0.5em;margin-bottom:0;padding:0}.LabeledList__row{display:table-row}.LabeledList__row:last-child .LabeledList__cell{padding-bottom:0}.LabeledList__cell{display:table-cell;margin:0;padding:.25em .5em;border:0;text-align:left}.LabeledList__label--nowrap{width:1%;white-space:nowrap;min-width:5em}.LabeledList__buttons{width:.1%;white-space:nowrap;text-align:right;padding-top:.0833333333em;padding-bottom:0}.Modal{background-color:#202020;max-width:calc(100% - 1rem);padding:1rem}.NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:bold;font-style:italic;color:#000;background-color:#bb9b68;background-image:repeating-linear-gradient(-45deg, transparent, transparent 0.8333333333em, rgba(0, 0, 0, 0.1) 0.8333333333em, rgba(0, 0, 0, 0.1) 1.6666666667em)}.NoticeBox--color--black{color:#fff;background-color:#000}.NoticeBox--color--white{color:#000;background-color:#b3b3b3}.NoticeBox--color--red{color:#fff;background-color:#701f1f}.NoticeBox--color--orange{color:#fff;background-color:#854114}.NoticeBox--color--yellow{color:#000;background-color:#83710d}.NoticeBox--color--olive{color:#000;background-color:#576015}.NoticeBox--color--green{color:#fff;background-color:#174e24}.NoticeBox--color--teal{color:#fff;background-color:#064845}.NoticeBox--color--blue{color:#fff;background-color:#1b4565}.NoticeBox--color--dark-blue{color:#fff;background-color:#02121f}.NoticeBox--color--violet{color:#fff;background-color:#3b2864}.NoticeBox--color--purple{color:#fff;background-color:#542663}.NoticeBox--color--pink{color:#fff;background-color:#802257}.NoticeBox--color--brown{color:#fff;background-color:#4c3729}.NoticeBox--color--grey{color:#fff;background-color:#3e3e3e}.NoticeBox--color--light-grey{color:#fff;background-color:#6a6a6a}.NoticeBox--color--good{color:#fff;background-color:#2e4b1a}.NoticeBox--color--average{color:#fff;background-color:#7b4e13}.NoticeBox--color--bad{color:#fff;background-color:#701f1f}.NoticeBox--color--label{color:#fff;background-color:#53565a}.NoticeBox--color--xeno{color:#fff;background-color:#19161b}.NoticeBox--type--info{color:#fff;background-color:#235982}.NoticeBox--type--success{color:#fff;background-color:#1e662f}.NoticeBox--type--warning{color:#fff;background-color:#a95219}.NoticeBox--type--danger{color:#fff;background-color:#8f2828}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.NumberInput{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#88bfff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.NumberInput--fluid{display:block}.NumberInput__content{margin-left:.5em}.NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #88bfff;background-color:#88bfff}.NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-width:.0833333333em !important;border-style:solid !important;border-radius:.16em;background-color:rgba(0,0,0,0);transition:border-color 900ms ease-out}.ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.ProgressBar--color--default{border:.0833333333em solid #3e6189}.ProgressBar--color--default .ProgressBar__fill{background-color:#3e6189}.ProgressBar--color--black{border-color:#000 !important}.ProgressBar--color--black .ProgressBar__fill{background-color:#000}.ProgressBar--color--white{border-color:#d9d9d9 !important}.ProgressBar--color--white .ProgressBar__fill{background-color:#d9d9d9}.ProgressBar--color--red{border-color:#bd2020 !important}.ProgressBar--color--red .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--orange{border-color:#d95e0c !important}.ProgressBar--color--orange .ProgressBar__fill{background-color:#d95e0c}.ProgressBar--color--yellow{border-color:#d9b804 !important}.ProgressBar--color--yellow .ProgressBar__fill{background-color:#d9b804}.ProgressBar--color--olive{border-color:#9aad14 !important}.ProgressBar--color--olive .ProgressBar__fill{background-color:#9aad14}.ProgressBar--color--green{border-color:#1b9638 !important}.ProgressBar--color--green .ProgressBar__fill{background-color:#1b9638}.ProgressBar--color--teal{border-color:#009a93 !important}.ProgressBar--color--teal .ProgressBar__fill{background-color:#009a93}.ProgressBar--color--blue{border-color:#1c71b1 !important}.ProgressBar--color--blue .ProgressBar__fill{background-color:#1c71b1}.ProgressBar--color--dark-blue{border-color:#003e6e !important}.ProgressBar--color--dark-blue .ProgressBar__fill{background-color:#003e6e}.ProgressBar--color--violet{border-color:#552dab !important}.ProgressBar--color--violet .ProgressBar__fill{background-color:#552dab}.ProgressBar--color--purple{border-color:#8b2baa !important}.ProgressBar--color--purple .ProgressBar__fill{background-color:#8b2baa}.ProgressBar--color--pink{border-color:#cf2082 !important}.ProgressBar--color--pink .ProgressBar__fill{background-color:#cf2082}.ProgressBar--color--brown{border-color:#8c5836 !important}.ProgressBar--color--brown .ProgressBar__fill{background-color:#8c5836}.ProgressBar--color--grey{border-color:#646464 !important}.ProgressBar--color--grey .ProgressBar__fill{background-color:#646464}.ProgressBar--color--light-grey{border-color:#919191 !important}.ProgressBar--color--light-grey .ProgressBar__fill{background-color:#919191}.ProgressBar--color--good{border-color:#4d9121 !important}.ProgressBar--color--good .ProgressBar__fill{background-color:#4d9121}.ProgressBar--color--average{border-color:#cd7a0d !important}.ProgressBar--color--average .ProgressBar__fill{background-color:#cd7a0d}.ProgressBar--color--bad{border-color:#bd2020 !important}.ProgressBar--color--bad .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--label{border-color:#657a94 !important}.ProgressBar--color--label .ProgressBar__fill{background-color:#657a94}.ProgressBar--color--xeno{border-color:#462f4e !important}.ProgressBar--color--xeno .ProgressBar__fill{background-color:#462f4e}.Section{position:relative;margin-bottom:.5em;background-color:#131313;background-color:#131313;box-sizing:border-box}.Section:last-child{margin-bottom:0}.Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #4972a1}.Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.Section__rest{position:relative}.Section__content{padding:.66em .5em}.Section--fitted>.Section__rest>.Section__content{padding:0}.Section--fill{display:flex;flex-direction:column;height:100%}.Section--fill>.Section__rest{flex-grow:1}.Section--fill>.Section__rest>.Section__content{height:100%}.Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.Section--scrollable{overflow-x:hidden;overflow-y:hidden}.Section--scrollable>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:hidden}.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:hidden;overflow-x:scroll}.Section--scrollable.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.Section--scrollable.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:scroll}.Section .Section{background-color:transparent;margin-left:-0.5em;margin-right:-0.5em}.Section .Section:first-child{margin-top:-0.5em}.Section .Section .Section__titleText{font-size:1.0833333333em}.Section .Section .Section .Section__titleText{font-size:1em}.Slider{cursor:e-resize}.Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none !important}.Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #fff}.Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid transparent;border-right:.4166666667em solid transparent;border-bottom:.4166666667em solid #fff}.Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--fill{height:100%}.Stack--horizontal>.Stack__item{margin-left:.5em}.Stack--horizontal>.Stack__item:first-child{margin-left:0}.Stack--vertical>.Stack__item{margin-top:.5em}.Stack--vertical>.Stack__item:first-child{margin-top:0}.Stack--horizontal>.Stack__divider:not(.Stack__divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--vertical>.Stack__divider:not(.Stack__divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Table{display:table;width:100%;border-collapse:collapse;border-spacing:0;margin:0}.Table--collapsing{width:auto}.Table__row{display:table-row}.Table__cell{display:table-cell;padding:0 .25em}.Table__cell:first-child{padding-left:0}.Table__cell:last-child{padding-right:0}.Table__row--header .Table__cell,.Table__cell--header{font-weight:bold;padding-bottom:.5em}.Table__cell--collapsing{width:1%;white-space:nowrap}.Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:#131313}.Tabs--fill{height:100%}.Section .Tabs{background-color:transparent}.Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.Tabs--horizontal:last-child{margin-bottom:0}.Tabs__Tab{flex-grow:0}.Tabs--fluid .Tabs__Tab{flex-grow:1}.Tab{display:flex;align-items:center;justify-content:space-between;background-color:transparent;color:rgba(255,255,255,.5);min-height:2.25em;min-width:4em}.Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075)}.Tab--selected{background-color:rgba(255,255,255,.125);color:#dfe7f0}.Tab__text{flex-grow:1;margin:0 .5em}.Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.Tabs--horizontal .Tab{border-top:.1666666667em solid transparent;border-bottom:.1666666667em solid transparent;border-top-left-radius:.25em;border-top-right-radius:.25em}.Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #d4dfec}.Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid transparent;border-right:.1666666667em solid transparent;border-top-left-radius:.25em;border-bottom-left-radius:.25em}.Tabs--vertical .Tab--selected{border-right:.1666666667em solid #d4dfec}.Tab--selected.Tab--color--black{color:#535353}.Tabs--horizontal .Tab--selected.Tab--color--black{border-bottom-color:#1a1a1a}.Tabs--vertical .Tab--selected.Tab--color--black{border-right-color:#1a1a1a}.Tab--selected.Tab--color--white{color:#fff}.Tabs--horizontal .Tab--selected.Tab--color--white{border-bottom-color:#fff}.Tabs--vertical .Tab--selected.Tab--color--white{border-right-color:#fff}.Tab--selected.Tab--color--red{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--red{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--red{border-right-color:#df3e3e}.Tab--selected.Tab--color--orange{color:#f69f66}.Tabs--horizontal .Tab--selected.Tab--color--orange{border-bottom-color:#f37f33}.Tabs--vertical .Tab--selected.Tab--color--orange{border-right-color:#f37f33}.Tab--selected.Tab--color--yellow{color:#fce358}.Tabs--horizontal .Tab--selected.Tab--color--yellow{border-bottom-color:#fbda21}.Tabs--vertical .Tab--selected.Tab--color--yellow{border-right-color:#fbda21}.Tab--selected.Tab--color--olive{color:#d8eb55}.Tabs--horizontal .Tab--selected.Tab--color--olive{border-bottom-color:#cbe41c}.Tabs--vertical .Tab--selected.Tab--color--olive{border-right-color:#cbe41c}.Tab--selected.Tab--color--green{color:#53e074}.Tabs--horizontal .Tab--selected.Tab--color--green{border-bottom-color:#25ca4c}.Tabs--vertical .Tab--selected.Tab--color--green{border-right-color:#25ca4c}.Tab--selected.Tab--color--teal{color:#21fff5}.Tabs--horizontal .Tab--selected.Tab--color--teal{border-bottom-color:#00d6cc}.Tabs--vertical .Tab--selected.Tab--color--teal{border-right-color:#00d6cc}.Tab--selected.Tab--color--blue{color:#62aee6}.Tabs--horizontal .Tab--selected.Tab--color--blue{border-bottom-color:#2e93de}.Tabs--vertical .Tab--selected.Tab--color--blue{border-right-color:#2e93de}.Tab--selected.Tab--color--dark-blue{color:#008ffd}.Tabs--horizontal .Tab--selected.Tab--color--dark-blue{border-bottom-color:#005fa7}.Tabs--vertical .Tab--selected.Tab--color--dark-blue{border-right-color:#005fa7}.Tab--selected.Tab--color--violet{color:#9676db}.Tabs--horizontal .Tab--selected.Tab--color--violet{border-bottom-color:#7349cf}.Tabs--vertical .Tab--selected.Tab--color--violet{border-right-color:#7349cf}.Tab--selected.Tab--color--purple{color:#c274db}.Tabs--horizontal .Tab--selected.Tab--color--purple{border-bottom-color:#ad45d0}.Tabs--vertical .Tab--selected.Tab--color--purple{border-right-color:#ad45d0}.Tab--selected.Tab--color--pink{color:#ea79b9}.Tabs--horizontal .Tab--selected.Tab--color--pink{border-bottom-color:#e34da1}.Tabs--vertical .Tab--selected.Tab--color--pink{border-right-color:#e34da1}.Tab--selected.Tab--color--brown{color:#ca9775}.Tabs--horizontal .Tab--selected.Tab--color--brown{border-bottom-color:#b97447}.Tabs--vertical .Tab--selected.Tab--color--brown{border-right-color:#b97447}.Tab--selected.Tab--color--grey{color:#a3a3a3}.Tabs--horizontal .Tab--selected.Tab--color--grey{border-bottom-color:#848484}.Tabs--vertical .Tab--selected.Tab--color--grey{border-right-color:#848484}.Tab--selected.Tab--color--light-grey{color:#c6c6c6}.Tabs--horizontal .Tab--selected.Tab--color--light-grey{border-bottom-color:#b3b3b3}.Tabs--vertical .Tab--selected.Tab--color--light-grey{border-right-color:#b3b3b3}.Tab--selected.Tab--color--good{color:#8cd95a}.Tabs--horizontal .Tab--selected.Tab--color--good{border-bottom-color:#68c22d}.Tabs--vertical .Tab--selected.Tab--color--good{border-right-color:#68c22d}.Tab--selected.Tab--color--average{color:#f5b35e}.Tabs--horizontal .Tab--selected.Tab--color--average{border-bottom-color:#f29a29}.Tabs--vertical .Tab--selected.Tab--color--average{border-right-color:#f29a29}.Tab--selected.Tab--color--bad{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--bad{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--bad{border-right-color:#df3e3e}.Tab--selected.Tab--color--label{color:#a8b4c4}.Tabs--horizontal .Tab--selected.Tab--color--label{border-bottom-color:#8b9bb0}.Tabs--vertical .Tab--selected.Tab--color--label{border-right-color:#8b9bb0}.Tab--selected.Tab--color--xeno{color:#9366a3}.Tabs--horizontal .Tab--selected.Tab--color--xeno{border-bottom-color:#664573}.Tabs--vertical .Tab--selected.Tab--color--xeno{border-right-color:#664573}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.TextArea{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;background-color:#0a0a0a;margin-right:.1666666667em;line-height:1.4166666667em;box-sizing:border-box;width:100%}.TextArea--fluid{display:block;width:auto;height:auto}.TextArea--noborder{border:0px}.TextArea__textarea.TextArea__textarea--scrollable{overflow:auto;overflow-x:hidden;overflow-y:scroll}.TextArea__textarea{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;height:100%;font-size:1em;line-height:1.4166666667em;min-height:1.4166666667em;margin:0;padding:0 .5em;font-family:inherit;background-color:transparent;color:inherit;box-sizing:border-box;word-wrap:break-word;overflow:hidden}.TextArea__textarea:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.TextArea__textarea_custom{overflow:visible;white-space:pre-wrap}.Tooltip{z-index:2;padding:.5em .75em;pointer-events:none;text-align:left;transition:opacity 150ms ease-out;background-color:#000;color:#fff;box-shadow:.1em .1em 1.25em -0.1em rgba(0,0,0,.5);border-radius:.16em;max-width:20.8333333333em}.Chat{color:#abc6ec}.Chat__badge{display:inline-block;min-width:.5em;font-size:.7em;padding:.2em .3em;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:crimson;border-radius:10px;transition:font-size 200ms ease-out}.Chat__badge:before{content:"x"}.Chat__badge--animate{font-size:.9em;transition:font-size 0ms}.Chat__scrollButton{position:fixed;right:2em;bottom:1em}.Chat__reconnected{font-size:.85em;text-align:center;margin:1em 0 2em}.Chat__reconnected:before{content:"Reconnected";display:inline-block;border-radius:1em;padding:0 .7em;color:#db2828;background-color:#131313}.Chat__reconnected:after{content:"";display:block;margin-top:-0.75em;border-bottom:.1666666667em solid #db2828}.Chat__highlight{color:#000}.Chat__highlight--restricted{color:#fff;background-color:#a00;font-weight:bold}.ChatMessage{word-wrap:break-word}.ChatMessage--highlighted{position:relative;border-left:.1666666667em solid #fd4;padding-left:.5em}.ChatMessage--highlighted:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(255,221,68,.1);pointer-events:none}.Ping{position:relative;padding:.125em .25em;border:.0833333333em solid rgba(140,140,140,.5);border-radius:.25em;width:3.75em;text-align:right}.Ping__indicator{content:"";position:absolute;top:.5em;left:.5em;width:.5em;height:.5em;background-color:#888;border-radius:.25em}.Notifications{position:absolute;bottom:1em;left:1em;right:2em}.Notification{color:#fff;background-color:crimson;padding:.5em;margin:1em 0}.Notification:first-child{margin-top:0}.Notification:last-child{margin-bottom:0}.Layout,.Layout *{scrollbar-base-color:#181818;scrollbar-face-color:#363636;scrollbar-3dlight-color:#202020;scrollbar-highlight-color:#202020;scrollbar-track-color:#181818;scrollbar-arrow-color:#909090;scrollbar-shadow-color:#363636}.Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.Layout__content--scrollable{overflow-y:scroll;margin-bottom:0}.Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#202020;background-image:linear-gradient(to bottom, #202020 0%, #202020 100%)}.Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.Window__contentPadding:after{height:0}.Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(56,56,56,.25);pointer-events:none}.Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}em{font-style:normal;font-weight:bold}img{margin:0;padding:0;line-height:1;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated}img.icon{height:1em;min-height:16px;width:auto;vertical-align:bottom}a{color:#397ea5}a.visited{color:#7c00e6}a:visited{color:#7c00e6}a.popt{text-decoration:none}.popup{position:fixed;top:50%;left:50%;background:#ddd}.popup .close{position:absolute;background:#aaa;top:0;right:0;color:#333;text-decoration:none;z-index:2;padding:0 10px;height:30px;line-height:30px}.popup .close:hover{background:#999}.popup .head{background:#999;color:#ddd;padding:0 10px;height:30px;line-height:30px;text-transform:uppercase;font-size:.9em;font-weight:bold;border-bottom:2px solid green}.popup input{border:1px solid #999;background:#fff;margin:0;padding:5px;outline:none;color:#333}.popup input[type=text]:hover,.popup input[type=text]:active,.popup input[type=text]:focus{border-color:green}.popup input[type=submit]{padding:5px 10px;background:#999;color:#ddd;text-transform:uppercase;font-size:.9em;font-weight:bold}.popup input[type=submit]:hover,.popup input[type=submit]:focus,.popup input[type=submit]:active{background:#aaa;cursor:pointer}.changeFont{padding:10px}.changeFont a{display:block;text-decoration:none;padding:3px;color:#333}.changeFont a:hover{background:#ccc}.highlightPopup{padding:10px;text-align:center}.highlightPopup input[type=text]{display:block;width:215px;text-align:left;margin-top:5px}.highlightPopup input.highlightColor{background-color:#ff0}.highlightPopup input.highlightTermSubmit{margin-top:5px}.contextMenu{background-color:#ddd;position:fixed;margin:2px;width:150px}.contextMenu a{display:block;padding:2px 5px;text-decoration:none;color:#333}.contextMenu a:hover{background-color:#ccc}.filterMessages{padding:5px}.filterMessages div{padding:2px 0}.icon-stack{height:1em;line-height:1em;width:1em;vertical-align:middle;margin-top:-2px}.motd{color:#a4bad6;font-family:Verdana,sans-serif;white-space:normal}.motd h1,.motd h2,.motd h3,.motd h4,.motd h5,.motd h6{color:#a4bad6;text-decoration:underline}.motd a,.motd a:link,.motd a:visited,.motd a:active,.motd a:hover{color:#a4bad6}.bold,.name,.prefix,.ooc,.looc,.adminooc,.admin,.medal,.yell{font-weight:bold}.italic,.italics{font-style:italic}.highlight{background:#ff0}h1,h2,h3,h4,h5,h6{color:#a4bad6;font-family:Georgia,Verdana,sans-serif}h1.alert,h2.alert{color:#a4bad6}em{font-style:normal;font-weight:bold}.ooc{font-weight:bold}.adminobserverooc{color:#09c;font-weight:bold}.adminooc{color:#3d5bc3;font-weight:bold}.adminsay{color:#9611d4;font-weight:bold}.admin{color:#5975da;font-weight:bold}.name{font-weight:bold}.deadsay{color:#e2c1ff}.binarysay{color:#1e90ff}.binarysay a{color:lime}.binarysay a:active,.binarysay a:visited{color:#8f8}.radio{color:#1ecc43}.sciradio{color:#c68cfa}.comradio{color:#fcdf03}.secradio{color:#dd3535}.medradio{color:#57b8f0}.engradio{color:#f37746}.suppradio{color:#b88646}.servradio{color:#6ca729}.syndradio{color:#8f4a4b}.gangradio{color:#ac2ea1}.centcomradio{color:#2681a5}.aiprivradio{color:#d65d95}.redteamradio{color:#f44}.blueteamradio{color:#3434fd}.greenteamradio{color:#34fd34}.yellowteamradio{color:#fdfd34}.yell{font-weight:bold}.alert{color:#d82020}.userdanger{color:#c51e1e;font-weight:bold;font-size:185%}.bolddanger{color:#c51e1e;font-weight:bold}.danger{color:#c51e1e}.warning{color:#c51e1e;font-style:italic}.alertwarning{color:red;font-weight:bold}.boldwarning{color:#c51e1e;font-style:italic;font-weight:bold}.announce{color:#c51e1e;font-weight:bold}.boldannounce{color:#c51e1e;font-weight:bold}.minorannounce{font-weight:bold;font-size:185%}.greenannounce{color:#059223;font-weight:bold}.rose{color:#ff5050}.info{color:#9ab0ff}.notice{color:#6685f5}.staff_ic{color:#6685f5}.tinynotice{color:#6685f5;font-size:85%}.tinynoticeital{color:#6685f5;font-style:italic;font-size:85%}.smallnotice{color:#6685f5;font-size:90%}.smallnoticeital{color:#6685f5;font-style:italic;font-size:90%}.boldnotice{color:#6685f5;font-weight:bold}.hear{color:#6685f5;font-style:italic}.adminnotice{color:#6685f5}.adminhelp{color:red;font-weight:bold}.unconscious{color:#a4bad6;font-weight:bold}.suicide{color:#ff5050;font-style:italic}.green{color:#059223}.grey{color:#838383}.red{color:red}.blue{color:#215cff}.nicegreen{color:#059223}.boldnicegreen{color:#059223;font-weight:bold}.cult{color:#973e3b}.cultitalic{color:#973e3b;font-style:italic}.cultbold{color:#973e3b;font-style:italic;font-weight:bold}.cultboldtalic{color:#973e3b;font-weight:bold;font-size:185%}.cultlarge{color:#973e3b;font-weight:bold;font-size:185%}.narsie{color:#973e3b;font-weight:bold;font-size:925%}.narsiesmall{color:#973e3b;font-weight:bold;font-size:370%}.colossus{color:#7f282a;font-size:310%}.hierophant{color:#b441ee;font-weight:bold;font-style:italic}.hierophant_warning{color:#c56bf1;font-style:italic}.purple{color:#9956d3}.holoparasite{color:#88809c}.revennotice{color:#c099e2}.revenboldnotice{color:#c099e2;font-weight:bold}.revenbignotice{color:#c099e2;font-weight:bold;font-size:185%}.revenminor{color:#823abb}.revenwarning{color:#760fbb;font-style:italic}.revendanger{color:#760fbb;font-weight:bold;font-size:185%}.deconversion_message{color:#a947ff;font-size:185%;font-style:italic}.ghostalert{color:#60f;font-style:italic;font-weight:bold}.alien{color:#855d85}.noticealien{color:#059223}.alertalien{color:#059223;font-weight:bold}.changeling{color:#059223;font-style:italic}.alertsyndie{color:red;font-size:185%;font-weight:bold}.spider{color:#80f;font-weight:bold;font-size:185%}.interface{color:#750e75}.sans{font-family:"Comic Sans MS",cursive,sans-serif}.papyrus{font-family:"Papyrus",cursive,sans-serif}.robot{font-family:"Courier New",cursive,sans-serif}.tape_recorder{color:red;font-family:"Courier New",cursive,sans-serif}.command_headset{font-weight:bold;font-size:160%}.small{font-size:60%}.big{font-size:185%}.reallybig{font-size:245%}.extremelybig{font-size:310%}.greentext{color:#059223;font-size:185%}.redtext{color:#c51e1e;font-size:185%}.clown{color:#ff70c1;font-size:160%;font-family:"Comic Sans MS",cursive,sans-serif;font-weight:bold}.singing{font-family:"Trebuchet MS",cursive,sans-serif;font-style:italic}.his_grace{color:#15d512;font-family:"Courier New",cursive,sans-serif;font-style:italic}.hypnophrase{color:#202020;font-weight:bold;animation:hypnocolor 1500ms infinite;animation-direction:alternate}@keyframes hypnocolor{0%{color:#202020}25%{color:#4b02ac}50%{color:#9f41f1}75%{color:#541c9c}100%{color:#7adbf3}}.phobia{color:#d00;font-weight:bold;animation:phobia 750ms infinite}@keyframes phobia{0%{color:#f75a5a}50%{color:#d00}100%{color:#f75a5a}}.icon{height:1em;width:auto}.bigicon{font-size:2.5em}.memo{color:#638500;text-align:center}.memoedit{text-align:center;font-size:125%}.abductor{color:#c204c2;font-style:italic}.mind_control{color:#df3da9;font-size:100%;font-weight:bold;font-style:italic}.slime{color:#00ced1}.drone{color:#848482}.monkey{color:#975032}.swarmer{color:#2c75ff}.resonate{color:#298f85}.monkeyhive{color:#a56408}.monkeylead{color:#af6805;font-size:80%}.connectionClosed,.fatalError{background:red;color:#fff;padding:5px}.connectionClosed.restored{background:green}.internal.boldnshit{color:#3d5bc3;font-weight:bold}.text-normal{font-weight:normal;font-style:normal}.hidden{display:none;visibility:hidden}.ml-1{margin-left:1em}.ml-2{margin-left:2em}.ml-3{margin-left:3em}.xooc{color:#ac04e9;font-weight:bold;font-size:140%}.mooc{color:#090;font-weight:bold;font-size:140%}.yooc{color:#999600;font-weight:bold;font-size:140%}.headminsay{color:#653d78;font-weight:bold}.radio{color:#b4b4b4}.deptradio{color:#939}.comradio{color:#779cc2}.centradio{color:#5c5c8a}.hcradio{color:#318779}.pvstradio{color:#9b0612}.cryoradio{color:#ad6d48}.airadio{color:#f0f}.secradio{color:#a52929}.engradio{color:#a66300}.sentryradio{color:#844300}.sentryradio{color:#844300}.medradio{color:#008160}.supradio{color:#ba8e41}.jtacradio{color:#ad3b98}.intelradio{color:#027d02}.wyradio{color:#fe9b24}.pmcradio{color:#4dc5ce}.vairadio{color:#e3580e}.rmcradio{color:#e3580e}.cmbradio{color:#1b748c}.clfradio{color:#8e83ca}.alpharadio{color:#505bc9}.bravoradio{color:#c68610}.charlieradio{color:#a5a}.deltaradio{color:#007fcf}.echoradio{color:#3eb489}.medium{font-size:110%}.big{font-size:115%}.large{font-size:125%}.extra_large{font-size:130%}.huge{font-size:150%}.underline{text-decoration:underline}.orange{color:#eca100}.normal{font-style:normal}.attack{color:#ff3838}.moderate{color:#c00}.disarm{color:#900}.passive{color:#600}.helpful{color:#368f31}.scanner{color:#ff3838}.scannerb{color:#ff3838;font-weight:bold}.scannerburn{color:orange}.scannerburnb{color:orange;font-weight:bold}.rose{color:#ff5050}.debuginfo{color:#493d26;font-style:italic}.xenonotice{color:#51a16c}.xenoboldnotice{color:#51a16c;font-style:italic}.xenowarning{color:#51a16c;font-style:italic}.xenominorwarning{color:#51a16c;font-weight:bold;font-style:italic}.xenodanger{color:#51a16c;font-weight:bold}.avoidharm{color:#72a0e5;font-weight:bold}.highdanger{color:#ff3838;font-weight:bold;font-size:140%}.xenohighdanger{color:#51a16c;font-weight:bold;font-size:140%}.xenoannounce{color:#65c585;font-family:book-antiqua;font-weight:bold;font-size:140%}.yautjabold{color:purple;font-weight:bold}.yautjaboldbig{color:purple;font-weight:bold;font-size:120%}.objectivebig{font-weight:bold;font-size:130%}.objectivegreen{color:lime}.objectivered{color:red}.objectivesuccess{color:lime;font-weight:bold;font-size:110%}.objectivefail{color:red;font-weight:bold;font-size:110%}.xenotalk,.xeno{color:#c048c0;font-style:italic}.xenoleader{color:#996e99;font-style:italic;font-size:125%}.xenoqueen{color:#996e99;font-style:italic;font-weight:bold;font-size:125%}.newscaster{color:maroon}.role_header{color:#e92d2d;display:block;text-align:center;font-weight:bold;font-family:trebuchet-ms;font-size:150%}.role_body{color:#3a3ae9;display:block;text-align:center;font-size:125%}.round_header{color:#e92d2d;display:block;text-align:center;font-family:courier;font-weight:bold;font-size:180%}.round_body{color:#c5c5c5;display:block;text-align:center;font-family:trebuchet-ms;font-weight:bold;font-size:125%}.event_announcement{color:#600d48;font-family:arial-narrow;font-weight:bold;font-size:125%}.announce_header{color:#cecece;font-weight:bold;font-size:150%}.announce_header_blue{color:#7575f3;font-weight:bold;font-size:150%}.announce_header_admin{color:#7575f3;font-weight:bold;font-size:150%}.announce_body{color:#e92d2d;font-weight:normal;font-size:125%}.centerbold{display:block;text-align:center;font-weight:bold}.mod{color:#917455;font-weight:bold}.modooc{color:#184880;font-weight:bold}.adminmod{color:#7c440c;font-weight:bold}.mentorsay{color:#d4af57;font-weight:bold}.mentorhelp{color:#090;font-weight:bold}.mentorbody{color:#da6200;font-weight:bold}.mentorstaff{color:#b5850d;font-weight:bold}.staffsay{color:#b5850d;font-weight:bold}.tajaran{color:#803b56}.tajaran_signlang{color:#941c1c}.skrell{color:#00ced1}.soghun{color:#228b22}.changeling{color:purple}.vox{color:#a0a}.monkey{color:#966c47}.german{color:#858f1e;font-family:"Times New Roman",Times,serif}.spanish{color:#cf982b}.japanese{color:#940927}.chinese{color:#fe1919}.zombie{color:#2dacb1;font-style:italic}.rough{font-family:trebuchet-ms,cursive,sans-serif}.commando{color:#fe9b24;font-style:bold}.say_quote{font-family:Georgia,Verdana,sans-serif}.admin .message{color:#314cad}.admin .prefix{font-weight:bolder}.pm{font-size:110%}.deadsay{color:#8b4dff}.retro_translator{font-weight:bold}.yautja_translator{color:#a00;font-weight:bold;animation:glitch .5s infinite}@keyframes glitch{25%{color:#a00;transform:translate(-2px, -1px)}50%{color:#be0000;transform:translate(1px, -2px)}75%{color:#8d0000;transform:translate(-1px, 2px)}100%{color:#830000;transform:translate(1px, 1px)}}.examine_block{background:#1b1c1e;border:1px solid #a4bad6;margin:.5em;padding:.5em .75em}.examine_block .icon{width:1.5em;height:1.5em;margin:0;padding:0}.tooltip{font-style:italic;border-bottom:1px dashed #fff} +.theme-light .color-black{color:#000 !important}.theme-light .color-white{color:#e6e6e6 !important}.theme-light .color-red{color:#c82121 !important}.theme-light .color-orange{color:#e6630d !important}.theme-light .color-yellow{color:#e5c304 !important}.theme-light .color-olive{color:#a3b816 !important}.theme-light .color-green{color:#1d9f3b !important}.theme-light .color-teal{color:#00a39c !important}.theme-light .color-blue{color:#1e78bb !important}.theme-light .color-dark-blue{color:#004274 !important}.theme-light .color-violet{color:#5a30b5 !important}.theme-light .color-purple{color:#932eb4 !important}.theme-light .color-pink{color:#db228a !important}.theme-light .color-brown{color:#955d39 !important}.theme-light .color-grey{color:#e6e6e6 !important}.theme-light .color-light-grey{color:#999 !important}.theme-light .color-good{color:#529923 !important}.theme-light .color-average{color:#da810e !important}.theme-light .color-bad{color:#c82121 !important}.theme-light .color-label{color:#353535 !important}.theme-light .color-xeno{color:#4a3253 !important}.theme-light .color-bg-black{background-color:#000 !important}.theme-light .color-bg-white{background-color:#bfbfbf !important}.theme-light .color-bg-red{background-color:#a61c1c !important}.theme-light .color-bg-orange{background-color:#c0530b !important}.theme-light .color-bg-yellow{background-color:#bfa303 !important}.theme-light .color-bg-olive{background-color:#889912 !important}.theme-light .color-bg-green{background-color:#188532 !important}.theme-light .color-bg-teal{background-color:#008882 !important}.theme-light .color-bg-blue{background-color:#19649c !important}.theme-light .color-bg-dark-blue{background-color:#003761 !important}.theme-light .color-bg-violet{background-color:#4b2897 !important}.theme-light .color-bg-purple{background-color:#7a2696 !important}.theme-light .color-bg-pink{background-color:#b61d73 !important}.theme-light .color-bg-brown{background-color:#7c4d2f !important}.theme-light .color-bg-grey{background-color:#bfbfbf !important}.theme-light .color-bg-light-grey{background-color:gray !important}.theme-light .color-bg-good{background-color:#44801d !important}.theme-light .color-bg-average{background-color:#b56b0b !important}.theme-light .color-bg-bad{background-color:#a61c1c !important}.theme-light .color-bg-label{background-color:#2c2c2c !important}.theme-light .color-bg-xeno{background-color:#3e2945 !important}.theme-light .Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:#fff}.theme-light .Tabs--fill{height:100%}.theme-light .Section .Tabs{background-color:transparent}.theme-light .Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.theme-light .Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.theme-light .Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.theme-light .Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.theme-light .Tabs--horizontal:last-child{margin-bottom:0}.theme-light .Tabs__Tab{flex-grow:0}.theme-light .Tabs--fluid .Tabs__Tab{flex-grow:1}.theme-light .Tab{display:flex;align-items:center;justify-content:space-between;background-color:transparent;color:rgba(0,0,0,.5);min-height:2.25em;min-width:4em}.theme-light .Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075)}.theme-light .Tab--selected{background-color:rgba(255,255,255,.125);color:#404040}.theme-light .Tab__text{flex-grow:1;margin:0 .5em}.theme-light .Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.theme-light .Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.theme-light .Tabs--horizontal .Tab{border-top:.1666666667em solid transparent;border-bottom:.1666666667em solid transparent;border-top-left-radius:.25em;border-top-right-radius:.25em}.theme-light .Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #000}.theme-light .Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid transparent;border-right:.1666666667em solid transparent;border-top-left-radius:.25em;border-bottom-left-radius:.25em}.theme-light .Tabs--vertical .Tab--selected{border-right:.1666666667em solid #000}.theme-light .Tab--selected.Tab--color--black{color:#404040}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--black{border-bottom-color:#000}.theme-light .Tabs--vertical .Tab--selected.Tab--color--black{border-right-color:#000}.theme-light .Tab--selected.Tab--color--white{color:#ececec}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--white{border-bottom-color:#e6e6e6}.theme-light .Tabs--vertical .Tab--selected.Tab--color--white{border-right-color:#e6e6e6}.theme-light .Tab--selected.Tab--color--red{color:#e14d4d}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--red{border-bottom-color:#c82121}.theme-light .Tabs--vertical .Tab--selected.Tab--color--red{border-right-color:#c82121}.theme-light .Tab--selected.Tab--color--orange{color:#f48942}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--orange{border-bottom-color:#e6630d}.theme-light .Tabs--vertical .Tab--selected.Tab--color--orange{border-right-color:#e6630d}.theme-light .Tab--selected.Tab--color--yellow{color:#fcdd33}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--yellow{border-bottom-color:#e5c304}.theme-light .Tabs--vertical .Tab--selected.Tab--color--yellow{border-right-color:#e5c304}.theme-light .Tab--selected.Tab--color--olive{color:#d0e732}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--olive{border-bottom-color:#a3b816}.theme-light .Tabs--vertical .Tab--selected.Tab--color--olive{border-right-color:#a3b816}.theme-light .Tab--selected.Tab--color--green{color:#33da5a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--green{border-bottom-color:#1d9f3b}.theme-light .Tabs--vertical .Tab--selected.Tab--color--green{border-right-color:#1d9f3b}.theme-light .Tab--selected.Tab--color--teal{color:#00faef}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--teal{border-bottom-color:#00a39c}.theme-light .Tabs--vertical .Tab--selected.Tab--color--teal{border-right-color:#00a39c}.theme-light .Tab--selected.Tab--color--blue{color:#419ce1}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--blue{border-bottom-color:#1e78bb}.theme-light .Tabs--vertical .Tab--selected.Tab--color--blue{border-right-color:#1e78bb}.theme-light .Tab--selected.Tab--color--dark-blue{color:#0079d7}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--dark-blue{border-bottom-color:#004274}.theme-light .Tabs--vertical .Tab--selected.Tab--color--dark-blue{border-right-color:#004274}.theme-light .Tab--selected.Tab--color--violet{color:#7f58d3}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--violet{border-bottom-color:#5a30b5}.theme-light .Tabs--vertical .Tab--selected.Tab--color--violet{border-right-color:#5a30b5}.theme-light .Tab--selected.Tab--color--purple{color:#b455d4}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--purple{border-bottom-color:#932eb4}.theme-light .Tabs--vertical .Tab--selected.Tab--color--purple{border-right-color:#932eb4}.theme-light .Tab--selected.Tab--color--pink{color:#e558a7}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--pink{border-bottom-color:#db228a}.theme-light .Tabs--vertical .Tab--selected.Tab--color--pink{border-right-color:#db228a}.theme-light .Tab--selected.Tab--color--brown{color:#c0825a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--brown{border-bottom-color:#955d39}.theme-light .Tabs--vertical .Tab--selected.Tab--color--brown{border-right-color:#955d39}.theme-light .Tab--selected.Tab--color--grey{color:#ececec}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--grey{border-bottom-color:#e6e6e6}.theme-light .Tabs--vertical .Tab--selected.Tab--color--grey{border-right-color:#e6e6e6}.theme-light .Tab--selected.Tab--color--light-grey{color:#b3b3b3}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--light-grey{border-bottom-color:#999}.theme-light .Tabs--vertical .Tab--selected.Tab--color--light-grey{border-right-color:#999}.theme-light .Tab--selected.Tab--color--good{color:#77d23b}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--good{border-bottom-color:#529923}.theme-light .Tabs--vertical .Tab--selected.Tab--color--good{border-right-color:#529923}.theme-light .Tab--selected.Tab--color--average{color:#f3a23a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--average{border-bottom-color:#da810e}.theme-light .Tabs--vertical .Tab--selected.Tab--color--average{border-right-color:#da810e}.theme-light .Tab--selected.Tab--color--bad{color:#e14d4d}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--bad{border-bottom-color:#c82121}.theme-light .Tabs--vertical .Tab--selected.Tab--color--bad{border-right-color:#c82121}.theme-light .Tab--selected.Tab--color--label{color:#686868}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--label{border-bottom-color:#353535}.theme-light .Tabs--vertical .Tab--selected.Tab--color--label{border-right-color:#353535}.theme-light .Tab--selected.Tab--color--xeno{color:#7e558e}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--xeno{border-bottom-color:#4a3253}.theme-light .Tabs--vertical .Tab--selected.Tab--color--xeno{border-right-color:#4a3253}.theme-light .Section{position:relative;margin-bottom:.5em;background-color:#fff;background-color:#fff;box-sizing:border-box}.theme-light .Section:last-child{margin-bottom:0}.theme-light .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #fff}.theme-light .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#000}.theme-light .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-light .Section__rest{position:relative}.theme-light .Section__content{padding:.66em .5em}.theme-light .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-light .Section--fill{display:flex;flex-direction:column;height:100%}.theme-light .Section--fill>.Section__rest{flex-grow:1}.theme-light .Section--fill>.Section__rest>.Section__content{height:100%}.theme-light .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-light .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-light .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-light .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollable>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:hidden}.theme-light .Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:hidden;overflow-x:scroll}.theme-light .Section--scrollable.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollable.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:scroll}.theme-light .Section .Section{background-color:transparent;margin-left:-0.5em;margin-right:-0.5em}.theme-light .Section .Section:first-child{margin-top:-0.5em}.theme-light .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-light .Section .Section .Section .Section__titleText{font-size:1em}.theme-light .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-light .Button:last-child{margin-right:0;margin-bottom:0}.theme-light .Button .fa,.theme-light .Button .fas,.theme-light .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-light .Button--hasContent .fa,.theme-light .Button--hasContent .fas,.theme-light .Button--hasContent .far{margin-right:.25em}.theme-light .Button--hasContent.Button--iconPosition--right .fa,.theme-light .Button--hasContent.Button--iconPosition--right .fas,.theme-light .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-light .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-light .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-light .Button--circular{border-radius:50%}.theme-light .Button--compact{padding:0 .25em;line-height:1.333em}.theme-light .Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-light .Button--color--black:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--black:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--black:hover,.theme-light .Button--color--black:focus{background-color:#131313;color:#fff}.theme-light .Button--color--white{transition:color 50ms,background-color 50ms;background-color:#bfbfbf;color:#000}.theme-light .Button--color--white:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--white:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--white:hover,.theme-light .Button--color--white:focus{background-color:#efefef;color:#000}.theme-light .Button--color--red{transition:color 50ms,background-color 50ms;background-color:#a61c1c;color:#fff}.theme-light .Button--color--red:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--red:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--red:hover,.theme-light .Button--color--red:focus{background-color:#d23333;color:#fff}.theme-light .Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#c0530b;color:#fff}.theme-light .Button--color--orange:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--orange:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--orange:hover,.theme-light .Button--color--orange:focus{background-color:#ea7426;color:#fff}.theme-light .Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#bfa303;color:#fff}.theme-light .Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--yellow:hover,.theme-light .Button--color--yellow:focus{background-color:#efce17;color:#fff}.theme-light .Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#889912;color:#fff}.theme-light .Button--color--olive:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--olive:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--olive:hover,.theme-light .Button--color--olive:focus{background-color:#afc328;color:#fff}.theme-light .Button--color--green{transition:color 50ms,background-color 50ms;background-color:#188532;color:#fff}.theme-light .Button--color--green:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--green:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--green:hover,.theme-light .Button--color--green:focus{background-color:#2fac4c;color:#fff}.theme-light .Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#008882;color:#fff}.theme-light .Button--color--teal:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--teal:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--teal:hover,.theme-light .Button--color--teal:focus{background-color:#13afa9;color:#fff}.theme-light .Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#19649c;color:#fff}.theme-light .Button--color--blue:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--blue:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--blue:hover,.theme-light .Button--color--blue:focus{background-color:#3086c7;color:#fff}.theme-light .Button--color--dark-blue{transition:color 50ms,background-color 50ms;background-color:#003761;color:#fff}.theme-light .Button--color--dark-blue:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--dark-blue:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--dark-blue:hover,.theme-light .Button--color--dark-blue:focus{background-color:#135283;color:#fff}.theme-light .Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#4b2897;color:#fff}.theme-light .Button--color--violet:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--violet:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--violet:hover,.theme-light .Button--color--violet:focus{background-color:#6a41c1;color:#fff}.theme-light .Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#7a2696;color:#fff}.theme-light .Button--color--purple:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--purple:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--purple:hover,.theme-light .Button--color--purple:focus{background-color:#a03fc0;color:#fff}.theme-light .Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#b61d73;color:#fff}.theme-light .Button--color--pink:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--pink:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--pink:hover,.theme-light .Button--color--pink:focus{background-color:#da3f96;color:#fff}.theme-light .Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#7c4d2f;color:#fff}.theme-light .Button--color--brown:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--brown:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--brown:hover,.theme-light .Button--color--brown:focus{background-color:#a26c49;color:#fff}.theme-light .Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#bfbfbf;color:#000}.theme-light .Button--color--grey:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--grey:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--grey:hover,.theme-light .Button--color--grey:focus{background-color:#efefef;color:#000}.theme-light .Button--color--light-grey{transition:color 50ms,background-color 50ms;background-color:gray;color:#fff}.theme-light .Button--color--light-grey:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--light-grey:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--light-grey:hover,.theme-light .Button--color--light-grey:focus{background-color:#a6a6a6;color:#fff}.theme-light .Button--color--good{transition:color 50ms,background-color 50ms;background-color:#44801d;color:#fff}.theme-light .Button--color--good:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--good:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--good:hover,.theme-light .Button--color--good:focus{background-color:#62a635;color:#fff}.theme-light .Button--color--average{transition:color 50ms,background-color 50ms;background-color:#b56b0b;color:#fff}.theme-light .Button--color--average:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--average:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--average:hover,.theme-light .Button--color--average:focus{background-color:#e48f20;color:#fff}.theme-light .Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#a61c1c;color:#fff}.theme-light .Button--color--bad:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--bad:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--bad:hover,.theme-light .Button--color--bad:focus{background-color:#d23333;color:#fff}.theme-light .Button--color--label{transition:color 50ms,background-color 50ms;background-color:#2c2c2c;color:#fff}.theme-light .Button--color--label:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--label:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--label:hover,.theme-light .Button--color--label:focus{background-color:#464646;color:#fff}.theme-light .Button--color--xeno{transition:color 50ms,background-color 50ms;background-color:#3e2945;color:#fff}.theme-light .Button--color--xeno:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--xeno:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--xeno:hover,.theme-light .Button--color--xeno:focus{background-color:#5a4363;color:#fff}.theme-light .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#bbb;color:#000}.theme-light .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--default:hover,.theme-light .Button--color--default:focus{background-color:#eaeaea;color:#000}.theme-light .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-light .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--caution:hover,.theme-light .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-light .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-light .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--danger:hover,.theme-light .Button--color--danger:focus{background-color:#c4c813;color:#fff}.theme-light .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#eee;color:#000;background-color:rgba(238,238,238,0);color:rgba(0,0,0,.5)}.theme-light .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--transparent:hover,.theme-light .Button--color--transparent:focus{background-color:#fcfcfc;color:#000}.theme-light .Button--disabled{background-color:#363636 !important}.theme-light .Button--selected{transition:color 50ms,background-color 50ms;background-color:#0668b8;color:#fff}.theme-light .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--selected:hover,.theme-light .Button--selected:focus{background-color:#1a8be7;color:#fff}.theme-light .Button--flex{display:inline-flex;flex-direction:column}.theme-light .Button--flex--fluid{width:100%}.theme-light .Button--verticalAlignContent--top{justify-content:flex-start}.theme-light .Button--verticalAlignContent--middle{justify-content:center}.theme-light .Button--verticalAlignContent--bottom{justify-content:flex-end}.theme-light .Button__content{display:block;align-self:stretch}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#353535;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-light .NumberInput--fluid{display:block}.theme-light .NumberInput__content{margin-left:.5em}.theme-light .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-light .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #353535;background-color:#353535}.theme-light .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#fff;color:#000;text-align:right}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .TextArea{position:relative;display:inline-block;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;background-color:#fff;margin-right:.1666666667em;line-height:1.4166666667em;box-sizing:border-box;width:100%}.theme-light .TextArea--fluid{display:block;width:auto;height:auto}.theme-light .TextArea--noborder{border:0px}.theme-light .TextArea__textarea.TextArea__textarea--scrollable{overflow:auto;overflow-x:hidden;overflow-y:scroll}.theme-light .TextArea__textarea{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;height:100%;font-size:1em;line-height:1.4166666667em;min-height:1.4166666667em;margin:0;padding:0 .5em;font-family:inherit;background-color:transparent;color:inherit;box-sizing:border-box;word-wrap:break-word;overflow:hidden}.theme-light .TextArea__textarea:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .TextArea__textarea_custom{overflow:visible;white-space:pre-wrap}.theme-light .Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto;margin-bottom:-0.2em;cursor:n-resize}.theme-light .Knob:after{content:".";color:transparent;line-height:2.5em}.theme-light .Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.theme-light .Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.theme-light .Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:rgba(255,255,255,.9)}.theme-light .Knob__popupValue{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.theme-light .Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.theme-light .Knob__ringTrackPivot{transform:rotateZ(135deg)}.theme-light .Knob__ringTrack{fill:transparent;stroke:rgba(255,255,255,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.theme-light .Knob__ringFillPivot{transform:rotateZ(135deg)}.theme-light .Knob--bipolar .Knob__ringFillPivot{transform:rotateZ(270deg)}.theme-light .Knob__ringFill{fill:transparent;stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.theme-light .Knob--color--black .Knob__ringFill{stroke:#000}.theme-light .Knob--color--white .Knob__ringFill{stroke:#e6e6e6}.theme-light .Knob--color--red .Knob__ringFill{stroke:#c82121}.theme-light .Knob--color--orange .Knob__ringFill{stroke:#e6630d}.theme-light .Knob--color--yellow .Knob__ringFill{stroke:#e5c304}.theme-light .Knob--color--olive .Knob__ringFill{stroke:#a3b816}.theme-light .Knob--color--green .Knob__ringFill{stroke:#1d9f3b}.theme-light .Knob--color--teal .Knob__ringFill{stroke:#00a39c}.theme-light .Knob--color--blue .Knob__ringFill{stroke:#1e78bb}.theme-light .Knob--color--dark-blue .Knob__ringFill{stroke:#004274}.theme-light .Knob--color--violet .Knob__ringFill{stroke:#5a30b5}.theme-light .Knob--color--purple .Knob__ringFill{stroke:#932eb4}.theme-light .Knob--color--pink .Knob__ringFill{stroke:#db228a}.theme-light .Knob--color--brown .Knob__ringFill{stroke:#955d39}.theme-light .Knob--color--grey .Knob__ringFill{stroke:#e6e6e6}.theme-light .Knob--color--light-grey .Knob__ringFill{stroke:#999}.theme-light .Knob--color--good .Knob__ringFill{stroke:#529923}.theme-light .Knob--color--average .Knob__ringFill{stroke:#da810e}.theme-light .Knob--color--bad .Knob__ringFill{stroke:#c82121}.theme-light .Knob--color--label .Knob__ringFill{stroke:#353535}.theme-light .Knob--color--xeno .Knob__ringFill{stroke:#4a3253}.theme-light .Slider{cursor:e-resize}.theme-light .Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none !important}.theme-light .Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #000}.theme-light .Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid transparent;border-right:.4166666667em solid transparent;border-bottom:.4166666667em solid #000}.theme-light .Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.theme-light .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-width:.0833333333em !important;border-style:solid !important;border-radius:.16em;background-color:rgba(0,0,0,0);transition:border-color 900ms ease-out}.theme-light .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-light .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-light .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-light .ProgressBar--color--default{border:.0833333333em solid #bfbfbf}.theme-light .ProgressBar--color--default .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--black{border-color:#000 !important}.theme-light .ProgressBar--color--black .ProgressBar__fill{background-color:#000}.theme-light .ProgressBar--color--white{border-color:#bfbfbf !important}.theme-light .ProgressBar--color--white .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--red{border-color:#a61c1c !important}.theme-light .ProgressBar--color--red .ProgressBar__fill{background-color:#a61c1c}.theme-light .ProgressBar--color--orange{border-color:#c0530b !important}.theme-light .ProgressBar--color--orange .ProgressBar__fill{background-color:#c0530b}.theme-light .ProgressBar--color--yellow{border-color:#bfa303 !important}.theme-light .ProgressBar--color--yellow .ProgressBar__fill{background-color:#bfa303}.theme-light .ProgressBar--color--olive{border-color:#889912 !important}.theme-light .ProgressBar--color--olive .ProgressBar__fill{background-color:#889912}.theme-light .ProgressBar--color--green{border-color:#188532 !important}.theme-light .ProgressBar--color--green .ProgressBar__fill{background-color:#188532}.theme-light .ProgressBar--color--teal{border-color:#008882 !important}.theme-light .ProgressBar--color--teal .ProgressBar__fill{background-color:#008882}.theme-light .ProgressBar--color--blue{border-color:#19649c !important}.theme-light .ProgressBar--color--blue .ProgressBar__fill{background-color:#19649c}.theme-light .ProgressBar--color--dark-blue{border-color:#003761 !important}.theme-light .ProgressBar--color--dark-blue .ProgressBar__fill{background-color:#003761}.theme-light .ProgressBar--color--violet{border-color:#4b2897 !important}.theme-light .ProgressBar--color--violet .ProgressBar__fill{background-color:#4b2897}.theme-light .ProgressBar--color--purple{border-color:#7a2696 !important}.theme-light .ProgressBar--color--purple .ProgressBar__fill{background-color:#7a2696}.theme-light .ProgressBar--color--pink{border-color:#b61d73 !important}.theme-light .ProgressBar--color--pink .ProgressBar__fill{background-color:#b61d73}.theme-light .ProgressBar--color--brown{border-color:#7c4d2f !important}.theme-light .ProgressBar--color--brown .ProgressBar__fill{background-color:#7c4d2f}.theme-light .ProgressBar--color--grey{border-color:#bfbfbf !important}.theme-light .ProgressBar--color--grey .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--light-grey{border-color:gray !important}.theme-light .ProgressBar--color--light-grey .ProgressBar__fill{background-color:gray}.theme-light .ProgressBar--color--good{border-color:#44801d !important}.theme-light .ProgressBar--color--good .ProgressBar__fill{background-color:#44801d}.theme-light .ProgressBar--color--average{border-color:#b56b0b !important}.theme-light .ProgressBar--color--average .ProgressBar__fill{background-color:#b56b0b}.theme-light .ProgressBar--color--bad{border-color:#a61c1c !important}.theme-light .ProgressBar--color--bad .ProgressBar__fill{background-color:#a61c1c}.theme-light .ProgressBar--color--label{border-color:#2c2c2c !important}.theme-light .ProgressBar--color--label .ProgressBar__fill{background-color:#2c2c2c}.theme-light .ProgressBar--color--xeno{border-color:#3e2945 !important}.theme-light .ProgressBar--color--xeno .ProgressBar__fill{background-color:#3e2945}.theme-light .Chat{color:#000}.theme-light .Chat__badge{display:inline-block;min-width:.5em;font-size:.7em;padding:.2em .3em;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:crimson;border-radius:10px;transition:font-size 200ms ease-out}.theme-light .Chat__badge:before{content:"x"}.theme-light .Chat__badge--animate{font-size:.9em;transition:font-size 0ms}.theme-light .Chat__scrollButton{position:fixed;right:2em;bottom:1em}.theme-light .Chat__reconnected{font-size:.85em;text-align:center;margin:1em 0 2em}.theme-light .Chat__reconnected:before{content:"Reconnected";display:inline-block;border-radius:1em;padding:0 .7em;color:#db2828;background-color:#fff}.theme-light .Chat__reconnected:after{content:"";display:block;margin-top:-0.75em;border-bottom:.1666666667em solid #db2828}.theme-light .Chat__highlight{color:#000}.theme-light .Chat__highlight--restricted{color:#fff;background-color:#a00;font-weight:bold}.theme-light .ChatMessage{word-wrap:break-word}.theme-light .ChatMessage--highlighted{position:relative;border-left:.1666666667em solid #fd4;padding-left:.5em}.theme-light .ChatMessage--highlighted:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(255,221,68,.1);pointer-events:none}.theme-light .Layout,.theme-light .Layout *{scrollbar-base-color:#f2f2f2;scrollbar-face-color:#d6d6d6;scrollbar-3dlight-color:#eee;scrollbar-highlight-color:#eee;scrollbar-track-color:#f2f2f2;scrollbar-arrow-color:#777;scrollbar-shadow-color:#d6d6d6}.theme-light .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-light .Layout__content--scrollable{overflow-y:scroll;margin-bottom:0}.theme-light .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#000;background-color:#eee;background-image:linear-gradient(to bottom, #eeeeee 0%, #eeeeee 100%)}.theme-light .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-light .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-light .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-light .Window__contentPadding:after{height:0}.theme-light .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-light .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(252,252,252,.25);pointer-events:none}.theme-light .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-light .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-light .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-light .TitleBar{background-color:#eee;border-bottom:1px solid rgba(0,0,0,.25);box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-light .TitleBar__clickable{color:rgba(0,0,0,.5);background-color:#eee;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-light .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-light .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(0,0,0,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-light .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-light .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-light .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-light .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-light .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-light html,.theme-light body{padding:0;margin:0;height:100%;color:#000}.theme-light body{background:#fff;font-family:Verdana,sans-serif;font-size:13px;line-height:1.2;overflow-x:hidden;overflow-y:scroll;word-wrap:break-word}.theme-light em{font-style:normal;font-weight:bold}.theme-light img{margin:0;padding:0;line-height:1;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated}.theme-light img.icon{height:1em;min-height:16px;width:auto;vertical-align:bottom}.theme-light a{color:blue}.theme-light a.visited{color:#f0f}.theme-light a:visited{color:#f0f}.theme-light a.popt{text-decoration:none}.theme-light .popup{position:fixed;top:50%;left:50%;background:#ddd}.theme-light .popup .close{position:absolute;background:#aaa;top:0;right:0;color:#333;text-decoration:none;z-index:2;padding:0 10px;height:30px;line-height:30px}.theme-light .popup .close:hover{background:#999}.theme-light .popup .head{background:#999;color:#ddd;padding:0 10px;height:30px;line-height:30px;text-transform:uppercase;font-size:.9em;font-weight:bold;border-bottom:2px solid green}.theme-light .popup input{border:1px solid #999;background:#fff;margin:0;padding:5px;outline:none;color:#333}.theme-light .popup input[type=text]:hover,.theme-light .popup input[type=text]:active,.theme-light .popup input[type=text]:focus{border-color:green}.theme-light .popup input[type=submit]{padding:5px 10px;background:#999;color:#ddd;text-transform:uppercase;font-size:.9em;font-weight:bold}.theme-light .popup input[type=submit]:hover,.theme-light .popup input[type=submit]:focus,.theme-light .popup input[type=submit]:active{background:#aaa;cursor:pointer}.theme-light .changeFont{padding:10px}.theme-light .changeFont a{display:block;text-decoration:none;padding:3px;color:#333}.theme-light .changeFont a:hover{background:#ccc}.theme-light .highlightPopup{padding:10px;text-align:center}.theme-light .highlightPopup input[type=text]{display:block;width:215px;text-align:left;margin-top:5px}.theme-light .highlightPopup input.highlightColor{background-color:#ff0}.theme-light .highlightPopup input.highlightTermSubmit{margin-top:5px}.theme-light .contextMenu{background-color:#ddd;position:fixed;margin:2px;width:150px}.theme-light .contextMenu a{display:block;padding:2px 5px;text-decoration:none;color:#333}.theme-light .contextMenu a:hover{background-color:#ccc}.theme-light .filterMessages{padding:5px}.theme-light .filterMessages div{padding:2px 0}.theme-light .icon-stack{height:1em;line-height:1em;width:1em;vertical-align:middle;margin-top:-2px}.theme-light .motd{color:#638500;font-family:Verdana,sans-serif;white-space:normal}.theme-light .motd h1,.theme-light .motd h2,.theme-light .motd h3,.theme-light .motd h4,.theme-light .motd h5,.theme-light .motd h6{color:#638500;text-decoration:underline}.theme-light .motd a,.theme-light .motd a:link,.theme-light .motd a:visited,.theme-light .motd a:active,.theme-light .motd a:hover{color:#638500}.theme-light .bold,.theme-light .name,.theme-light .prefix,.theme-light .ooc,.theme-light .looc,.theme-light .adminooc,.theme-light .admin,.theme-light .medal,.theme-light .yell{font-weight:bold}.theme-light .italic,.theme-light .italics{font-style:italic}.theme-light .highlight{background:#ff0}.theme-light h1,.theme-light h2,.theme-light h3,.theme-light h4,.theme-light h5,.theme-light h6{color:blue;font-family:Georgia,Verdana,sans-serif}.theme-light h1.alert,.theme-light h2.alert{color:#000}.theme-light em{font-style:normal;font-weight:bold}.theme-light .ooc{font-weight:bold}.theme-light .adminobserverooc{color:#09c;font-weight:bold}.theme-light .adminooc{color:#700038;font-weight:bold}.theme-light .adminsay{color:#ff4500;font-weight:bold}.theme-light .admin{color:#4473ff;font-weight:bold}.theme-light .name{font-weight:bold}.theme-light .deadsay{color:#5c00e6}.theme-light .binarysay{color:#20c20e;background-color:#000;display:block}.theme-light .binarysay a{color:lime}.theme-light .binarysay a:active,.theme-light .binarysay a:visited{color:#8f8}.theme-light .radio{color:green}.theme-light .sciradio{color:#939}.theme-light .comradio{color:#948f02}.theme-light .secradio{color:#a30000}.theme-light .medradio{color:#337296}.theme-light .engradio{color:#fb5613}.theme-light .sentryradio{color:#844300}.theme-light .suppradio{color:#a8732b}.theme-light .servradio{color:#6eaa2c}.theme-light .syndradio{color:#6d3f40}.theme-light .gangradio{color:#ac2ea1}.theme-light .centcomradio{color:#686868}.theme-light .aiprivradio{color:#f0f}.theme-light .redteamradio{color:red}.theme-light .blueteamradio{color:blue}.theme-light .greenteamradio{color:lime}.theme-light .yellowteamradio{color:#d1ba22}.theme-light .yell{font-weight:bold}.theme-light .alert{color:red}.theme-light h1.alert,.theme-light h2.alert{color:#000}.theme-light .userdanger{color:red;font-weight:bold;font-size:185%}.theme-light .bolddanger{color:red;font-weight:bold}.theme-light .danger{color:red}.theme-light .tinydanger{color:red;font-size:85%}.theme-light .smalldanger{color:red;font-size:90%}.theme-light .warning{color:red;font-style:italic}.theme-light .alertwarning{color:red;font-weight:bold}.theme-light .boldwarning{color:red;font-style:italic;font-weight:bold}.theme-light .announce{color:#228b22;font-weight:bold}.theme-light .boldannounce{color:red;font-weight:bold}.theme-light .minorannounce{font-weight:bold;font-size:185%}.theme-light .greenannounce{color:lime;font-weight:bold}.theme-light .rose{color:#ff5050}.theme-light .info{color:#00c}.theme-light .notice{color:#009}.theme-light .staff_ic{color:#009}.theme-light .tinynotice{color:#009;font-size:85%}.theme-light .tinynoticeital{color:#009;font-style:italic;font-size:85%}.theme-light .smallnotice{color:#009;font-size:90%}.theme-light .smallnoticeital{color:#009;font-style:italic;font-size:90%}.theme-light .boldnotice{color:#009;font-weight:bold}.theme-light .hear{color:#009;font-style:italic}.theme-light .adminnotice{color:blue}.theme-light .adminhelp{color:red;font-weight:bold}.theme-light .unconscious{color:blue;font-weight:bold}.theme-light .suicide{color:#ff5050;font-style:italic}.theme-light .green{color:#03ff39}.theme-light .grey{color:#838383}.theme-light .red{color:red}.theme-light .blue{color:blue}.theme-light .nicegreen{color:#14a833}.theme-light .boldnicegreen{color:#14a833;font-weight:bold}.theme-light .cult{color:#973e3b}.theme-light .cultitalic{color:#973e3b;font-style:italic}.theme-light .cultbold{color:#973e3b;font-style:italic;font-weight:bold}.theme-light .cultboldtalic{color:#973e3b;font-weight:bold;font-size:185%}.theme-light .cultlarge{color:#973e3b;font-weight:bold;font-size:185%}.theme-light .narsie{color:#973e3b;font-weight:bold;font-size:925%}.theme-light .narsiesmall{color:#973e3b;font-weight:bold;font-size:370%}.theme-light .colossus{color:#7f282a;font-size:310%}.theme-light .hierophant{color:#609;font-weight:bold;font-style:italic}.theme-light .hierophant_warning{color:#609;font-style:italic}.theme-light .purple{color:#5e2d79}.theme-light .holoparasite{color:#35333a}.theme-light .revennotice{color:#1d2953}.theme-light .revenboldnotice{color:#1d2953;font-weight:bold}.theme-light .revenbignotice{color:#1d2953;font-weight:bold;font-size:185%}.theme-light .revenminor{color:#823abb}.theme-light .revenwarning{color:#760fbb;font-style:italic}.theme-light .revendanger{color:#760fbb;font-weight:bold;font-size:185%}.theme-light .deconversion_message{color:#5000a0;font-size:185%;font-style:italic}.theme-light .ghostalert{color:#5c00e6;font-style:italic;font-weight:bold}.theme-light .alien{color:#543354}.theme-light .noticealien{color:#00c000}.theme-light .alertalien{color:#00c000;font-weight:bold}.theme-light .changeling{color:purple;font-style:italic}.theme-light .alertsyndie{color:red;font-size:185%;font-weight:bold}.theme-light .spider{color:#4d004d;font-weight:bold;font-size:185%}.theme-light .interface{color:#303}.theme-light .sans{font-family:"Comic Sans MS",cursive,sans-serif}.theme-light .papyrus{font-family:"Papyrus",cursive,sans-serif}.theme-light .robot{font-family:"Courier New",cursive,sans-serif}.theme-light .tape_recorder{color:maroon;font-family:"Courier New",cursive,sans-serif}.theme-light .command_headset{font-weight:bold;font-size:160%}.theme-light .small{font-size:60%}.theme-light .big{font-size:185%}.theme-light .reallybig{font-size:245%}.theme-light .extremelybig{font-size:310%}.theme-light .greentext{color:lime;font-size:185%}.theme-light .redtext{color:red;font-size:185%}.theme-light .clown{color:#ff69bf;font-size:160%;font-family:"Comic Sans MS",cursive,sans-serif;font-weight:bold}.theme-light .singing{font-family:"Trebuchet MS",cursive,sans-serif;font-style:italic}.theme-light .his_grace{color:#15d512;font-family:"Courier New",cursive,sans-serif;font-style:italic}.theme-light .hypnophrase{color:#0d0d0d;font-weight:bold;animation:hypnocolor 1500ms infinite;animation-direction:alternate}@keyframes hypnocolor{0%{color:#0d0d0d}25%{color:#410194}50%{color:#7f17d8}75%{color:#410194}100%{color:#3bb5d3}}.theme-light .phobia{color:#d00;font-weight:bold;animation:phobia 750ms infinite}@keyframes phobia{0%{color:#0d0d0d}50%{color:#d00}100%{color:#0d0d0d}}.theme-light .icon{height:1em;width:auto}.theme-light .bigicon{font-size:2.5em}.theme-light .memo{color:#638500;text-align:center}.theme-light .memoedit{text-align:center;font-size:125%}.theme-light .abductor{color:purple;font-style:italic}.theme-light .mind_control{color:#a00d6f;font-size:100%;font-weight:bold;font-style:italic}.theme-light .slime{color:#00ced1}.theme-light .drone{color:#848482}.theme-light .monkey{color:#975032}.theme-light .swarmer{color:#2c75ff}.theme-light .resonate{color:#298f85}.theme-light .monkeyhive{color:#774704}.theme-light .monkeylead{color:#774704;font-size:80%}.theme-light .connectionClosed,.theme-light .fatalError{background:red;color:#fff;padding:5px}.theme-light .connectionClosed.restored{background:green}.theme-light .internal.boldnshit{color:blue;font-weight:bold}.theme-light .text-normal{font-weight:normal;font-style:normal}.theme-light .hidden{display:none;visibility:hidden}.theme-light .ml-1{margin-left:1em}.theme-light .ml-2{margin-left:2em}.theme-light .ml-3{margin-left:3em}.theme-light .xooc{color:#6c0094;font-weight:bold;font-size:140%}.theme-light .mooc{color:#090;font-weight:bold;font-size:140%}.theme-light .yooc{color:#999600;font-weight:bold;font-size:140%}.theme-light .headminsay{color:#5a0a7f;font-weight:bold}.theme-light .radio{color:#4e4e4e}.theme-light .deptradio{color:#939}.theme-light .comradio{color:#004080}.theme-light .centradio{color:#5c5c8a}.theme-light .cryoradio{color:#554e3f}.theme-light .hcradio{color:#318779}.theme-light .pvstradio{color:#9b0612}.theme-light .airadio{color:#f0f}.theme-light .secradio{color:#a30000}.theme-light .engradio{color:#a66300}.theme-light .sentryradio{color:#844300}.theme-light .medradio{color:#008160}.theme-light .supradio{color:#5f4519}.theme-light .jtacradio{color:#702963}.theme-light .intelradio{color:#027d02}.theme-light .wyradio{color:#fe9b24}.theme-light .pmcradio{color:#136957}.theme-light .vairadio{color:#943d0a}.theme-light .cmbradio{color:#1b748c}.theme-light .clfradio{color:#6f679c}.theme-light .alpharadio{color:#505bc9}.theme-light .bravoradio{color:#c68610}.theme-light .charlieradio{color:#a5a}.theme-light .deltaradio{color:#007fcf}.theme-light .echoradio{color:#3a7e65}.theme-light .medium{font-size:110%}.theme-light .big{font-size:115%}.theme-light .large{font-size:125%}.theme-light .extra_large{font-size:130%}.theme-light .huge{font-size:150%}.theme-light .underline{text-decoration:underline}.theme-light .orange{color:#eca100}.theme-light .normal{font-style:normal}.theme-light .attack{color:red}.theme-light .moderate{color:#c00}.theme-light .disarm{color:#900}.theme-light .passive{color:#600}.theme-light .helpful{color:#368f31}.theme-light .scanner{color:red}.theme-light .scannerb{color:red;font-weight:bold}.theme-light .scannerburn{color:orange}.theme-light .scannerburnb{color:orange;font-weight:bold}.theme-light .rose{color:#ff5050}.theme-light .debuginfo{color:#493d26;font-style:italic}.theme-light .xenonotice{color:#2a623d}.theme-light .xenoboldnotice{color:#2a623d;font-style:italic}.theme-light .xenowarning{color:#2a623d;font-style:italic}.theme-light .xenominorwarning{color:#2a623d;font-weight:bold;font-style:italic}.theme-light .xenodanger{color:#2a623d;font-weight:bold}.theme-light .avoidharm{color:#72a0e5;font-weight:bold}.theme-light .highdanger{color:red;font-weight:bold;font-size:140%}.theme-light .xenohighdanger{color:#2a623d;font-weight:bold;font-size:140%}.theme-light .xenoannounce{color:#1a472a;font-family:book-antiqua;font-weight:bold;font-size:140%}.theme-light .yautjabold{color:purple;font-weight:bold}.theme-light .yautjaboldbig{color:purple;font-weight:bold;font-size:120%}.theme-light .objectivebig{font-weight:bold;font-size:130%}.theme-light .objectivegreen{color:lime}.theme-light .objectivered{color:red}.theme-light .objectivesuccess{color:lime;font-weight:bold;font-size:110%}.theme-light .objectivefail{color:red;font-weight:bold;font-size:110%}.theme-light .xenotalk,.theme-light .xeno{color:#900090;font-style:italic}.theme-light .xenoleader{color:#730d73;font-style:italic;font-size:125%}.theme-light .xenoqueen{color:#730d73;font-style:italic;font-weight:bold;font-size:125%}.theme-light .newscaster{color:maroon}.theme-light .role_header{color:#db0000;display:block;text-align:center;font-weight:bold;font-family:trebuchet-ms;font-size:150%}.theme-light .role_body{color:#009;display:block;text-align:center;font-size:125%}.theme-light .round_header{color:#db0000;display:block;text-align:center;font-family:courier;font-weight:bold;font-size:180%}.theme-light .round_body{color:#001427;display:block;text-align:center;font-family:trebuchet-ms;font-weight:bold;font-size:125%}.theme-light .event_announcement{color:#600d48;font-family:arial-narrow;font-weight:bold;font-size:125%}.theme-light .announce_header{color:#000;font-weight:bold;font-size:150%}.theme-light .announce_header_blue{color:#009;font-weight:bold;font-size:150%}.theme-light .announce_body{color:red;font-weight:normal;font-size:125%}.theme-light .centerbold{display:block;text-align:center;font-weight:bold}.theme-light .mod{color:#735638;font-weight:bold}.theme-light .modooc{color:#184880;font-weight:bold}.theme-light .adminmod{color:#402a14;font-weight:bold}.theme-light .mentorsay{color:#b38c32;font-weight:bold}.theme-light .mentorhelp{color:#007e00;font-weight:bold}.theme-light .mentorbody{color:#da6200;font-weight:bold}.theme-light .mentorstaff{color:#876101;font-weight:bold}.theme-light .staffsay{color:#876101;font-weight:bold}.theme-light .tajaran{color:#803b56}.theme-light .tajaran_signlang{color:#941c1c}.theme-light .skrell{color:#00ced1}.theme-light .soghun{color:#228b22}.theme-light .changeling{color:purple}.theme-light .vox{color:#a0a}.theme-light .monkey{color:#966c47}.theme-light .german{color:#858f1e;font-family:"Times New Roman",Times,serif}.theme-light .spanish{color:#cf982b}.theme-light .japanese{color:#940927}.theme-light .chinese{color:#fe1919}.theme-light .zombie{color:#216163;font-style:italic}.theme-light .commando{color:#fe9b24;font-style:bold}.theme-light .rough{font-family:trebuchet-ms,cursive,sans-serif}.theme-light .say_quote{font-family:Georgia,Verdana,sans-serif}.theme-light .admin .message{color:#314cad}.theme-light .admin .prefix{font-weight:bolder}.theme-light .pm{font-size:110%}.theme-light .retro_translator{font-weight:bold}.theme-light .yautja_translator{color:#a00;font-weight:bold;animation:glitch .5s infinite}@keyframes glitch{25%{color:#a00;transform:translate(-2px, -1px)}50%{color:#be0000;transform:translate(1px, -2px)}75%{color:#8d0000;transform:translate(-1px, 2px)}100%{color:#830000;transform:translate(1px, 1px)}}.theme-light .examine_block{background:#f2f7fa;border:1px solid #111a27;margin:.5em;padding:.5em .75em}.theme-light .examine_block .icon{width:1.5em;height:1.5em;margin:0;padding:0}.theme-light .tooltip{font-style:italic;border-bottom:1px dashed #000} From 288110aed340bd22c29318a0cc9e2df4a5fe49aa Mon Sep 17 00:00:00 2001 From: Morrow Date: Fri, 27 Oct 2023 10:40:32 -0400 Subject: [PATCH 30/54] slight map tweak --- maps/map_files/golden_arrow/golden_arrow.dmm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index bb5771e4b9..d51a74d060 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -3711,7 +3711,7 @@ "wV" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - name = "\improper Platoon Sergeants Bunk"; + name = "\improper Platoon Sergeant's Bunk"; req_one_access_txt = "12" }, /obj/structure/pipes/standard/simple/hidden/supply, @@ -6795,7 +6795,7 @@ pixel_y = 16 }, /obj/structure/phone_base/rotary/no_dnd{ - name = "Alpha Overwatch Telephone"; + name = "Overwatch Telephone"; phone_category = "Command"; phone_id = "Alpha Overwatch" }, From 4c7174fed86e2b7c722e3e970d4fb5ccdf2b1492 Mon Sep 17 00:00:00 2001 From: Morrow Date: Fri, 27 Oct 2023 21:28:44 -0400 Subject: [PATCH 31/54] undisables some maps --- map_config/maps.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/map_config/maps.txt b/map_config/maps.txt index ba0bd17a89..1ab158411c 100644 --- a/map_config/maps.txt +++ b/map_config/maps.txt @@ -20,7 +20,6 @@ map bigredv2 endmap map prison_station_fop - disabled endmap map fiorina_sciannex @@ -30,7 +29,6 @@ endmap map corsat minplayers 130 voteweight 0 - disabled endmap map desert_dam @@ -45,7 +43,6 @@ endmap map shivas_snowball voteweight 0 - disabled endmap map kutjevo From 0f8051d1669c238f6cce29e69eba1b404db222ff Mon Sep 17 00:00:00 2001 From: Morrow Date: Fri, 27 Oct 2023 22:48:03 -0400 Subject: [PATCH 32/54] slightly lighter squad colors --- code/__DEFINES/minimap.dm | 2 +- code/game/jobs/job/marine/squads.dm | 4 ++-- code/stylesheet.dm | 2 +- tgui/packages/tgui-panel/styles/goon/chat-dark.scss | 2 +- tgui/packages/tgui-panel/styles/goon/chat-light.scss | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/code/__DEFINES/minimap.dm b/code/__DEFINES/minimap.dm index 71d0ed8e74..8db62f5726 100644 --- a/code/__DEFINES/minimap.dm +++ b/code/__DEFINES/minimap.dm @@ -45,7 +45,7 @@ GLOBAL_LIST_INIT(all_minimap_flags, bitfield2list(MINIMAP_FLAG_ALL)) #define MINIMAP_AREA_CONTESTED_ZONE "#0603c4ee" #define MINIMAP_SQUAD_UNKNOWN "#d8d8d8" -#define MINIMAP_SQUAD_ALPHA "#ed1c24" +#define MINIMAP_SQUAD_ALPHA "#4148c8" #define MINIMAP_SQUAD_BRAVO "#fbc70e" #define MINIMAP_SQUAD_CHARLIE "#76418a" #define MINIMAP_SQUAD_DELTA "#0c0cae" diff --git a/code/game/jobs/job/marine/squads.dm b/code/game/jobs/job/marine/squads.dm index 2a1f496302..23db6c1e8d 100644 --- a/code/game/jobs/job/marine/squads.dm +++ b/code/game/jobs/job/marine/squads.dm @@ -122,8 +122,8 @@ /datum/squad/marine/alpha name = SQUAD_MARINE_1 - equipment_color = "#252D78" - chat_color = "#505bc9" + equipment_color = "#4148c8" + chat_color = "#828cff" access = list(ACCESS_MARINE_ALPHA) radio_freq = ALPHA_FREQ minimap_color = MINIMAP_SQUAD_ALPHA diff --git a/code/stylesheet.dm b/code/stylesheet.dm index 99cb831dcc..d1ddf06c2a 100644 --- a/code/stylesheet.dm +++ b/code/stylesheet.dm @@ -56,7 +56,7 @@ em {font-style: normal; font-weight: bold;} .clfradio {color: #6f679c} -.alpharadio {color: #505bc9;} +.alpharadio {color: #828cff;} .bravoradio {color: #C68610;} .charlieradio {color: #AA55AA;} .deltaradio {color: #007FCF;} diff --git a/tgui/packages/tgui-panel/styles/goon/chat-dark.scss b/tgui/packages/tgui-panel/styles/goon/chat-dark.scss index 910f27b999..2421b9e11d 100644 --- a/tgui/packages/tgui-panel/styles/goon/chat-dark.scss +++ b/tgui/packages/tgui-panel/styles/goon/chat-dark.scss @@ -1001,7 +1001,7 @@ em { } .alpharadio { - color: #505bc9; + color: #828cff; } .bravoradio { diff --git a/tgui/packages/tgui-panel/styles/goon/chat-light.scss b/tgui/packages/tgui-panel/styles/goon/chat-light.scss index 138d98ddf6..0c5f611ed1 100644 --- a/tgui/packages/tgui-panel/styles/goon/chat-light.scss +++ b/tgui/packages/tgui-panel/styles/goon/chat-light.scss @@ -1029,7 +1029,7 @@ h2.alert { } .alpharadio { - color: #505bc9; + color: #828cff; } .bravoradio { From 445d1711418f2f09f89a2c175984669627def452 Mon Sep 17 00:00:00 2001 From: Morrow Date: Fri, 27 Oct 2023 22:50:15 -0400 Subject: [PATCH 33/54] phone ID --- maps/map_files/golden_arrow/golden_arrow.dmm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index d51a74d060..aaa1261e4a 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -6797,7 +6797,7 @@ /obj/structure/phone_base/rotary/no_dnd{ name = "Overwatch Telephone"; phone_category = "Command"; - phone_id = "Alpha Overwatch" + phone_id = "Overwatch" }, /obj/item/clothing/glasses/hud/health{ pixel_x = -8; From f4de3fd3daf121a686b32195d7098a3e0d9c9fb1 Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 00:17:23 -0400 Subject: [PATCH 34/54] simple mob update --- code/modules/mob/living/simple_animal/simple_animal.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm index aa2c8956b2..403cfcfd1e 100644 --- a/code/modules/mob/living/simple_animal/simple_animal.dm +++ b/code/modules/mob/living/simple_animal/simple_animal.dm @@ -15,7 +15,6 @@ var/turns_per_move = 1 var/turns_since_move = 0 - universal_speak = 0 //No, just no. var/meat_amount = 0 var/meat_type var/stop_automated_movement = 0 //Use this to temporarely stop random movement or to if you write special movement code for animals. @@ -59,6 +58,11 @@ black_market_value = 25 dead_black_market_value = 0 + lighting_alpha = LIGHTING_PLANE_ALPHA_MOSTLY_INVISIBLE + + universal_speak = FALSE + universal_understand = TRUE + /mob/living/simple_animal/Initialize() . = ..() SSmob.living_misc_mobs += src From 61b3c8fc73e6ca47900c86fb2a77675b2d506426 Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 00:19:04 -0400 Subject: [PATCH 35/54] and more simple mob changes --- code/modules/mob/living/simple_animal/friendly/cat.dm | 3 --- code/modules/mob/living/simple_animal/friendly/mouse.dm | 3 --- 2 files changed, 6 deletions(-) diff --git a/code/modules/mob/living/simple_animal/friendly/cat.dm b/code/modules/mob/living/simple_animal/friendly/cat.dm index d4b8c4ad49..c535c6101d 100644 --- a/code/modules/mob/living/simple_animal/friendly/cat.dm +++ b/code/modules/mob/living/simple_animal/friendly/cat.dm @@ -37,9 +37,6 @@ maxbodytemp = 323 //Above 50 Degrees Celcius holder_type = /obj/item/holder/cat mob_size = MOB_SIZE_SMALL - sight = SEE_MOBS - see_in_dark = 8 - see_invisible = 15 black_market_value = 50 dead_black_market_value = 0 var/miaow_counter = 0 diff --git a/code/modules/mob/living/simple_animal/friendly/mouse.dm b/code/modules/mob/living/simple_animal/friendly/mouse.dm index 2ada856e78..7196090f0b 100644 --- a/code/modules/mob/living/simple_animal/friendly/mouse.dm +++ b/code/modules/mob/living/simple_animal/friendly/mouse.dm @@ -12,7 +12,6 @@ mob_size = MOB_SIZE_SMALL speak_chance = 1 turns_per_move = 5 - see_in_dark = 6 maxHealth = 5 health = 5 meat_type = /obj/item/reagent_container/food/snacks/meat @@ -25,8 +24,6 @@ min_oxy = 16 //Require atleast 16kPA oxygen minbodytemp = 223 //Below -50 Degrees Celcius maxbodytemp = 323 //Above 50 Degrees Celcius - universal_speak = 0 - universal_understand = 1 holder_type = /obj/item/holder/mouse squeeze_under = TRUE From d93d9642d28e97579323dc47737f5ce80e9725d0 Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 00:22:09 -0400 Subject: [PATCH 36/54] correct comms --- code/modules/gear_presets/uscm.dm | 2 +- code/modules/gear_presets/uscm_ship.dm | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/gear_presets/uscm.dm b/code/modules/gear_presets/uscm.dm index c2f8c12aca..bd7718f247 100644 --- a/code/modules/gear_presets/uscm.dm +++ b/code/modules/gear_presets/uscm.dm @@ -366,7 +366,7 @@ assignment = JOB_SQUAD_LEADER rank = JOB_SQUAD_LEADER paygrade = "ME7" - role_comm_title = "SL" + role_comm_title = "PltSgt" minimum_age = 27 skills = /datum/skills/SL diff --git a/code/modules/gear_presets/uscm_ship.dm b/code/modules/gear_presets/uscm_ship.dm index 68979467be..ea5ef95865 100644 --- a/code/modules/gear_presets/uscm_ship.dm +++ b/code/modules/gear_presets/uscm_ship.dm @@ -535,14 +535,14 @@ //*****************************************************************************************************/ /datum/equipment_preset/uscm_ship/so - name = "USCM Platoon Commander (PltCO)" + name = "USCM Platoon Commander (PltCo)" flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE idtype = /obj/item/card/id/silver assignment = JOB_SO rank = JOB_SO paygrade = "MO2" - role_comm_title = "PltCO" + role_comm_title = "PltCo" minimum_age = 25 skills = /datum/skills/SO From 388d9277c14b0ff605e85c4107303f6d8bf3e922 Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 02:02:41 -0400 Subject: [PATCH 37/54] xenos beat up window frames now --- code/modules/mob/living/carbon/xenomorph/Xenomorph.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm index d1b70349e6..c1e42f4304 100644 --- a/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm +++ b/code/modules/mob/living/carbon/xenomorph/Xenomorph.dm @@ -85,7 +85,7 @@ melee_damage_lower = 5 melee_damage_upper = 10 var/melee_vehicle_damage = 10 - var/claw_type = CLAW_TYPE_NORMAL + var/claw_type = CLAW_TYPE_SHARP var/burn_damage_lower = 0 var/burn_damage_upper = 0 var/plasma_stored = 10 From 415752c98182831d3dc6a43f1dfd3884edefe765 Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 02:04:25 -0400 Subject: [PATCH 38/54] swaps weymed/bloodvend spot --- maps/map_files/golden_arrow/golden_arrow.dmm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index aaa1261e4a..2ebbbbc1ac 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -1058,7 +1058,9 @@ /area/almayer/living/cryo_cells) "fY" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + req_access = list() + }, /turf/open/floor/almayer{ icon_state = "sterile_green" }, @@ -1176,9 +1178,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - req_access = list() - }, +/obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/almayer{ icon_state = "sterile_green" }, From 944006b1db9cdf2f7e90791d610a93f7f27d136e Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 02:05:26 -0400 Subject: [PATCH 39/54] hand labelers --- maps/map_files/golden_arrow/golden_arrow.dmm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index 2ebbbbc1ac..2572036945 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -4467,6 +4467,10 @@ pixel_x = 5; pixel_y = 4 }, +/obj/item/tool/hand_labeler{ + pixel_x = -3; + pixel_y = 14 + }, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -5692,6 +5696,9 @@ pixel_x = -10; pixel_y = 6 }, +/obj/item/tool/hand_labeler{ + pixel_y = 14 + }, /turf/open/floor/almayer, /area/almayer/squads/alpha/platoon_sergeant) "Jp" = ( @@ -7611,10 +7618,6 @@ /obj/structure/machinery/recharger{ pixel_y = 5 }, -/obj/item/tool/hand_labeler{ - pixel_x = -3; - pixel_y = 14 - }, /turf/open/floor/almayer{ icon_state = "plate" }, From c144b876bc6540b20aa3590b3dd260eb768cf8f7 Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 02:13:06 -0400 Subject: [PATCH 40/54] hisssss --- code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm b/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm index 20613e56a2..732a463ade 100644 --- a/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm +++ b/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm @@ -71,6 +71,8 @@ GLOBAL_LIST_INIT(ai_target_limbs, list( if(current_target) resting = FALSE + if(prob(5)) + emote("hiss") return TRUE a_intent = INTENT_HARM From 1b56e94256998c8d981a4f3c3fe584d42c76f0bc Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 02:41:04 -0400 Subject: [PATCH 41/54] slight phone change --- code/datums/components/phone.dm | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/code/datums/components/phone.dm b/code/datums/components/phone.dm index 5d3c25e84b..e38345a12a 100644 --- a/code/datums/components/phone.dm +++ b/code/datums/components/phone.dm @@ -369,11 +369,7 @@ GLOBAL_LIST_EMPTY_TYPED(phones, /datum/component/phone) log_say("TELEPHONE: [key_name(speaker)] on Phone '[phone_id]' to '[calling_phone.phone_id]' said '[message]'") - var/comm_paygrade = "" - - if (ishuman(speaker)) - var/mob/living/carbon/human/human_speaker = speaker - comm_paygrade = human_speaker.get_paygrade() + var/comm_paygrade = speaker.get_paygrade() for(var/mob/dead/observer/cycled_observer in GLOB.player_list) if((cycled_observer.client) && (cycled_observer.client.prefs) && (cycled_observer.client.prefs.toggles_chat & CHAT_GHOSTRADIO)) From 27376f755e05d6da6bebd71fcbf7385439f1f994 Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 02:41:15 -0400 Subject: [PATCH 42/54] observer start and tacmap density --- maps/map_files/golden_arrow/golden_arrow.dmm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index 2572036945..2b8db1f565 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -181,7 +181,8 @@ layer = 2.97; name = "Tactical Map Display"; pixel_x = -17; - pixel_y = 14 + pixel_y = 14; + density = 0 }, /turf/open/floor/almayer, /area/almayer/living/platoon_commander_rooms) @@ -2375,6 +2376,7 @@ }, /area/almayer/hallways/port_hallway) "ol" = ( +/obj/effect/landmark/observer_start, /turf/open/floor/almayer/uscm/directional{ dir = 8; icon_state = "logo_c" @@ -5970,7 +5972,6 @@ /area/almayer/living/cryo_cells) "Lg" = ( /obj/docking_port/stationary/marine_dropship/almayer_hangar_1, -/obj/effect/landmark/observer_start, /turf/open/floor/plating, /area/almayer/hallways/hangar) "Ll" = ( From eb02421eac2b3b58bab9b25ec54d0be90293d9ad Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 02:58:26 -0400 Subject: [PATCH 43/54] observer messages for overwatch messages --- code/modules/cm_marines/overwatch.dm | 56 ++++++++++++++++++++-------- 1 file changed, 41 insertions(+), 15 deletions(-) diff --git a/code/modules/cm_marines/overwatch.dm b/code/modules/cm_marines/overwatch.dm index fc7f9f4116..eda8bb1737 100644 --- a/code/modules/cm_marines/overwatch.dm +++ b/code/modules/cm_marines/overwatch.dm @@ -335,7 +335,7 @@ if(.) return - var/mob/user = usr + var/mob/user = ui.user if((user.contents.Find(src) || (in_range(src, user) && istype(loc, /turf))) || (ishighersilicon(user))) user.set_interaction(src) @@ -380,22 +380,48 @@ return TRUE if("message") - if(current_squad) - var/input = sanitize_control_chars(stripped_input(user, "Please write a message to announce to the squad:", "Squad Message")) - if(input) - current_squad.send_message(input, 1) //message, adds username - current_squad.send_maptext(input, "Squad Message:") - visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("Message '[input]' sent to all Marines of squad '[current_squad]'.")]") - log_overwatch("[key_name(user)] sent '[input]' to squad [current_squad].") + if(!current_squad) + return TRUE + + var/input = tgui_input_text(user, "Please write a message to announce to the squad:", "Squad Message") + if(!input) + return TRUE + + current_squad.send_message(input, 1) //message, adds username + current_squad.send_maptext(input, "Platoon Message:") + visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("Message '[input]' sent to all Marines of platoon '[current_squad]'.")]") + log_overwatch("[key_name(user)] sent '[input]' to platoon [current_squad].") + + var/comm_paygrade = user.get_paygrade() + + for(var/mob/dead/observer/cycled_observer in GLOB.player_list) + if(cycled_observer.client && cycled_observer.client.prefs && (cycled_observer.client.prefs.toggles_chat & CHAT_GHOSTRADIO)) + var/ghost_message = "[comm_paygrade][user] (F) messaged squad '[current_squad]': \"[input]\"" + cycled_observer.show_message(ghost_message) + + return TRUE if("sl_message") - if(current_squad) - var/input = sanitize_control_chars(stripped_input(user, "Please write a message to announce to the squad leader:", "SL Message")) - if(input) - current_squad.send_message(input, 1, 1) //message, adds username, only to leader - current_squad.send_maptext(input, "Squad Leader Message:", 1) - visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("Message '[input]' sent to Squad Leader [current_squad.squad_leader] of squad '[current_squad]'.")]") - log_overwatch("[key_name(user)] sent '[input]' to Squad Leader [current_squad.squad_leader] of squad [current_squad].") + if(!current_squad) + return TRUE + + var/input = tgui_input_text(user, "Please write a message to announce to the Platoon leader:", "SL Message") + if(!input) + return TRUE + + current_squad.send_message(input, 1, 1) //message, adds username, only to leader + current_squad.send_maptext(input, "Platoon Sergeant Message:", 1) + visible_message("[icon2html(src, viewers(src))] [SPAN_BOLDNOTICE("Message '[input]' sent to Platoon Sergeant [current_squad.squad_leader] of platoon '[current_squad]'.")]") + log_overwatch("[key_name(user)] sent '[input]' to Platoon Sergeant [current_squad.squad_leader] of squad [current_squad].") + + var/comm_paygrade = user.get_paygrade() + + for(var/mob/dead/observer/cycled_observer in GLOB.player_list) + if(cycled_observer.client && cycled_observer.client.prefs && (cycled_observer.client.prefs.toggles_chat & CHAT_GHOSTRADIO)) + var/ghost_message = "[comm_paygrade][user] (F) messaged platoon leader of '[current_squad]': \"[input]\"" + cycled_observer.show_message(ghost_message) + + return TRUE if("check_primary") if(current_squad) //This is already checked, but ehh. From a57db1848927e7131d161cb972270af4df41bcd4 Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 03:08:58 -0400 Subject: [PATCH 44/54] changes some defaults --- code/__DEFINES/__game.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm index f1424f5560..a3857404b4 100644 --- a/code/__DEFINES/__game.dm +++ b/code/__DEFINES/__game.dm @@ -154,7 +154,7 @@ block( \ //================================================= -#define TOGGLES_CHAT_DEFAULT (CHAT_OOC|CHAT_DEAD|CHAT_GHOSTEARS|CHAT_GHOSTSIGHT|CHAT_PRAYER|CHAT_RADIO|CHAT_LOOC|CHAT_GHOSTHIVEMIND) +#define TOGGLES_CHAT_DEFAULT (CHAT_OOC|CHAT_DEAD|CHAT_GHOSTRADIO|CHAT_PRAYER|CHAT_RADIO|CHAT_LOOC|CHAT_GHOSTHIVEMIND) #define TOGGLES_GHOST_DEFAULT (GHOST_HEALTH_SCAN) From 1cfb673f6fe5ecb561952026520939ea3ea9ae4c Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 03:11:36 -0400 Subject: [PATCH 45/54] slightly better ghost phone stuff --- code/datums/components/phone.dm | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/code/datums/components/phone.dm b/code/datums/components/phone.dm index e38345a12a..49cca0cdf0 100644 --- a/code/datums/components/phone.dm +++ b/code/datums/components/phone.dm @@ -372,6 +372,9 @@ GLOBAL_LIST_EMPTY_TYPED(phones, /datum/component/phone) var/comm_paygrade = speaker.get_paygrade() for(var/mob/dead/observer/cycled_observer in GLOB.player_list) + if(cycled_observer == get_user() || cycled_observer == calling_phone.get_user()) + continue + if((cycled_observer.client) && (cycled_observer.client.prefs) && (cycled_observer.client.prefs.toggles_chat & CHAT_GHOSTRADIO)) var/ghost_message = "[comm_paygrade][speaker] (F) on '[phone_id]' to '[calling_phone.phone_id]': \"[message]\"" cycled_observer.show_message(ghost_message, SHOW_MESSAGE_AUDIBLE) @@ -414,7 +417,9 @@ GLOBAL_LIST_EMPTY_TYPED(phones, /datum/component/phone) return FALSE return TRUE - +/// Returns a mob that is using the phone or null if unable to find a user +/datum/component/phone/proc/get_user() + return ismob(phone_handset.loc) ? phone_handset.loc : null //TGUI section @@ -592,6 +597,9 @@ GLOBAL_LIST_EMPTY_TYPED(phones, /datum/component/phone) log_say("TELEPHONE: [key_name(speaker)] on Phone '[phone_id]' to '[calling_phone.phone_id]' said '[message]'") for(var/mob/dead/observer/cycled_observer in GLOB.player_list) + if(cycled_observer == get_user() || cycled_observer == calling_phone.get_user()) + continue + if((cycled_observer.client) && (cycled_observer.client.prefs) && (cycled_observer.client.prefs.toggles_chat & CHAT_GHOSTRADIO)) var/ghost_message = "Game Master on '[phone_id]' to '[calling_phone.phone_id]': \"[message]\"" cycled_observer.show_message(ghost_message, SHOW_MESSAGE_AUDIBLE) @@ -600,6 +608,9 @@ GLOBAL_LIST_EMPTY_TYPED(phones, /datum/component/phone) return COMPONENT_OVERRIDE_DEAD_SPEAK +/datum/component/phone/virtual/get_user() + return virtual_user + // TGUI section /datum/component/phone/virtual/ui_status(mob/user, datum/ui_state/state) From c17d8edaa627981e1597339f0669558f4b87f77e Mon Sep 17 00:00:00 2001 From: Doubleumc Date: Sat, 28 Oct 2023 03:53:28 -0400 Subject: [PATCH 46/54] Vehicle lights (#31) Co-authored-by: Morrow --- code/datums/components/overlay_lighting.dm | 56 +++++++++++++++++- code/modules/vehicles/apc/apc.dm | 2 + code/modules/vehicles/multitile/multitile.dm | 45 ++++++--------- .../multitile/multitile_interaction.dm | 57 +++++++++++-------- code/modules/vehicles/tank/tank.dm | 2 +- code/modules/vehicles/van/van.dm | 3 +- 6 files changed, 108 insertions(+), 57 deletions(-) diff --git a/code/datums/components/overlay_lighting.dm b/code/datums/components/overlay_lighting.dm index 00a5e86b5d..e14066ffb7 100644 --- a/code/datums/components/overlay_lighting.dm +++ b/code/datums/components/overlay_lighting.dm @@ -74,6 +74,8 @@ ///Cast range for the directional cast (how far away the atom is moved) var/cast_range = 2 + var/base_offset + /datum/component/overlay_lighting/Initialize(_range, _power, _color, starts_on, is_directional) if(!ismovable(parent)) @@ -191,6 +193,9 @@ return if(directional) cast_directional_light() + else if(length(current_holder?.locs) > 1) + handle_multitile_light() + get_new_turfs() @@ -335,9 +340,9 @@ if(pixel_bounds == 32) visible_mask.transform = null return - var/offset = (pixel_bounds - 32) * 0.5 + base_offset = (pixel_bounds - 32) * 0.5 var/matrix/transform = new - transform.Translate(-offset, -offset) + transform.Translate(-base_offset, -base_offset) visible_mask.transform = transform directional_offset_x = 0 directional_offset_y = 0 @@ -419,6 +424,8 @@ add_dynamic_lumi(current_holder) if(directional) cast_directional_light() + else if(length(current_holder?.locs) > 1) + handle_multitile_light() if(current_holder && current_holder != parent && current_holder != parent_attached_to) RegisterSignal(current_holder, COMSIG_MOVABLE_MOVED, PROC_REF(on_holder_moved)) get_new_turfs() @@ -462,6 +469,7 @@ scanning = next_turf current_holder.underlays -= visible_mask + current_holder.underlays -= cone var/translate_x = -((range - 1) * 32) var/translate_y = translate_x @@ -474,14 +482,58 @@ translate_x += 32 * final_distance if(WEST) translate_x += -32 * final_distance + + var/multitile_light = length(current_holder?.locs) > 1 + var/multitile_translate_x = 0 + var/multitile_translate_y = 0 + + if(multitile_light) + switch(current_direction) + if(NORTH) + multitile_translate_x += current_holder.bound_width * 0.5 + multitile_translate_y += current_holder.bound_height + if(SOUTH) + multitile_translate_x += current_holder.bound_width * 0.5 + if(EAST) + multitile_translate_x += current_holder.bound_width + multitile_translate_y += current_holder.bound_height * 0.5 + if(WEST) + multitile_translate_y += current_holder.bound_height * 0.5 + + translate_x += multitile_translate_x + translate_y += multitile_translate_y + if((directional_offset_x != translate_x) || (directional_offset_y != translate_y)) directional_offset_x = translate_x directional_offset_y = translate_y var/matrix/transform = matrix() transform.Translate(translate_x, translate_y) visible_mask.transform = transform + if(multitile_light) + var/matrix/cone_transform = matrix() + cone_transform.Translate(multitile_translate_x - 32, multitile_translate_y - 32) + cone.transform = cone_transform if(overlay_lighting_flags & LIGHTING_ON) current_holder.underlays += visible_mask + current_holder.underlays += cone + +/datum/component/overlay_lighting/proc/handle_multitile_light() + var/multitile_translate_x = 0 + var/multitile_translate_y = 0 + switch(current_holder.dir) + if(NORTH, SOUTH) + multitile_translate_x = current_holder.bound_width * 0.5 + multitile_translate_y = current_holder.bound_height * 0.5 + if(EAST, WEST) + multitile_translate_x = current_holder.bound_height * 0.5 + multitile_translate_y = current_holder.bound_width * 0.5 + if(current_holder && overlay_lighting_flags & LIGHTING_ON) + current_holder.underlays -= visible_mask + var/matrix/transform = new + transform.Translate(multitile_translate_x - base_offset, multitile_translate_y - base_offset) + visible_mask.transform = transform + if(current_holder && overlay_lighting_flags & LIGHTING_ON) + current_holder.underlays += visible_mask ///Called when current_holder changes loc. /datum/component/overlay_lighting/proc/on_holder_dir_change(atom/movable/source, olddir, newdir) diff --git a/code/modules/vehicles/apc/apc.dm b/code/modules/vehicles/apc/apc.dm index 60d21f7090..55e2cf2d11 100644 --- a/code/modules/vehicles/apc/apc.dm +++ b/code/modules/vehicles/apc/apc.dm @@ -34,6 +34,8 @@ GLOBAL_LIST_EMPTY(command_apc_list) movement_sound = 'sound/vehicles/tank_driving.ogg' + light_range = 4 + var/gunner_view_buff = 10 hardpoints_allowed = list( diff --git a/code/modules/vehicles/multitile/multitile.dm b/code/modules/vehicles/multitile/multitile.dm index 9e4d2c9d29..148af24e0d 100644 --- a/code/modules/vehicles/multitile/multitile.dm +++ b/code/modules/vehicles/multitile/multitile.dm @@ -21,11 +21,13 @@ can_buckle = FALSE + //Vehicle self-illumination light_system = MOVABLE_LIGHT light_range = 5 + light_power = 2 - var/atom/movable/vehicle_light_holder/lighting_holder - + //Vehicle headlights + var/atom/movable/vehicle_light/light_holder var/vehicle_light_range = 5 var/vehicle_light_power = 2 @@ -176,15 +178,13 @@ rotate_bounds(angle_to_turn) if(bound_width > world.icon_size || bound_height > world.icon_size) - lighting_holder = new(src) - lighting_holder.set_light_range(vehicle_light_range) - lighting_holder.set_light_power(vehicle_light_power) - lighting_holder.set_light_on(vehicle_light_range || vehicle_light_power) - else if(light_range) - set_light_on(TRUE) + light_holder = new(src) + light_holder.set_light_flags(LIGHT_ATTACHED) + light_holder.set_light_range(vehicle_light_range) + light_holder.set_light_power(vehicle_light_power) + light_holder.set_light_on(vehicle_light_range && vehicle_light_power) - light_pixel_x = -bound_x - light_pixel_y = -bound_y + set_light_on(light_range && light_power) healthcheck() update_icon() @@ -209,6 +209,8 @@ return /obj/vehicle/multitile/Destroy() + QDEL_NULL(light_holder) + if(!QDELETED(interior)) QDEL_NULL(interior) @@ -383,8 +385,9 @@ handle_all_modules_broken() //vehicle is dead, no more lights - if(health <= 0 && lighting_holder.light_range) - lighting_holder.set_light_on(FALSE) + if(health <= 0 && light_holder.light_range) + set_light_on(FALSE) + light_holder.set_light_on(FALSE) update_icon() /* @@ -441,19 +444,5 @@ for(var/obj/item/hardpoint/locomotion/Loco in hardpoints) Loco.handle_acid_damage(A) -/atom/movable/vehicle_light_holder - light_system = MOVABLE_LIGHT - mouse_opacity = MOUSE_OPACITY_TRANSPARENT - -/atom/movable/vehicle_light_holder/Initialize(mapload, ...) - . = ..() - - var/atom/attached_to = loc - - forceMove(attached_to.loc) - RegisterSignal(attached_to, COMSIG_MOVABLE_MOVED, PROC_REF(handle_parent_move)) - -/atom/movable/vehicle_light_holder/proc/handle_parent_move(atom/movable/mover, atom/oldloc, direction) - SIGNAL_HANDLER - - forceMove(get_turf(mover)) +/atom/movable/vehicle_light + light_system = DIRECTIONAL_LIGHT diff --git a/code/modules/vehicles/multitile/multitile_interaction.dm b/code/modules/vehicles/multitile/multitile_interaction.dm index 42b141327b..c4f1ed2d3d 100644 --- a/code/modules/vehicles/multitile/multitile_interaction.dm +++ b/code/modules/vehicles/multitile/multitile_interaction.dm @@ -134,22 +134,23 @@ take_damage_type(O.force * 0.05, "blunt", user) //Melee weapons from people do very little damage // Frame repairs on the vehicle itself -/obj/vehicle/multitile/proc/handle_repairs(obj/item/O, mob/user) +/obj/vehicle/multitile/proc/handle_repairs(obj/item/repairing_item, mob/user) if(user.action_busy) return + var/max_hp = initial(health) if(health > max_hp) health = max_hp to_chat(user, SPAN_NOTICE("The hull is fully intact.")) for(var/obj/item/hardpoint/holder/H in hardpoints) if(H.health > 0) - if(!iswelder(O)) - to_chat(user, SPAN_WARNING("You need welding tool to repair \the [H.name].")) + if(!iswelder(repairing_item)) + to_chat(user, SPAN_WARNING("You need welding tool to repair [H.name].")) return - if(!HAS_TRAIT(O, TRAIT_TOOL_BLOWTORCH)) + if(!HAS_TRAIT(repairing_item, TRAIT_TOOL_BLOWTORCH)) to_chat(user, SPAN_WARNING("You need a stronger blowtorch!")) return - H.handle_repair(O, user) + H.handle_repair(repairing_item, user) update_icon() return else @@ -158,25 +159,25 @@ var/repair_message = "welding structural struts back in place" var/sound_file = 'sound/items/weldingtool_weld.ogg' - var/obj/item/tool/weldingtool/WT + var/obj/item/tool/weldingtool/welder // For health < 75%, the frame needs welderwork, otherwise wrench if(health < max_hp * 0.75) - if(!iswelder(O)) + if(!iswelder(repairing_item)) to_chat(user, SPAN_NOTICE("The frame is way too busted! Try using a [SPAN_HELPFUL("welder")].")) return - if(!HAS_TRAIT(O, TRAIT_TOOL_BLOWTORCH)) + if(!HAS_TRAIT(repairing_item, TRAIT_TOOL_BLOWTORCH)) to_chat(user, SPAN_NOTICE("You need a more powerful blowtorch!")) return - WT = O - if(!WT.isOn()) - to_chat(user, SPAN_WARNING("\The [WT] needs to be on!")) + welder = repairing_item + if(!welder.isOn()) + to_chat(user, SPAN_WARNING("[welder] needs to be on!")) return else - if(!HAS_TRAIT(O, TRAIT_TOOL_WRENCH)) + if(!HAS_TRAIT(repairing_item, TRAIT_TOOL_WRENCH)) to_chat(user, SPAN_NOTICE("The frame is structurally sound, but there are a lot of loose nuts and bolts. Try using a [SPAN_HELPFUL("wrench")].")) return @@ -184,7 +185,7 @@ sound_file = 'sound/items/Ratchet.ogg' var/amount_fixed_adjustment = user.get_skill_duration_multiplier(SKILL_ENGINEER) - user.visible_message(SPAN_WARNING("[user] [repair_message] on \the [src]."), SPAN_NOTICE("You begin [repair_message] on \the [src].")) + user.visible_message(SPAN_WARNING("[user] [repair_message] on [src]."), SPAN_NOTICE("You begin [repair_message] on [src].")) playsound(get_turf(user), sound_file, 25) while(health < max_hp) @@ -192,27 +193,33 @@ playsound(get_turf(user), sound_file, 25) if(!do_after(user, 1 SECONDS, INTERRUPT_ALL, BUSY_ICON_BUILD)) - user.visible_message(SPAN_WARNING("[user] stops [repair_message] on \the [src]."), SPAN_NOTICE("You stop [repair_message] on \the [src]. Hull integrity is at [SPAN_HELPFUL(100.0*health/max_hp)]%.")) + user.visible_message(SPAN_WARNING("[user] stops [repair_message] on [src]."), SPAN_NOTICE("You stop [repair_message] on [src]. Hull integrity is at [SPAN_HELPFUL(100.0*health/max_hp)]%.")) return health = min(health + max_hp/100 * (5 / amount_fixed_adjustment), max_hp) - - if(WT) - WT.remove_fuel(1, user) - if(WT.get_fuel() < 1) - user.visible_message(SPAN_WARNING("[user] stops [repair_message] on \the [src]."), SPAN_NOTICE("You stop [repair_message] on \the [src]. Hull integrity is at [SPAN_HELPFUL(100.0*health/max_hp)]%.")) - return - if(health >= max_hp * 0.75) - user.visible_message(SPAN_WARNING("[user] finishes [repair_message] on \the [src]."), SPAN_NOTICE("You finish [repair_message] on \the [src]. The frame is structurally sound now, but there are a lot of loose nuts and bolts. Try using a [SPAN_HELPFUL("wrench")].")) - return + if(health >= max_hp * 0.50) + set_light_on(vehicle_light_range && vehicle_light_power) + light_holder.set_light_on(vehicle_light_range && vehicle_light_power) + to_chat(user, SPAN_NOTICE("[src]'s lights flicker to life!")) to_chat(user, SPAN_NOTICE("Hull integrity is at [SPAN_HELPFUL(100.0*health/max_hp)]%.")) + if(!welder) + continue + + welder.remove_fuel(1, user) + if(welder.get_fuel() < 1) + user.visible_message(SPAN_WARNING("[user] stops [repair_message] on [src]."), SPAN_NOTICE("You stop [repair_message] on [src]. Hull integrity is at [SPAN_HELPFUL(100.0*health/max_hp)]%.")) + return + if(health >= max_hp * 0.75) + user.visible_message(SPAN_WARNING("[user] finishes [repair_message] on [src]."), SPAN_NOTICE("You finish [repair_message] on [src]. The frame is structurally sound now, but there are a lot of loose nuts and bolts. Try using a [SPAN_HELPFUL("wrench")].")) + return + health = initial(health) - lighting_holder.set_light_range(vehicle_light_range) + toggle_cameras_status(TRUE) update_icon() - user.visible_message(SPAN_NOTICE("[user] finishes [repair_message] on \the [src]."), SPAN_NOTICE("You finish [repair_message] on \the [src]. Hull integrity is at [SPAN_HELPFUL(100.0*health/max_hp)]%. ")) + user.visible_message(SPAN_NOTICE("[user] finishes [repair_message] on [src]."), SPAN_NOTICE("You finish [repair_message] on [src]. Hull integrity is at [SPAN_HELPFUL(100.0*health/max_hp)]%. ")) return //Special case for entering the vehicle without using the verb diff --git a/code/modules/vehicles/tank/tank.dm b/code/modules/vehicles/tank/tank.dm index ad69f80cdf..87f17458aa 100644 --- a/code/modules/vehicles/tank/tank.dm +++ b/code/modules/vehicles/tank/tank.dm @@ -36,7 +36,7 @@ move_momentum_build_factor = 1.8 move_turn_momentum_loss_factor = 0.6 - vehicle_light_range = 7 + light_range = 4 // Rest (all the guns) is handled by the tank turret hardpoint hardpoints_allowed = list( diff --git a/code/modules/vehicles/van/van.dm b/code/modules/vehicles/van/van.dm index fdb2f397bb..5969b73957 100644 --- a/code/modules/vehicles/van/van.dm +++ b/code/modules/vehicles/van/van.dm @@ -41,7 +41,8 @@ movement_sound = 'sound/vehicles/tank_driving.ogg' honk_sound = 'sound/vehicles/honk_2_truck.ogg' - vehicle_light_range = 8 + light_range = 3 + vehicle_light_range = 6 move_max_momentum = 3 From ca2b45a03d1c26316b1de9bc45072215dd5e9fc7 Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 04:58:03 -0400 Subject: [PATCH 47/54] golden arrow specific areas --- code/game/area/almayer.dm | 17 - code/game/area/golden_arrow.dm | 67 + colonialmarines.dme | 1 + maps/map_files/golden_arrow/golden_arrow.dmm | 2063 +++++++++--------- 4 files changed, 1078 insertions(+), 1070 deletions(-) create mode 100644 code/game/area/golden_arrow.dm diff --git a/code/game/area/almayer.dm b/code/game/area/almayer.dm index 6200444949..32db45fc7c 100644 --- a/code/game/area/almayer.dm +++ b/code/game/area/almayer.dm @@ -9,7 +9,6 @@ powernet_name = "almayer" sound_environment = SOUND_ENVIRONMENT_ROOM soundscape_interval = 30 - //soundscape_playlist = list('sound/effects/xylophone1.ogg', 'sound/effects/xylophone2.ogg', 'sound/effects/xylophone3.ogg') ambience_exterior = AMBIENCE_ALMAYER ceiling_muffle = FALSE @@ -548,11 +547,6 @@ icon_state = "livingspace" fake_zlevel = 1 // upperdeck -/area/almayer/living/platoon_commander_rooms - name = "\improper Platoon Commander's Rooms" - icon_state = "livingspace" - fake_zlevel = 1 // upperdeck - /area/almayer/living/chapel name = "\improper Almayer Chapel" icon_state = "officerrnr" @@ -666,17 +660,6 @@ icon_state = "alpha" fake_zlevel = 2 // lowerdeck -/area/almayer/squads/alpha/platoon_sergeant - name = "\improper Alpha Platoon Sergeant Office" - -/area/almayer/squads/alpha/squad_one - name = "\improper Alpha Squad One Preparation" - icon_state = "charlie" - -/area/almayer/squads/alpha/squad_two - name = "\improper Alpha Squad Two Preparation" - icon_state = "delta" - /area/almayer/squads/bravo name = "\improper Squad Bravo Preparation" icon_state = "bravo" diff --git a/code/game/area/golden_arrow.dm b/code/game/area/golden_arrow.dm new file mode 100644 index 0000000000..11656d7da4 --- /dev/null +++ b/code/game/area/golden_arrow.dm @@ -0,0 +1,67 @@ +/area/golden_arrow + icon = 'icons/turf/area_almayer.dmi' + icon_state = "almayer" + ceiling = CEILING_METAL + powernet_name = "golden_arrow" + sound_environment = SOUND_ENVIRONMENT_ROOM + soundscape_interval = 30 + ambience_exterior = AMBIENCE_ALMAYER + ceiling_muffle = FALSE + +/area/golden_arrow/hangar + name = "\improper Hangar" + icon_state = "hangar" + soundscape_playlist = SCAPE_PL_HANGAR + soundscape_interval = 50 + +/area/golden_arrow/platoon_commander_rooms + name = "\improper Platoon Commander's Rooms" + icon_state = "livingspace" + +/area/golden_arrow/medical + name = "\improper Medical" + icon_state = "medical" + +/area/golden_arrow/supply + name = "\improper Supply" + icon_state = "req" + +/area/golden_arrow/engineering + name = "\improper Engineering" + icon_state = "upperengineering" + +/area/golden_arrow/briefing + name = "\improper Briefing Area" + icon_state = "briefing" + +/area/golden_arrow/dorms + name = "\improper Dorms" + icon_state = "gruntrnr" + +/area/golden_arrow/canteen + name = "\improper Canteen" + icon_state = "food" + +/area/golden_arrow/cryo_cells + name = "\improper Cryo Cells" + icon_state = "cryo" + +/area/golden_arrow/prep_hallway + name = "\improper Prep Hallway" + icon_state = "port" + +/area/golden_arrow/platoon_sergeant + name = "\improper Platoon Sergeant Office" + icon_state = "alpha" + +/area/golden_arrow/squad_one + name = "\improper Squad One Prep" + icon_state = "charlie" + +/area/golden_arrow/squad_two + name = "\improper Squad Two Prep" + icon_state = "delta" + +/area/golden_arrow/synthcloset + name = "\improper Synthetic Storage Closet" + icon_state = "livingspace" diff --git a/colonialmarines.dme b/colonialmarines.dme index f964364243..c1c6de35b4 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -691,6 +691,7 @@ #include "code\game\area\chinook.dm" #include "code\game\area\Corsat.dm" #include "code\game\area\DesertDam.dm" +#include "code\game\area\golden_arrow.dm" #include "code\game\area\IceColony.dm" #include "code\game\area\kutjevo.dm" #include "code\game\area\LV522_Chances_Claim.dm" diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index 2b8db1f565..85d8d1dade 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -8,19 +8,19 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "af" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "ag" = ( /obj/structure/window/framed/almayer, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "ah" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -38,7 +38,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "al" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -46,14 +46,14 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "an" = ( /obj/structure/closet/emcloset, /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "aq" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -64,7 +64,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "ar" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 @@ -72,20 +72,20 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "aw" = ( /obj/structure/sign/safety/storage{ pixel_x = 9; pixel_y = 29 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/hangar) "ax" = ( /obj/structure/cargo_container/arious/mid, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "ay" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = 12; @@ -98,7 +98,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "aA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/platform/stair_cut, @@ -107,7 +107,7 @@ icon_state = "p_stair_full" }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "aB" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 @@ -115,13 +115,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "aG" = ( /obj/structure/largecrate/supply/supplies/tables_racks, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "aI" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -138,7 +138,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "aJ" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -150,12 +150,12 @@ pixel_y = 3 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "aN" = ( /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "aQ" = ( /obj/structure/sign/safety/galley{ pixel_y = 29 @@ -163,13 +163,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "aS" = ( /obj/structure/machinery/power/fusion_engine{ name = "\improper S-52 fusion reactor 17" }, /turf/open/floor/almayer, -/area/almayer/engineering) +/area/golden_arrow/engineering) "aT" = ( /obj/structure/machinery/computer/cameras/almayer/vehicle{ dir = 4; @@ -185,7 +185,7 @@ density = 0 }, /turf/open/floor/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "aX" = ( /obj/structure/platform_decoration{ dir = 4 @@ -194,7 +194,7 @@ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "ba" = ( /obj/item/tool/warning_cone{ pixel_x = 4; @@ -202,7 +202,7 @@ }, /obj/item/stool, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "bb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -211,13 +211,13 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "bf" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "bg" = ( /obj/structure/machinery/light{ dir = 1 @@ -230,18 +230,18 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "bh" = ( /obj/effect/landmark/start/marine/leader/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "bo" = ( /obj/structure/window/framed/almayer, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "bq" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -258,7 +258,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "bu" = ( /obj/structure/machinery/camera/autoname/almayer, /obj/effect/decal/warning_stripes{ @@ -268,13 +268,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "bw" = ( /obj/structure/curtain/red, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "by" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -282,7 +282,7 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "bB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -294,7 +294,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "bD" = ( /obj/structure/machinery/door/airlock/almayer/command/reinforced{ dir = 1; @@ -306,7 +306,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "bG" = ( /obj/structure/window/reinforced{ dir = 4; @@ -350,13 +350,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "bO" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ req_one_access = list() }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "bQ" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 @@ -364,7 +364,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "bR" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/warning_stripes{ @@ -375,7 +375,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "bS" = ( /obj/structure/platform/stair_cut/alt, /obj/structure/stairs/perspective{ @@ -387,16 +387,16 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "bZ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "ca" = ( /turf/closed/wall/almayer/outer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "cj" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -409,7 +409,7 @@ dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "cl" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 @@ -418,12 +418,12 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "co" = ( /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "cp" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -434,20 +434,20 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "cr" = ( /obj/effect/landmark/start/marine/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "cs" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "ct" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -459,7 +459,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "cw" = ( /obj/structure/machinery/computer/atmos_alert{ dir = 4 @@ -470,7 +470,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "cy" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -479,7 +479,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "cz" = ( /obj/structure/machinery/disposal{ density = 0; @@ -489,7 +489,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "cA" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/magazine/boots/n054{ @@ -502,11 +502,11 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "cB" = ( /obj/structure/machinery/camera/autoname/almayer, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/hangar) "cD" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffeecup/wy{ @@ -516,7 +516,7 @@ pixel_y = 8 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "cG" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -528,20 +528,14 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "cH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/med_data/laptop, /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) -"cI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/medical) "cJ" = ( /obj/structure/bed/chair/office/light{ dir = 1 @@ -549,19 +543,19 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/medical) +/area/golden_arrow/medical) "cL" = ( /obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "cR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "cS" = ( /obj/structure/machinery/door/airlock/almayer/medical{ name = "\improper Platoon Medic Office"; @@ -571,10 +565,10 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/medical) +/area/golden_arrow/medical) "cT" = ( /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "cU" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -587,13 +581,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "cZ" = ( /obj/structure/machinery/cm_vending/sorted/medical/chemistry/no_access, /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "dd" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -601,7 +595,7 @@ /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "de" = ( /obj/structure/machinery/light{ dir = 4 @@ -609,19 +603,19 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "dg" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "di" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "dj" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 30 @@ -634,7 +628,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "dl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/safety/coffee{ @@ -644,7 +638,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "dm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -653,7 +647,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/medical) +/area/golden_arrow/medical) "dn" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -665,11 +659,11 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "dr" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "ds" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -681,7 +675,7 @@ pixel_x = -10 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "dt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -689,7 +683,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/medical) +/area/golden_arrow/medical) "dv" = ( /obj/structure/machinery/light{ dir = 1 @@ -697,7 +691,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "dA" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 @@ -705,7 +699,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "dB" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 @@ -713,7 +707,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "dE" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light{ @@ -722,7 +716,7 @@ /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "dG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -731,17 +725,17 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "dH" = ( /obj/item/bedsheet/brown, /obj/structure/bed, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "dJ" = ( /turf/open/floor/plating, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "dO" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -751,31 +745,31 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "dP" = ( /obj/structure/closet/firecloset, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "dX" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "ea" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "eo" = ( /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "eu" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -785,7 +779,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "ey" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -803,7 +797,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "eB" = ( /obj/structure/prop/almayer/computers/sensor_computer1, /obj/effect/decal/warning_stripes{ @@ -818,26 +812,26 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "eH" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "eJ" = ( /obj/structure/machinery/power/apc/almayer, /obj/structure/surface/table/reinforced/prison, /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "eL" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "eR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -847,7 +841,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "eT" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -867,18 +861,18 @@ dir = 5 }, /turf/open/floor/almayer, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "eU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "eY" = ( /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "fe" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -889,7 +883,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "ff" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -902,13 +896,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "fg" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/uscm/directional{ dir = 10 }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "fh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -917,7 +911,7 @@ dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "fl" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 @@ -925,11 +919,11 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "fm" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, -/area/almayer/engineering) +/area/golden_arrow/engineering) "fo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -943,7 +937,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "fp" = ( /obj/structure/closet/secure_closet/engineering_welding{ req_one_access = list() @@ -951,7 +945,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "fq" = ( /obj/structure/machinery/conveyor{ dir = 10 @@ -960,7 +954,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "fv" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -974,7 +968,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "fx" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -986,7 +980,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "fy" = ( /obj/structure/platform, /obj/structure/stairs/perspective{ @@ -1000,7 +994,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "fF" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -1010,7 +1004,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "fJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/overhead_pipe{ @@ -1023,14 +1017,14 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "fL" = ( /obj/structure/surface/table/almayer, /obj/item/device/megaphone, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "fO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -1046,7 +1040,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/medical) +/area/golden_arrow/medical) "fX" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -1056,7 +1050,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "fY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/sorted/medical/blood{ @@ -1065,18 +1059,18 @@ /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "gd" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "gf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "gg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -1089,7 +1083,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "gh" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 @@ -1098,7 +1092,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "gn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/surgical{ @@ -1108,7 +1102,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "gp" = ( /obj/structure/surface/rack, /obj/effect/decal/warning_stripes{ @@ -1118,14 +1112,14 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "gq" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "gt" = ( /obj/structure/machinery/power/monitor{ name = "Core Power Monitoring" @@ -1133,7 +1127,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "gx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ @@ -1143,13 +1137,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "gz" = ( /obj/structure/ship_ammo/rocket/widowmaker, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "gA" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -1158,11 +1152,11 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "gB" = ( /obj/structure/machinery/telecomms/relay/preset/tower, /turf/open/floor/almayer, -/area/almayer/engineering) +/area/golden_arrow/engineering) "gD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -1170,10 +1164,10 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "gE" = ( /turf/closed/wall/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "gG" = ( /obj/structure/machinery/light{ dir = 1 @@ -1183,7 +1177,7 @@ /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "gH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc/almayer{ @@ -1192,7 +1186,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "gL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -1201,14 +1195,14 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "gM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "gS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1218,7 +1212,7 @@ dir = 8; icon_state = "cargo_arrow" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "gT" = ( /obj/structure/machinery/conveyor{ dir = 8 @@ -1227,12 +1221,12 @@ dir = 5; icon_state = "plating" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "gW" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "ha" = ( /obj/structure/machinery/light{ dir = 8 @@ -1241,13 +1235,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "he" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "hk" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -1256,7 +1250,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "ho" = ( /obj/structure/machinery/autodoc_console{ dir = 1; @@ -1265,7 +1259,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/medical) +/area/golden_arrow/medical) "hq" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -1278,14 +1272,14 @@ pixel_x = 1 }, /turf/open/floor/almayer, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "hy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, -/area/almayer/engineering) +/area/golden_arrow/engineering) "hA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -1293,7 +1287,7 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "hC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -1309,11 +1303,11 @@ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "hF" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "hG" = ( /obj/structure/machinery/medical_pod/autodoc{ dir = 1; @@ -1322,7 +1316,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/medical) +/area/golden_arrow/medical) "hL" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -1341,7 +1335,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "hN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data{ @@ -1350,7 +1344,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "hR" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -1367,10 +1361,10 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "hS" = ( /turf/closed/wall/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "hU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -1388,7 +1382,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "hW" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/recharger, @@ -1396,13 +1390,13 @@ /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "if" = ( /obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "ik" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -1416,7 +1410,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "il" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -1426,7 +1420,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "ip" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -1442,7 +1436,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "iy" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -1457,12 +1451,12 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/medical) +/area/golden_arrow/medical) "iA" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp, /turf/open/floor/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "iC" = ( /obj/structure/sign/safety/security{ pixel_x = 15; @@ -1476,7 +1470,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "iE" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply, @@ -1489,24 +1483,24 @@ pixel_y = 13 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "iF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "iG" = ( /obj/structure/machinery/door/poddoor/almayer/open, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/prep_hallway) "iK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "iL" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -1520,12 +1514,12 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "iN" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "iQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -1535,12 +1529,12 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "iR" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "iX" = ( /obj/structure/sign/safety/rewire{ pixel_x = 14; @@ -1553,7 +1547,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "jb" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -1568,13 +1562,13 @@ /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "jc" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "je" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -1587,7 +1581,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "jf" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -1595,7 +1589,7 @@ /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "jg" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -1603,7 +1597,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/medical) +/area/golden_arrow/medical) "jj" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -1614,7 +1608,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "jl" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -1623,7 +1617,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "js" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -1636,7 +1630,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "jy" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/computer/station_alert{ @@ -1645,7 +1639,7 @@ pixel_y = 2 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "jD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -1654,7 +1648,7 @@ dir = 9 }, /turf/open/floor/almayer, -/area/almayer/engineering) +/area/golden_arrow/engineering) "jG" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -1673,7 +1667,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/medical) +/area/golden_arrow/medical) "jN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/cell_charger, @@ -1681,7 +1675,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "jO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -1693,19 +1687,19 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "jQ" = ( /obj/structure/machinery/pipedispenser, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "jS" = ( /obj/structure/machinery/power/terminal{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "jU" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -1717,7 +1711,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/medical) +/area/golden_arrow/medical) "jV" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -1738,19 +1732,19 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/medical) +/area/golden_arrow/medical) "kg" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "kh" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "kk" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -1770,13 +1764,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "km" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "kq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -1786,7 +1780,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "kr" = ( /obj/structure/machinery/cryopod/right, /obj/structure/machinery/light{ @@ -1795,13 +1789,13 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "kw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/hangar) "kB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -1811,7 +1805,7 @@ pixel_x = 1 }, /turf/open/floor/almayer, -/area/almayer/engineering) +/area/golden_arrow/engineering) "kF" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder/industrial{ @@ -1820,7 +1814,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "kH" = ( /obj/structure/machinery/computer/cryopod{ dir = 1 @@ -1836,7 +1830,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "kI" = ( /obj/structure/machinery/light{ dir = 8 @@ -1845,24 +1839,24 @@ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "kO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "kS" = ( /turf/closed/wall/almayer/outer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "kU" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/structure/machinery/floodlight/landing, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "kV" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -1873,7 +1867,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "kX" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -1892,14 +1886,14 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "lc" = ( /obj/structure/closet/cryo, /obj/structure/closet/cryo, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "ld" = ( /obj/structure/closet, /obj/effect/decal/cleanable/dirt, @@ -1910,25 +1904,25 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "lg" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/hangar) "lh" = ( /obj/structure/machinery/floodlight/landing, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "lm" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "lo" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -1936,16 +1930,16 @@ pixel_y = 1 }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "ly" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/hangar) "lA" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "lB" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -1957,14 +1951,14 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "lE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/hangar) "lG" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -1972,7 +1966,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "lK" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/atmos_alert{ @@ -1981,7 +1975,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "lQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/firealarm{ @@ -1990,7 +1984,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "lS" = ( /obj/structure/surface/rack, /obj/item/device/flashlight/lamp/on{ @@ -1999,7 +1993,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "lV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ @@ -2009,14 +2003,14 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "mb" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; name = "\improper Hangar Lockdown Blast Door" }, /turf/closed/wall/almayer/outer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "mc" = ( /obj/structure/bed{ can_buckle = 0 @@ -2027,7 +2021,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "me" = ( /obj/structure/machinery/door/airlock/almayer/command/reinforced{ dir = 1; @@ -2037,7 +2031,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "mf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -2047,26 +2041,26 @@ pixel_y = 12 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "mk" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "cargo_arrow" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "ml" = ( /obj/structure/ship_ammo/minirocket, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "mm" = ( /obj/structure/cargo_container/lockmart/mid{ layer = 3.1; pixel_y = 5 }, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "mo" = ( /obj/structure/surface/rack, /obj/item/storage/briefcase/inflatable, @@ -2074,14 +2068,14 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "ms" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ dir = 4; icon_state = "cargo_arrow" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "mB" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -2093,7 +2087,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "mD" = ( /obj/structure/machinery/door/airlock/almayer/generic{ req_one_access_txt = "8;12;39" @@ -2104,17 +2098,17 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "mR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "mW" = ( /obj/structure/machinery/landinglight/ds1, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "mY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -2128,14 +2122,14 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "mZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset/full, /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "nb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Squad Two Armoury"; @@ -2144,7 +2138,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "nd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -2157,7 +2151,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "ng" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -2168,7 +2162,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "ni" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/comfy/alpha{ @@ -2177,7 +2171,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "nj" = ( /obj/structure/window/reinforced{ dir = 4; @@ -2212,25 +2206,25 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "nm" = ( /obj/structure/prop/invuln/lifeboat_hatch_placeholder{ layer = 2.1 }, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "ns" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/cryo, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "nx" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "ny" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -2241,7 +2235,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "nD" = ( /obj/structure/machinery/conveyor{ dir = 8 @@ -2256,7 +2250,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "nF" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -2275,11 +2269,11 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "nG" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "nK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc/almayer{ @@ -2288,21 +2282,21 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "nM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "nN" = ( /obj/structure/largecrate/random/secure, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "nR" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -2311,7 +2305,7 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "nT" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 @@ -2328,7 +2322,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "nV" = ( /obj/structure/machinery/light{ dir = 1 @@ -2337,13 +2331,13 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "nY" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 1 }, /turf/open/floor/almayer, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "oa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/comfy/alpha{ @@ -2352,7 +2346,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "oe" = ( /obj/structure/sign/safety/bulkhead_door{ pixel_y = -29 @@ -2360,7 +2354,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "og" = ( /obj/structure/machinery/light{ dir = 1 @@ -2368,20 +2362,20 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "oh" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "ol" = ( /obj/effect/landmark/observer_start, /turf/open/floor/almayer/uscm/directional{ dir = 8; icon_state = "logo_c" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "oo" = ( /obj/structure/closet/secure_closet/engineering_electrical{ req_one_access = list() @@ -2389,14 +2383,14 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "or" = ( /obj/structure/machinery/conveyor, /turf/open/floor/almayer{ dir = 5; icon_state = "plating" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "ot" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/rifle/m41aMK1{ @@ -2409,13 +2403,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "ou" = ( /turf/open/floor/almayer_hull{ dir = 1; icon_state = "outerhull_dir" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "ov" = ( /obj/structure/machinery/light{ dir = 1 @@ -2425,7 +2419,7 @@ /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "oA" = ( /obj/structure/machinery/shower{ dir = 8 @@ -2433,7 +2427,7 @@ /obj/structure/machinery/door/window/westleft, /obj/structure/window/reinforced/tinted/frosted, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "oB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -2448,7 +2442,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "oC" = ( /obj/structure/plasticflaps, /obj/structure/machinery/conveyor{ @@ -2457,7 +2451,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "oH" = ( /obj/structure/machinery/light{ dir = 4 @@ -2465,7 +2459,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "oJ" = ( /obj/structure/machinery/medical_pod/bodyscanner{ pixel_y = 6 @@ -2473,13 +2467,13 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/medical) +/area/golden_arrow/medical) "oK" = ( /obj/structure/machinery/door/poddoor/almayer/open, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/prep_hallway) "oL" = ( /obj/structure/platform_decoration{ dir = 8 @@ -2493,7 +2487,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "oM" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -2506,14 +2500,14 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "oO" = ( /obj/structure/machinery/power/terminal{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "oQ" = ( /obj/item/prop/helmetgarb/gunoil{ pixel_x = 7; @@ -2532,7 +2526,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "oW" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -2544,24 +2538,24 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "oX" = ( /obj/structure/largecrate/supply/generator, /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "pf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/item/ammo_box/magazine/heap/empty, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "pl" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "pt" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -2570,7 +2564,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "pw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/lattice_prop{ @@ -2580,13 +2574,13 @@ pixel_y = -15 }, /turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "pB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "pD" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -2595,11 +2589,11 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "pF" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "pG" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -2612,11 +2606,11 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "pJ" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/almayer/outer, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "pO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -2627,44 +2621,44 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "pR" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "pS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/suit_storage_unit/carbon_unit, /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "pW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "pZ" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "cargo_arrow" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "qa" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "qc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/hangar) "qf" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -2672,7 +2666,7 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "qh" = ( /obj/structure/machinery/light{ dir = 4 @@ -2680,12 +2674,12 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "qi" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "qm" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -2694,13 +2688,7 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/living/cryo_cells) -"qp" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "qu" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -2709,19 +2697,19 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "qv" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 8 }, /turf/open/floor/almayer, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "qw" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "qz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -2740,10 +2728,10 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "qA" = ( /turf/closed/wall/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "qD" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster{ @@ -2761,7 +2749,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "qI" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 @@ -2770,29 +2758,29 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "qQ" = ( /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "qR" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "qT" = ( /turf/open/floor/almayer/uscm/directional{ dir = 9 }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "qU" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "qW" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical/green{ @@ -2805,7 +2793,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "rb" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -2813,13 +2801,13 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "rd" = ( /obj/structure/closet/cryo, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "rf" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 @@ -2828,7 +2816,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "rh" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -2837,35 +2825,35 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "rk" = ( /obj/structure/cargo_container/arious/left, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "rl" = ( /turf/open/floor/almayer/uscm/directional{ dir = 1 }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "ro" = ( /obj/structure/largecrate/supply/supplies/water, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "rq" = ( /obj/structure/largecrate/supply/floodlights, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "rr" = ( /turf/open/floor/almayer/uscm/directional{ dir = 5 }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "rt" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -2875,7 +2863,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "rx" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply, @@ -2886,13 +2874,13 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "ry" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "rA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/janitorialcart, @@ -2903,13 +2891,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "rH" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "rI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -2936,19 +2924,19 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "rJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "rM" = ( /obj/structure/cargo_container/wy/mid, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "rV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/uscm/directional, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "rX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet, @@ -2958,7 +2946,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "rZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -2970,26 +2958,26 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "sa" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "sc" = ( /obj/structure/pipes/vents/scrubber, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "sf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "sg" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Dorms" @@ -2998,7 +2986,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "sk" = ( /obj/structure/machinery/power/apc/almayer{ dir = 8 @@ -3006,19 +2994,19 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "sm" = ( /turf/open/floor/almayer/uscm/directional{ dir = 6 }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "so" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "sv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -3028,7 +3016,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "sy" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -3041,26 +3029,19 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "sC" = ( /turf/closed/wall/almayer/outer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "sE" = ( /obj/structure/machinery/power/smes/buildable, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "sI" = ( /turf/closed/wall/almayer/outer, -/area/almayer/living/cryo_cells) -"sK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/cryo_cells) "sN" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -3072,23 +3053,23 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "sO" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "sR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "sS" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "sU" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -3103,11 +3084,11 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "sV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "sX" = ( /obj/effect/decal/cleanable/dirt, /obj/item/paper_bin/uscm{ @@ -3125,7 +3106,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "sY" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null @@ -3135,7 +3116,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "ti" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -3148,7 +3129,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "to" = ( /obj/structure/prop/invuln/lifeboat_hatch_placeholder{ layer = 2.1 @@ -3157,19 +3138,19 @@ layer = 2.1 }, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "tr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "tv" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_18" }, /turf/open/floor/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "ty" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/pdt_kit{ @@ -3177,23 +3158,19 @@ pixel_y = 9 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "tA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "tB" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) -"tG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/engineering) "tS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ @@ -3203,20 +3180,20 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "tT" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "tV" = ( /obj/structure/ship_ammo/rocket/keeper, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "tX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/scrubber, @@ -3226,7 +3203,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "ua" = ( /obj/item/tool/warning_cone{ pixel_y = 16 @@ -3234,13 +3211,13 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "ub" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "ug" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -3250,7 +3227,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "um" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/firealarm{ @@ -3258,7 +3235,7 @@ }, /obj/structure/machinery/faxmachine/uscm/command/capt, /turf/open/floor/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "uo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -3268,7 +3245,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "up" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -3282,14 +3259,14 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "us" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/engineering) +/area/golden_arrow/engineering) "uu" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -3297,7 +3274,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "uw" = ( /obj/structure/machinery/light{ dir = 8 @@ -3305,25 +3282,25 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "uA" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "uF" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/crew/alt, /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "uG" = ( /obj/item/tool/warning_cone, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "uH" = ( /obj/structure/largecrate/random/case/small, /obj/item/toy/deck{ @@ -3342,7 +3319,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "uO" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -3358,7 +3335,7 @@ pixel_y = 4 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "uQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -3371,27 +3348,27 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "uS" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; pixel_x = 1 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "uX" = ( /obj/structure/closet/secure_closet/engineering_chief, /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "vb" = ( /obj/structure/surface/table/reinforced/almayer_B{ layer = 2.0; pixel_x = 12 }, /turf/closed/wall/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "vc" = ( /obj/structure/machinery/light{ dir = 1 @@ -3400,7 +3377,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "vg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -3411,7 +3388,7 @@ pixel_y = 2 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "vk" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, @@ -3419,7 +3396,7 @@ dir = 8; icon_state = "cargo_arrow" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "vo" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -3428,7 +3405,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "vp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -3440,7 +3417,7 @@ pixel_y = -15 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "vt" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -3448,7 +3425,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "vB" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -3459,13 +3436,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "vF" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "vG" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -3481,7 +3458,7 @@ }, /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "vJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -3501,7 +3478,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "vK" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -3514,7 +3491,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "vL" = ( /obj/structure/sign/safety/bulkhead_door{ pixel_x = -19 @@ -3522,7 +3499,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "vN" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -3538,7 +3515,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "vP" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -3547,7 +3524,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "vS" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -3559,13 +3536,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "vU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "wa" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -3575,7 +3552,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "wc" = ( /obj/structure/machinery/door/airlock/almayer/command/reinforced{ name = "\improper Platoon Commander's Quarters" @@ -3583,7 +3560,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "wd" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -3596,7 +3573,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "wi" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -3606,20 +3583,20 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "wl" = ( /turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "wn" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "wp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "wx" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -3629,13 +3606,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "wz" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "wH" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -3656,14 +3633,14 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "wI" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/technology_scanner, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "wJ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light{ @@ -3677,7 +3654,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "wK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -3686,7 +3663,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "wN" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = -32 @@ -3703,13 +3680,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "wS" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "wV" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -3720,15 +3697,15 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "xf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "xh" = ( /obj/structure/cargo_container/arious/right, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "xm" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/firealarm{ @@ -3737,12 +3714,12 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "xx" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "xz" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -3757,7 +3734,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/medical) +/area/golden_arrow/medical) "xB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -3771,7 +3748,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "xJ" = ( /obj/structure/closet/secure_closet/engineering_welding{ req_one_access = list() @@ -3782,7 +3759,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "xK" = ( /obj/structure/machinery/light{ dir = 8 @@ -3797,7 +3774,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "xM" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -3806,7 +3783,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "xQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/safety/galley{ @@ -3815,13 +3792,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "xX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "yc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -3834,10 +3811,10 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "ye" = ( /turf/closed/wall/almayer, -/area/almayer/engineering) +/area/golden_arrow/engineering) "yg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/supply_drop/echo, @@ -3848,7 +3825,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "yj" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -3857,7 +3834,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "yo" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/structure/machinery/status_display{ @@ -3866,7 +3843,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "ys" = ( /obj/structure/sign/safety/rewire{ pixel_x = 14; @@ -3875,13 +3852,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "yt" = ( /obj/structure/window/framed/almayer, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "yv" = ( /obj/structure/machinery/light{ dir = 4 @@ -3893,7 +3870,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "yx" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/firealarm{ @@ -3902,13 +3879,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "yy" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "yA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/squad_sergeant{ @@ -3918,7 +3895,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "yF" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -3928,7 +3905,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "yJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -3942,7 +3919,7 @@ icon_state = "S" }, /turf/open/floor/almayer, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "yL" = ( /obj/structure/closet/coffin/woodencrate, /obj/item/storage/box/m94, @@ -3955,7 +3932,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "yM" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/cholula{ @@ -3965,33 +3942,33 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "yO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "yT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "yU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "yY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /obj/structure/bed/chair, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "yZ" = ( /obj/structure/machinery/light{ dir = 1 @@ -3999,7 +3976,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "za" = ( /obj/structure/machinery/camera/autoname/almayer, /obj/effect/decal/warning_stripes{ @@ -4009,7 +3986,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "zk" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ req_one_access = list(); @@ -4018,7 +3995,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "zl" = ( /obj/structure/machinery/power/smes/buildable, /obj/structure/machinery/camera/autoname/almayer{ @@ -4028,7 +4005,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "zn" = ( /obj/structure/machinery/light{ dir = 4 @@ -4043,7 +4020,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "zt" = ( /obj/structure/machinery/light{ dir = 8 @@ -4051,23 +4028,23 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "zy" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "zA" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "zD" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "cargo_arrow" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "zG" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -4078,7 +4055,7 @@ pixel_y = 2 }, /turf/open/floor/almayer, -/area/almayer/engineering) +/area/golden_arrow/engineering) "zI" = ( /obj/structure/pipes/vents/pump, /obj/item/tool/mop{ @@ -4090,13 +4067,13 @@ pixel_y = 2 }, /turf/open/floor/almayer, -/area/almayer/engineering) +/area/golden_arrow/engineering) "zJ" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/hangar) "zK" = ( /obj/structure/pipes/vents/scrubber, /obj/structure/sign/safety/bulkhead_door{ @@ -4106,7 +4083,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "zL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -4121,7 +4098,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "zM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -4129,20 +4106,20 @@ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "zV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/disposal, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "zY" = ( /obj/structure/closet/secure_closet/engineering_electrical{ req_one_access = list() }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "zZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -4150,7 +4127,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "Ad" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ name = "\improper Hangar Lockdown Blast Door" @@ -4158,18 +4135,18 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Ap" = ( /obj/structure/surface/table/almayer, /obj/item/trash/ceramic_plate, /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "As" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "Aw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -4184,13 +4161,13 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/canteen) "Ax" = ( /obj/structure/machinery/shower{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "AA" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -4198,7 +4175,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "AC" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -4211,7 +4188,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "AG" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 @@ -4220,10 +4197,10 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "AH" = ( /turf/open/floor/almayer, -/area/almayer/engineering) +/area/golden_arrow/engineering) "AK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -4232,13 +4209,13 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "AL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "AO" = ( /obj/structure/machinery/autolathe, /obj/structure/machinery/light{ @@ -4247,7 +4224,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "AP" = ( /obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ layer = 2.1 @@ -4258,14 +4235,14 @@ pixel_y = 2 }, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "AQ" = ( /obj/structure/cargo_container/lockmart/right{ layer = 3.1; pixel_y = 5 }, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "AY" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -4274,7 +4251,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Bd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -4283,27 +4260,27 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Bf" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Bg" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "Bh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/vending/coffee/simple, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Bi" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -4315,15 +4292,15 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Bj" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/almayer, -/area/almayer/medical) +/area/golden_arrow/medical) "Bo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "Bq" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -4332,12 +4309,12 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Br" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Bt" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -4347,7 +4324,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Bu" = ( /obj/item/ammo_magazine/sentry{ layer = 3.01 @@ -4356,7 +4333,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "Bv" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ name = "Damage Control Locker"; @@ -4365,17 +4342,17 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Bw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/safety/rewire{ pixel_y = -29 }, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Bz" = ( /turf/open/floor/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "BA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -4395,7 +4372,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "BM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -4405,7 +4382,7 @@ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "BO" = ( /obj/structure/bed/chair{ dir = 1 @@ -4413,12 +4390,12 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "BP" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "BW" = ( /obj/structure/sign/safety/hazard{ pixel_x = -19; @@ -4435,18 +4412,18 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "BY" = ( /obj/effect/landmark/start/marine/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "BZ" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "Cb" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/bronze{ @@ -4476,7 +4453,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "Ce" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/alarm/almayer{ @@ -4490,18 +4467,18 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Cf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Cg" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Cl" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -4511,7 +4488,7 @@ dir = 4; icon_state = "cargo_arrow" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Cn" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -4520,7 +4497,7 @@ dir = 8 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "Cr" = ( /turf/open/space/basic, /area/space) @@ -4537,7 +4514,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Cu" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Sergeants Room"; @@ -4546,12 +4523,12 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Cv" = ( /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "Cw" = ( /obj/structure/machinery/body_scanconsole{ pixel_y = 6 @@ -4559,7 +4536,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/medical) +/area/golden_arrow/medical) "Cy" = ( /obj/structure/machinery/conveyor{ dir = 8 @@ -4574,7 +4551,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "CC" = ( /obj/structure/surface/rack, /obj/item/ammo_magazine/flamer_tank, @@ -4590,7 +4567,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "CF" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -4606,7 +4583,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "CK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -4615,7 +4592,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "CN" = ( /obj/structure/cargo_container/lockmart/left{ layer = 3.1; @@ -4624,7 +4601,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "CP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -4633,7 +4610,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "CX" = ( /obj/structure/machinery/light{ dir = 1 @@ -4641,7 +4618,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "CZ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ @@ -4649,17 +4626,17 @@ shuttleId = "dropship_alamo" }, /turf/open/floor/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "Db" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/almayer/outer, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "Dc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Df" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -4674,7 +4651,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "Dg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -4683,7 +4660,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Dl" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -4697,7 +4674,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Dw" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -4713,7 +4690,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Dx" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -4733,7 +4710,7 @@ pixel_y = -4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "DB" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -4742,10 +4719,10 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "DC" = ( /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "DE" = ( /obj/structure/machinery/light{ dir = 4 @@ -4754,7 +4731,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "DF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/alarm/almayer{ @@ -4763,43 +4740,43 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "DM" = ( /obj/structure/machinery/power/apc/almayer, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "DR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "DX" = ( /obj/structure/toilet{ pixel_y = 16 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "DY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Ea" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Eb" = ( /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "Ei" = ( /obj/structure/machinery/space_heater, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "Eo" = ( /obj/structure/platform_decoration, /obj/structure/platform_decoration{ @@ -4813,7 +4790,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "Ep" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -4826,13 +4803,13 @@ pixel_x = 1 }, /turf/open/floor/almayer, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "Er" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/hangar) "Eu" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -4840,14 +4817,14 @@ pixel_y = 2 }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Ey" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/hangar) "EA" = ( /obj/structure/machinery/power/monitor{ name = "Core Power Monitoring" @@ -4858,19 +4835,19 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "EB" = ( /obj/structure/window/framed/almayer, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "ED" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "EF" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -4880,7 +4857,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "EI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/scrubber, @@ -4890,7 +4867,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "EJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -4901,7 +4878,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "EK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname/almayer{ @@ -4912,7 +4889,7 @@ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "EO" = ( /obj/structure/machinery/disposal{ density = 0; @@ -4922,7 +4899,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "EQ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -4952,7 +4929,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "EX" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -4961,7 +4938,7 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "EZ" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 @@ -4969,7 +4946,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Fa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -4984,7 +4961,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Fe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -4997,17 +4974,17 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "Ff" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Fg" = ( /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "Fi" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/roller, @@ -5019,7 +4996,7 @@ /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "Fj" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5031,17 +5008,17 @@ }, /obj/item/facepaint/black, /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Fl" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "Fu" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Fw" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -5054,28 +5031,28 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Fy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "Fz" = ( /obj/structure/closet/crate/trashcart, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "FE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "FI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "FN" = ( /obj/structure/machinery/medical_pod/sleeper{ dir = 8; @@ -5085,20 +5062,20 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/medical) +/area/golden_arrow/medical) "FP" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "FR" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "FS" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -5106,7 +5083,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "FT" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -5115,7 +5092,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "FV" = ( /obj/structure/surface/table/almayer, /obj/item/trash/ceramic_plate{ @@ -5133,7 +5110,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "FW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -5146,7 +5123,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Gf" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/wooden_tv/prop{ @@ -5180,7 +5157,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "Gg" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -5193,7 +5170,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Gi" = ( /obj/structure/sign/safety/ammunition{ pixel_x = 14; @@ -5202,7 +5179,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Gk" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -5212,7 +5189,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Gq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -5220,12 +5197,12 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/hangar) "Gs" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Gu" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -5236,23 +5213,17 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Gv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) -"Gx" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/engineering) "Gy" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Gz" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -5261,7 +5232,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "GA" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -5270,13 +5241,13 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "GG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "GK" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -5298,7 +5269,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "GL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -5312,7 +5283,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "GN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -5320,7 +5291,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "GO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/safety/synth_storage{ @@ -5329,7 +5300,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "GQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -5337,7 +5308,7 @@ }, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "GU" = ( /obj/structure/surface/table/almayer, /obj/item/device/radio, @@ -5345,7 +5316,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "GV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -5353,14 +5324,14 @@ /turf/open/floor/almayer{ icon_state = "bluefull" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "GY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "Hc" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/general_air_control/large_tank_control{ @@ -5373,7 +5344,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Hh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -5381,7 +5352,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Hj" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/CICmap{ @@ -5391,7 +5362,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Hk" = ( /obj/structure/closet/coffin/woodencrate, /obj/item/clothing/accessory/storage/droppouch, @@ -5399,13 +5370,13 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "Hm" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Hv" = ( /obj/item/frame/camera{ desc = "The Staff Officer insisted he needed to monitor everyone at all times."; @@ -5424,7 +5395,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Hw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -5435,7 +5406,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "Hx" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/structure/machinery/light, @@ -5443,7 +5414,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "HG" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -5455,7 +5426,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "HH" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -5468,23 +5439,23 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "HK" = ( /turf/closed/wall/almayer, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "HQ" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "HR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "bluefull" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "HS" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 @@ -5493,14 +5464,14 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "HT" = ( /obj/structure/machinery/power/terminal{ dir = 8 }, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "HV" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 @@ -5508,7 +5479,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "HX" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -5523,13 +5494,13 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Ii" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "It" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ dir = 1; @@ -5542,17 +5513,17 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Iw" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Iy" = ( /obj/structure/computer3frame, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "IC" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -5561,13 +5532,13 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "ID" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "IE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -5579,10 +5550,10 @@ pixel_y = 10 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "IP" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "IR" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -5599,7 +5570,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "IS" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/camera/autoname/almayer{ @@ -5609,7 +5580,7 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "IT" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -5621,20 +5592,20 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "IU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "IW" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "IX" = ( /obj/structure/machinery/light{ dir = 4 @@ -5646,7 +5617,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "IZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -5655,20 +5626,20 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Jb" = ( /obj/structure/machinery/cm_vending/clothing/medic/alpha, /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "Jc" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Jg" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/clipboard{ @@ -5677,7 +5648,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "Jk" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -5687,7 +5658,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "Jn" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/cans/waterbottle{ @@ -5702,7 +5673,7 @@ pixel_y = 14 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Jp" = ( /obj/structure/machinery/conveyor{ dir = 9 @@ -5711,7 +5682,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "Jq" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 @@ -5719,7 +5690,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Jv" = ( /obj/structure/machinery/light{ dir = 8 @@ -5727,13 +5698,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "JD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "JI" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 @@ -5743,7 +5714,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "JJ" = ( /obj/structure/machinery/sleep_console{ dir = 8; @@ -5752,14 +5723,14 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/medical) +/area/golden_arrow/medical) "JP" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "JT" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 8 @@ -5768,7 +5739,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "JZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -5778,7 +5749,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Kd" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -5790,7 +5761,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Ke" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -5802,7 +5773,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Ki" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -5816,14 +5787,14 @@ health = 80 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Kl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/photocopier, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Kp" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/rifle/m41aMK1{ @@ -5836,7 +5807,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "Ku" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad{ @@ -5846,10 +5817,10 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "Kv" = ( /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Kx" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -5859,7 +5830,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "KD" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -5869,17 +5840,17 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "KH" = ( /obj/vehicle/powerloader, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "KK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "KM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, @@ -5889,27 +5860,27 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "KO" = ( /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "KP" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "KQ" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "KU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "KY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -5918,13 +5889,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "La" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Ld" = ( /obj/structure/window/reinforced{ dir = 4; @@ -5964,35 +5935,35 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "Lf" = ( /obj/effect/landmark/start/marine/tl/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Lg" = ( /obj/docking_port/stationary/marine_dropship/almayer_hangar_1, /turf/open/floor/plating, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Ll" = ( /obj/structure/ship_ammo/minirocket/incendiary, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Ln" = ( /obj/structure/ship_ammo/rocket/banshee, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Lo" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Ls" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/alpha{ density = 0 @@ -6003,7 +5974,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Lx" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 @@ -6011,21 +5982,21 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "LC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "LE" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; name = "ship-grade camera" }, /turf/open/floor/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "LF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -6033,7 +6004,7 @@ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "LH" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 @@ -6042,12 +6013,12 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "LJ" = ( /turf/open/floor/almayer/uscm/directional{ dir = 8 }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "LK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ @@ -6056,12 +6027,12 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "LL" = ( /obj/effect/landmark/late_join/alpha, /obj/effect/landmark/start/marine/alpha, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "LQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -6075,7 +6046,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "LS" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -6084,7 +6055,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "LT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/status_display{ @@ -6093,27 +6064,27 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "LZ" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "Mc" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "Md" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "Me" = ( /turf/closed/wall/almayer, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "Mf" = ( /obj/effect/decal/cleanable/cobweb{ dir = 8 @@ -6131,7 +6102,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "Mi" = ( /obj/structure/machinery/light{ dir = 4 @@ -6139,22 +6110,13 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Mj" = ( /obj/structure/surface/table/reinforced/prison, /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) -"Mk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/hangar) +/area/golden_arrow/medical) "Ml" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/rad{ @@ -6172,14 +6134,14 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Mn" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Mu" = ( /obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ req_one_access = list(); @@ -6188,7 +6150,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "MB" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -6199,20 +6161,20 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "MC" = ( /obj/structure/machinery/light, /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "MI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "MJ" = ( /obj/structure/machinery/light{ dir = 4 @@ -6220,10 +6182,10 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "MK" = ( /turf/closed/wall/almayer/outer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "ML" = ( /obj/structure/largecrate, /obj/structure/largecrate{ @@ -6232,13 +6194,13 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "MN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "MW" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -6254,13 +6216,13 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "MZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "Na" = ( /obj/structure/machinery/light{ dir = 1 @@ -6268,28 +6230,28 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Ne" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "cargo_arrow" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "Nf" = ( /turf/closed/wall/almayer/white, -/area/almayer/medical) +/area/golden_arrow/medical) "Ng" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Nk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 }, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "No" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -6303,14 +6265,14 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light/small, /turf/open/floor/almayer, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "Np" = ( /turf/open/floor/almayer, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "Nr" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "Nx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -6319,7 +6281,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Nz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -6337,7 +6299,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "NB" = ( /obj/structure/sign/safety/cryo{ pixel_x = 6; @@ -6351,7 +6313,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "ND" = ( /obj/structure/sign/safety/rewire{ pixel_x = 14; @@ -6364,7 +6326,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "NE" = ( /obj/structure/machinery/light{ dir = 8 @@ -6382,7 +6344,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "NI" = ( /obj/structure/machinery/cm_vending/clothing/synth/snowflake{ pixel_x = -30; @@ -6391,13 +6353,13 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "NO" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "NT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6409,7 +6371,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "NU" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/autoname{ dir = 1; @@ -6419,7 +6381,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "NV" = ( /obj/structure/sign/safety/cryo{ pixel_x = 6; @@ -6428,13 +6390,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "NZ" = ( /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Ob" = ( /obj/structure/platform{ dir = 4; @@ -6448,7 +6410,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "Oc" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -6456,20 +6418,20 @@ pixel_y = 2 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Od" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ dir = 8; icon_state = "cargo_arrow" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "Oj" = ( /obj/structure/machinery/camera/autoname/almayer, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Ol" = ( /obj/item/reagent_container/spray/cleaner{ pixel_x = 5; @@ -6477,24 +6439,24 @@ }, /obj/structure/janitorialcart, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Os" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Oz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "OA" = ( /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/medical) +/area/golden_arrow/medical) "OC" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light, @@ -6504,7 +6466,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "OG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/alarm/almayer{ @@ -6513,7 +6475,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "OH" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -6523,7 +6485,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "OI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -6538,13 +6500,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "OJ" = ( /obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "ON" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 @@ -6553,18 +6515,18 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "OU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "OX" = ( /turf/open/floor/almayer/uscm/directional{ dir = 4 }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "OY" = ( /obj/structure/ladder{ height = 2; @@ -6573,7 +6535,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "OZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -6584,7 +6546,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "Pc" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -6610,7 +6572,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Pe" = ( /obj/structure/bed/chair/comfy, /obj/structure/pipes/standard/simple/hidden/supply, @@ -6621,7 +6583,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Pf" = ( /obj/structure/surface/table/almayer, /obj/structure/bedsheetbin{ @@ -6630,7 +6592,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Ph" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -6640,7 +6602,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Pl" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -6648,7 +6610,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Pm" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump/special{ @@ -6663,7 +6625,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "Pp" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Squad One Armoury"; @@ -6673,7 +6635,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "Pr" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -6683,7 +6645,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/medical) +/area/golden_arrow/medical) "Ps" = ( /obj/item/stack/sheet/metal{ amount = 50 @@ -6698,14 +6660,14 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Pt" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Py" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 @@ -6714,7 +6676,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "PA" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/shotgun/pump/special{ @@ -6729,13 +6691,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "PF" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "PG" = ( /obj/structure/machinery/computer/arcade{ density = 0; @@ -6744,7 +6706,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "PL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -6752,7 +6714,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "PQ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -6760,7 +6722,7 @@ /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "PW" = ( /obj/structure/machinery/door/airlock/almayer/command/reinforced{ name = "\improper Private Briefing Room"; @@ -6770,7 +6732,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "PY" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -6787,13 +6749,13 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/medical) +/area/golden_arrow/medical) "PZ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "Qc" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/overwatch/almayer{ @@ -6812,7 +6774,7 @@ pixel_y = 12 }, /turf/open/floor/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "Qe" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6825,7 +6787,7 @@ current_mag = null }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Qi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/safety/conference_room{ @@ -6834,13 +6796,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Qk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Ql" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -6851,7 +6813,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Qq" = ( /obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ req_one_access = list(); @@ -6863,7 +6825,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Qt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -6878,7 +6840,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "Qu" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -6894,10 +6856,10 @@ pixel_y = 16 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Qw" = ( /turf/closed/wall/almayer/outer, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "Qx" = ( /obj/structure/sink{ dir = 4; @@ -6907,7 +6869,7 @@ pixel_x = 28 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Qz" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -6916,7 +6878,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "QD" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -6925,14 +6887,14 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "QE" = ( /obj/structure/machinery/chem_dispenser, /obj/item/reagent_container/glass/beaker/bluespace, /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "QI" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -6943,12 +6905,12 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "QJ" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "QL" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -6962,7 +6924,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "QM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -6973,30 +6935,30 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "QN" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "QO" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "QP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "QQ" = ( /obj/structure/toilet{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "QS" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -7007,7 +6969,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "QT" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light{ @@ -7016,7 +6978,7 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "QW" = ( /obj/structure/cargo_container/wy/left, /obj/structure/sign/poster{ @@ -7034,7 +6996,7 @@ serial_number = 16 }, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "QX" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -7043,7 +7005,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Ra" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -7051,7 +7013,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Rc" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -7065,11 +7027,11 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "Rd" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "Rg" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -7077,7 +7039,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Rh" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -7085,7 +7047,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Rl" = ( /obj/structure/surface/table/almayer, /obj/item/tool/kitchen/tray{ @@ -7107,11 +7069,11 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Rr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/hangar) "Rt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7120,10 +7082,10 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/hangar) "Rv" = ( /turf/closed/wall/almayer/outer, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Rx" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -7133,7 +7095,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Ry" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -7155,12 +7117,12 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "RD" = ( /obj/effect/landmark/late_join, /obj/effect/landmark/start/marine/alpha, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "RK" = ( /obj/structure/machinery/light{ dir = 1 @@ -7172,14 +7134,14 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "RM" = ( /obj/structure/closet/firecloset/full, /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "RN" = ( /obj/structure/surface/rack, /obj/item/clothing/mask/gas{ @@ -7200,7 +7162,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "RO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/squad_sergeant{ @@ -7210,7 +7172,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "RP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -7218,25 +7180,25 @@ }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/engineering) +/area/golden_arrow/engineering) "RT" = ( /obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "RW" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "Sc" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Sd" = ( /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."; @@ -7273,14 +7235,14 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "Si" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Sj" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -7294,7 +7256,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Sl" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -7304,7 +7266,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Sn" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -7313,7 +7275,7 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "So" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -7322,7 +7284,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Sq" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -7334,7 +7296,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Su" = ( /obj/structure/surface/table/almayer, /obj/item/tool/kitchen/tray{ @@ -7356,7 +7318,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Sw" = ( /obj/structure/machinery/shower{ dir = 1 @@ -7370,7 +7332,7 @@ health = 80 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Sy" = ( /obj/structure/machinery/disposal, /obj/structure/machinery/camera/autoname/almayer{ @@ -7380,7 +7342,14 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) +"SB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/supply) +"SC" = ( +/turf/closed/wall/almayer/outer, +/area/space) "SL" = ( /obj/structure/machinery/light{ dir = 8 @@ -7388,11 +7357,11 @@ /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "SO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "SR" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -7401,7 +7370,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "ST" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -7416,7 +7385,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "SV" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/prop/magazine/book/theartofwar, @@ -7428,14 +7397,14 @@ pixel_x = 12 }, /turf/open/floor/almayer, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "SY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Tc" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -7443,13 +7412,13 @@ pixel_y = 1 }, /turf/closed/wall/almayer/white, -/area/almayer/medical) +/area/golden_arrow/medical) "Td" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Tg" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -7484,7 +7453,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "Tj" = ( /obj/structure/filingcabinet/chestdrawer{ density = 0; @@ -7499,7 +7468,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Tk" = ( /obj/structure/window/reinforced{ dir = 4; @@ -7528,7 +7497,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "To" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -7537,7 +7506,7 @@ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Tr" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -7545,7 +7514,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Tu" = ( /obj/structure/sign/safety/hazard{ pixel_x = -19; @@ -7566,7 +7535,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Tx" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 @@ -7574,23 +7543,23 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Ty" = ( /turf/closed/wall/almayer/outer, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "Tz" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "TC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "TD" = ( /obj/item/tool/crowbar/red{ pixel_x = -13; @@ -7612,7 +7581,7 @@ name = "lattice" }, /turf/open/floor/plating, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "TI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -7622,7 +7591,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "TK" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -7635,14 +7604,14 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "TN" = ( /turf/closed/wall/almayer/reinforced, -/area/almayer/engineering) +/area/golden_arrow/engineering) "TO" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "TP" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -7655,18 +7624,18 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "TT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "TW" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "TY" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -7676,7 +7645,7 @@ dir = 8; icon_state = "cargo_arrow" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Ub" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -7687,7 +7656,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Uf" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -7699,20 +7668,20 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Uh" = ( /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "Ui" = ( /turf/closed/wall/almayer, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Uj" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Uk" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c10{ @@ -7720,7 +7689,7 @@ pixel_y = 7 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "Um" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/clothing/synth{ @@ -7730,20 +7699,14 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "Uv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) -"UA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/hangar) +/area/golden_arrow/canteen) "UI" = ( /obj/structure/surface/table/almayer, /obj/item/device/cassette_tape/nam{ @@ -7752,7 +7715,7 @@ pixel_y = 7 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "UK" = ( /obj/structure/machinery/light{ dir = 4 @@ -7760,7 +7723,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "UN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/line_nexter{ @@ -7772,7 +7735,7 @@ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "UO" = ( /obj/structure/bed/chair{ dir = 4 @@ -7781,7 +7744,7 @@ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "UT" = ( /obj/structure/machinery/disposal{ density = 0; @@ -7791,7 +7754,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "UX" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -7801,20 +7764,20 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Va" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Vc" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Ve" = ( /obj/structure/sink{ pixel_y = 24 @@ -7839,26 +7802,26 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Vj" = ( /turf/open/floor/almayer{ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Vp" = ( /turf/closed/wall/almayer, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "Vq" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Vr" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "Vu" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/generic{ @@ -7868,7 +7831,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "Vv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -7881,7 +7844,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "VJ" = ( /obj/structure/ladder{ height = 1; @@ -7894,7 +7857,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "VK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/secure_closet/smartgunner{ @@ -7904,19 +7867,19 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "VL" = ( /obj/structure/closet/secure_closet/platoon_sergeant, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "VQ" = ( /obj/structure/machinery/disposal, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "VT" = ( /obj/structure/surface/table/almayer, /obj/item/tool/stamp/denied{ @@ -7944,7 +7907,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "VX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -7958,7 +7921,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "Wf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -7970,7 +7933,7 @@ pixel_y = -15 }, /turf/open/floor/almayer, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "Wg" = ( /obj/structure/sign/safety/cryo{ pixel_x = 8; @@ -7984,19 +7947,19 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "Wj" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/grunt_rnr) +/area/golden_arrow/dorms) "Wl" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; pixel_x = -1 }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Wm" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -8004,7 +7967,7 @@ pixel_y = 2 }, /turf/open/floor/almayer, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Wo" = ( /obj/structure/filingcabinet{ density = 0; @@ -8024,17 +7987,17 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "Wp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "Wr" = ( /obj/structure/machinery/floodlight/landing, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Ws" = ( /obj/item/tool/warning_cone, /obj/effect/decal/warning_stripes{ @@ -8044,13 +8007,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Wu" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Wv" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 4 @@ -8059,7 +8022,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "WA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc/almayer{ @@ -8070,14 +8033,14 @@ }, /obj/structure/largecrate, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "WG" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ dir = 4; icon_state = "cargo_arrow" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "WK" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/flamer{ @@ -8093,7 +8056,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "WP" = ( /obj/structure/bed/chair/comfy/alpha{ dir = 4 @@ -8101,7 +8064,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "WY" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -8118,7 +8081,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Xa" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -8126,7 +8089,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Xb" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -8136,18 +8099,18 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Xc" = ( /obj/structure/machinery/shower{ pixel_y = 16 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Xd" = ( /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Xj" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -8164,13 +8127,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "Xs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Xv" = ( /obj/structure/sign/safety/rewire{ pixel_x = 14; @@ -8179,7 +8142,7 @@ /turf/open/floor/almayer{ icon_state = "bluefull" }, -/area/almayer/living/platoon_commander_rooms) +/area/golden_arrow/platoon_commander_rooms) "Xw" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -8192,7 +8155,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Xy" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -8209,20 +8172,20 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Xz" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, -/area/almayer/hallways/hangar) +/area/space) "XI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "XJ" = ( /turf/closed/wall/almayer, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "XL" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = -7; @@ -8247,13 +8210,13 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "XN" = ( /obj/structure/closet/secure_closet/engineering_personal, /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "XP" = ( /obj/structure/sign/safety/storage{ pixel_x = 7; @@ -8263,7 +8226,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "XQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -8272,7 +8235,7 @@ dir = 8; icon_state = "cargo_arrow" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "XR" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -8288,20 +8251,14 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Ya" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ dir = 1; icon_state = "cargo_arrow" }, -/area/almayer/squads/alpha/squad_two) -"Yb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/squad_two) "Yc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/supply/ammo/m41amk1, @@ -8312,7 +8269,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "Yd" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8320,7 +8277,7 @@ }, /obj/item/folder/black_random, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "Ye" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -8334,17 +8291,17 @@ dir = 5; icon_state = "plating" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Yh" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, /turf/open/floor/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Yj" = ( /turf/closed/wall/almayer, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Yl" = ( /obj/structure/machinery/cm_vending/gear/synth{ pixel_x = -30; @@ -8353,19 +8310,19 @@ /turf/open/floor/almayer{ icon_state = "test_floor5" }, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "Ym" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Yp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "Ys" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, @@ -8384,7 +8341,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Yv" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -8394,7 +8351,7 @@ icon_state = "S" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/engineering) +/area/golden_arrow/engineering) "Yw" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -8403,7 +8360,7 @@ /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "Yx" = ( /obj/structure/surface/table/almayer, /obj/item/trash/ceramic_plate{ @@ -8421,7 +8378,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "YA" = ( /obj/structure/machinery/light{ dir = 1 @@ -8431,10 +8388,10 @@ dir = 8; icon_state = "cargo_arrow" }, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "YB" = ( /turf/closed/wall/almayer/outer, -/area/almayer/engineering) +/area/golden_arrow/engineering) "YG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -8448,7 +8405,7 @@ /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "YK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/firealarm{ @@ -8462,7 +8419,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "YO" = ( /obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt, @@ -8478,10 +8435,10 @@ /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "YP" = ( /turf/closed/wall/almayer/outer, -/area/almayer/living/briefing) +/area/golden_arrow/briefing) "YQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -8491,12 +8448,12 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "YX" = ( /obj/effect/landmark/start/marine/medic/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "Zb" = ( /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."; @@ -8509,7 +8466,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "Zd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -8517,18 +8474,18 @@ pixel_x = 1 }, /turf/open/floor/almayer, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "Zf" = ( /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "Zk" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/hallways/port_hallway) +/area/golden_arrow/prep_hallway) "Zl" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -8537,13 +8494,13 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/squad_two) +/area/golden_arrow/squad_two) "Zw" = ( /obj/structure/largecrate/supply/generator, /turf/open/floor/almayer{ icon_state = "cargo" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) "ZB" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/med_data/laptop{ @@ -8552,46 +8509,46 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/alpha/platoon_sergeant) +/area/golden_arrow/platoon_sergeant) "ZC" = ( /turf/closed/wall/almayer, -/area/almayer/squads/alpha/squad_one) +/area/golden_arrow/squad_one) "ZI" = ( /obj/effect/landmark/start/marine/smartgunner/alpha, /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "ZJ" = ( /turf/closed/wall/almayer/outer, -/area/almayer/living/synthcloset) +/area/golden_arrow/synthcloset) "ZL" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/hangar) +/area/golden_arrow/hangar) "ZM" = ( /obj/structure/window/framed/almayer, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/living/cafeteria_port) +/area/golden_arrow/canteen) "ZR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/chem_master, /turf/open/floor/almayer{ icon_state = "sterile_green" }, -/area/almayer/medical) +/area/golden_arrow/medical) "ZU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/starboard_hallway) +/area/golden_arrow/supply) "ZV" = ( /turf/open/floor/almayer{ icon_state = "dark_sterile" }, -/area/almayer/living/cryo_cells) +/area/golden_arrow/cryo_cells) "ZX" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/engineering{ @@ -8600,7 +8557,7 @@ /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering) +/area/golden_arrow/engineering) (1,1,1) = {" Cr @@ -15523,12 +15480,12 @@ Cr Cr Cr Cr -ca -ca -ca -ca -ca -ca +SC +SC +SC +sC +sC +sC sC sC sC @@ -15675,11 +15632,11 @@ Cr Cr Cr Cr -ca +SC Xz Xz -ca -ca +sC +sC VL sC sC @@ -15827,10 +15784,10 @@ Cr Cr Cr Cr -ca +SC Xz Xz -ca +sC Ls KQ sC @@ -15979,10 +15936,10 @@ Cr Cr Cr Cr -ca +SC Xz Xz -ca +sC sC Uj sC @@ -16114,7 +16071,7 @@ Ln So KO KO -tG +Rr Kx tV ca @@ -16131,10 +16088,10 @@ Cr Cr Cr Cr -ca +SC Xz Xz -ca +sC lS KQ bw @@ -16264,7 +16221,7 @@ wz ca Xd UX -tG +Rr Ea KO Kx @@ -16272,7 +16229,7 @@ Xd ca ml UX -tG +Rr Ea KO kV @@ -16283,10 +16240,10 @@ Cr Cr Cr Cr -ca +SC Xz Xz -ca +sC mc KQ bw @@ -16887,7 +16844,7 @@ qi he eU gD -tG +Rr KO pD ug @@ -17176,8 +17133,8 @@ KO KO KO MI -tG -tG +Rr +Rr Bf ua Dc @@ -17328,7 +17285,7 @@ KO Ke al TP -tG +Rr QW Xd qi @@ -17488,8 +17445,8 @@ Wr qi Xd KO -tG -tG +Rr +Rr Xd qi lh @@ -17661,7 +17618,7 @@ qu XJ kg qu -XJ +Vp Vp Vp Vp @@ -17813,7 +17770,7 @@ Od Sy mk vk -XJ +Vp EQ gL sk @@ -17965,7 +17922,7 @@ As Vr Vr As -XJ +Vp EQ wl wl @@ -18108,7 +18065,7 @@ dJ dJ dJ dA -UA +lg Dc eY ag @@ -18117,7 +18074,7 @@ Np Np rJ As -XJ +Vp EF wl wl @@ -18260,7 +18217,7 @@ dJ dJ dJ AG -UA +lg Dc eY ag @@ -18269,7 +18226,7 @@ qT LJ fg Vr -XJ +Vp Tk wl vU @@ -18421,7 +18378,7 @@ rl ol rV Vr -XJ +Vp Tk wl FE @@ -18573,7 +18530,7 @@ rr OX sm uA -XJ +Vp rX wl FI @@ -18725,7 +18682,7 @@ Np Np rJ As -XJ +Vp Ld pw Wf @@ -18868,7 +18825,7 @@ dJ dJ dJ AG -UA +lg Dc eY ag @@ -18877,7 +18834,7 @@ FT FT sv vB -XJ +Vp EQ Bg FE @@ -19020,7 +18977,7 @@ dJ dJ dJ gh -UA +lg Dc eY ag @@ -19029,7 +18986,7 @@ WP WP WP Jk -XJ +Vp yx Bo UO @@ -19172,7 +19129,7 @@ dJ dJ dJ dB -UA +lg Dc eY XJ @@ -19181,7 +19138,7 @@ WP WP WP KY -XJ +Vp Tg wl FR @@ -19333,7 +19290,7 @@ VX VX VX vN -XJ +Vp Sd Cb Gf @@ -19485,13 +19442,13 @@ WP WP WP KY -XJ -Vp -Vp -Vp -Vp -Vp -Vp +Ui +Ui +Ui +Ui +Ui +Ui +Ui ZM Fa ZM @@ -19637,7 +19594,7 @@ WP WP WP KY -XJ +Ui Ui YK Jv @@ -19765,7 +19722,7 @@ JZ SR SR pO -Mk +Rt OH SR SR @@ -19780,7 +19737,7 @@ je Vv SR pG -UA +lg Dc eY ag @@ -19789,7 +19746,7 @@ Ob Ob Ob oL -XJ +Ui nK Cf ik @@ -19933,15 +19890,15 @@ Bj Bj Nf lg -Yb -co +Dc +eY XJ fy fL sS sS bS -XJ +Ui oM CF dO @@ -20085,15 +20042,15 @@ jf oJ Nf zJ -Yb -Gx +Dc +bf XJ Vr Np Uh Np As -XJ +Ui Pc FV Zf @@ -20236,7 +20193,7 @@ OA jg Cw Nf -DC +KO Ey lg me @@ -20245,7 +20202,7 @@ Np Np rJ As -XJ +Ui yM Dl Zf @@ -20388,16 +20345,16 @@ Pr jG xz jV -sK +lm ly -nx +ZL XJ yv As Ne tT IX -XJ +Ui Gz Dw Gk @@ -20542,14 +20499,14 @@ JJ Nf cB lE -sa +wz XJ XJ XJ PW XJ XJ -XJ +Ui tX Uv GL @@ -20677,7 +20634,7 @@ hS hS hS iX -cI +Er Rg Nf ZR @@ -20692,16 +20649,16 @@ hG jb FN Nf -DC -Yb -sa +KO +Dc +wz XJ XJ As mk uw As -XJ +Ui Ui DF oH @@ -20821,7 +20778,7 @@ ca ZL Xs QN -ca +MK MK Xv iR @@ -20829,7 +20786,7 @@ Bz qU hS RK -cI +Er vP Nf Nf @@ -20844,9 +20801,9 @@ Nf Nf Nf Nf -DC -Yb -Gx +KO +Dc +bf YP ni ry @@ -20860,10 +20817,10 @@ Ui Ui Ui Ui -qp +ZM Aw -qp -HK +ZM +Ui HK HK hR @@ -20973,7 +20930,7 @@ ca Yw Yw Yw -ca +MK MK BZ iR @@ -20981,7 +20938,7 @@ Bz OC hS pD -cI +Er Rg gE gE @@ -20997,8 +20954,8 @@ gE gE gE aw -Yb -nx +Dc +ZL YP nM Eb @@ -21294,7 +21251,7 @@ VT gE ML ny -Rr +SB nx de sa @@ -22043,7 +22000,7 @@ Cr Cr Cr Cr -ca +MK Yw Yw Yw From 4386d175193b8012998a7208cde21f30689dc059 Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 06:27:32 -0400 Subject: [PATCH 48/54] derelict almayer --- code/__DEFINES/__game.dm | 1 + code/game/machinery/vending/cm_vending.dm | 11 + .../vending/vendor_types/requisitions.dm | 15 + code/modules/almayer/machinery.dm | 15 + code/modules/cm_marines/equipment/maps.dm | 9 +- maps/derelict_almayer.json | 11 + .../derelict_almayer/derelict_almayer.dmm | 141604 +++++++++++++++ .../derelict_almayer/sprinkles/.gitkeep | 1 + tgui/public/tgui-panel.bundle.css | 4 +- 9 files changed, 141668 insertions(+), 3 deletions(-) create mode 100644 maps/derelict_almayer.json create mode 100644 maps/map_files/derelict_almayer/derelict_almayer.dmm create mode 100644 maps/map_files/derelict_almayer/sprinkles/.gitkeep diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm index a3857404b4..c888c78180 100644 --- a/code/__DEFINES/__game.dm +++ b/code/__DEFINES/__game.dm @@ -40,6 +40,7 @@ block( \ #define MAP_LV522_CHANCES_CLAIM "LV-522 Chance's Claim" // Highpop Only #define MAP_NEW_VARADERO "New Varadero"//ice colony underground but as its own map #define MAP_CHINOOK "Chinook 91 GSO" //admin level +#define MAP_DERELICT_ALMAYER "Derelict Almayer" #define GAMEMODE_WHISKEY_OUTPOST "Whiskey Outpost" #define GAMEMODE_HIVE_WARS "Hive Wars" diff --git a/code/game/machinery/vending/cm_vending.dm b/code/game/machinery/vending/cm_vending.dm index 861f5b37eb..d4dfb9b823 100644 --- a/code/game/machinery/vending/cm_vending.dm +++ b/code/game/machinery/vending/cm_vending.dm @@ -761,6 +761,12 @@ GLOBAL_LIST_EMPTY(vending_products) vendor_theme = VENDOR_THEME_USCM vend_flags = VEND_CLUTTER_PROTECTION|VEND_CATEGORY_CHECK|VEND_TO_HAND +/obj/structure/machinery/cm_vending/gear/Initialize() + . = ..() + if(length(list(z) & SSmapping.levels_by_trait(ZTRAIT_GROUND))) + malfunction() + + /obj/structure/machinery/cm_vending/gear/ui_static_data(mob/user) . = ..(user) .["vendor_type"] = "gear" @@ -778,6 +784,11 @@ GLOBAL_LIST_EMPTY(vending_products) vendor_theme = VENDOR_THEME_USCM vend_flags = VEND_CLUTTER_PROTECTION | VEND_UNIFORM_RANKS | VEND_UNIFORM_AUTOEQUIP | VEND_CATEGORY_CHECK +/obj/structure/machinery/cm_vending/clothing/Initialize() + . = ..() + if(length(list(z) & SSmapping.levels_by_trait(ZTRAIT_GROUND))) + malfunction() + /obj/structure/machinery/cm_vending/clothing/ui_static_data(mob/user) . = ..(user) .["vendor_type"] = "clothing" diff --git a/code/game/machinery/vending/vendor_types/requisitions.dm b/code/game/machinery/vending/vendor_types/requisitions.dm index 9e19ee7a32..b824e2bb6e 100644 --- a/code/game/machinery/vending/vendor_types/requisitions.dm +++ b/code/game/machinery/vending/vendor_types/requisitions.dm @@ -10,6 +10,11 @@ vendor_theme = VENDOR_THEME_USCM vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND | VEND_LOAD_AMMO_BOXES +/obj/structure/machinery/cm_vending/sorted/cargo_guns/Initialize() + . = ..() + if(length(list(z) & SSmapping.levels_by_trait(ZTRAIT_GROUND))) + malfunction() + /obj/structure/machinery/cm_vending/sorted/cargo_guns/vend_fail() return @@ -209,6 +214,11 @@ vendor_theme = VENDOR_THEME_USCM vend_flags = VEND_CLUTTER_PROTECTION | VEND_LIMITED_INVENTORY | VEND_TO_HAND | VEND_LOAD_AMMO_BOXES +/obj/structure/machinery/cm_vending/sorted/cargo_ammo/Initialize() + . = ..() + if(length(list(z) & SSmapping.levels_by_trait(ZTRAIT_GROUND))) + malfunction() + /obj/structure/machinery/cm_vending/sorted/cargo_ammo/vend_fail() return @@ -331,6 +341,11 @@ vendor_theme = VENDOR_THEME_USCM icon_state = "req_attach" +/obj/structure/machinery/cm_vending/sorted/attachments/Initialize() + . = ..() + if(length(list(z) & SSmapping.levels_by_trait(ZTRAIT_GROUND))) + malfunction() + /obj/structure/machinery/cm_vending/sorted/attachments/vend_fail() return diff --git a/code/modules/almayer/machinery.dm b/code/modules/almayer/machinery.dm index cb90db9e85..6c3944498d 100644 --- a/code/modules/almayer/machinery.dm +++ b/code/modules/almayer/machinery.dm @@ -325,3 +325,18 @@ new /obj/item/clothing/under/shorts/red(src) new /obj/item/clothing/under/shorts/blue(src) new /obj/item/clothing/under/shorts/green(src) + +/obj/structure/machinery/prop/almayer/overwatch_console + name = "Overwatch Console" + desc = "State of the art machinery for giving orders to a squad." + density = FALSE + icon = 'icons/obj/structures/machinery/computer.dmi' + icon_state = "overwatch" + +/obj/structure/machinery/prop/almayer/orbital_cannon_console + name = "\improper Orbital Cannon Console" + desc = "The console controlling the orbital cannon loading systems." + icon = 'icons/obj/structures/machinery/computer.dmi' + icon_state = "ob_console" + dir = WEST + flags_atom = ON_BORDER|CONDUCT|FPRINT diff --git a/code/modules/cm_marines/equipment/maps.dm b/code/modules/cm_marines/equipment/maps.dm index 9633d18bf3..898ce71b95 100644 --- a/code/modules/cm_marines/equipment/maps.dm +++ b/code/modules/cm_marines/equipment/maps.dm @@ -133,6 +133,12 @@ html_link = "images/9/94/New_Varadero.png" color = "red" +/obj/item/map/almayer + name = "\improper USS Almayer map" + desc = "A labeled blueprint of the USS Almayer" + html_link = "images/5/54/USS_Almayer.png" + color = "cyan" + GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps()) /proc/setup_all_maps() @@ -149,7 +155,8 @@ GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps()) MAP_CORSAT = new /obj/item/map/corsat(), MAP_KUTJEVO = new /obj/item/map/kutjevo_map(), MAP_LV522_CHANCES_CLAIM = new /obj/item/map/lv522_map(), - MAP_NEW_VARADERO = new /obj/item/map/new_varadero() + MAP_NEW_VARADERO = new /obj/item/map/new_varadero(), + MAP_DERELICT_ALMAYER = new /obj/item/map/almayer(), ) //used by marine equipment machines to spawn the correct map. diff --git a/maps/derelict_almayer.json b/maps/derelict_almayer.json new file mode 100644 index 0000000000..6f27befaee --- /dev/null +++ b/maps/derelict_almayer.json @@ -0,0 +1,11 @@ +{ + "map_name": "Derelict Almayer", + "map_path": "map_files/derelict_almayer", + "map_file": "derelict_almayer.dmm", + "webmap_url": "Almayer", + "map_item_type": "/obj/item/map/almayer", + "announce_text": "An automated distress signal has been received from the \"USS Almayer\". A response team from the ###SHIPNAME### will be dispatched shortly to investigate.", + "traits": [{ "Ground": true }], + "nightmare_path": "maps/Nightmare/maps/derelict_almayer/", + "camouflage": "classic" +} diff --git a/maps/map_files/derelict_almayer/derelict_almayer.dmm b/maps/map_files/derelict_almayer/derelict_almayer.dmm new file mode 100644 index 0000000000..5c7f6d181e --- /dev/null +++ b/maps/map_files/derelict_almayer/derelict_almayer.dmm @@ -0,0 +1,141604 @@ +//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{ + dir = 9; + icon_state = "outerhull_dir" + }, +/area/space) +"aad" = ( +/turf/open/floor/almayer_hull{ + dir = 1; + icon_state = "outerhull_dir" + }, +/area/space) +"aae" = ( +/turf/open/floor/almayer_hull{ + dir = 5; + icon_state = "outerhull_dir" + }, +/area/space) +"aaf" = ( +/turf/open/floor/almayer_hull{ + dir = 8; + icon_state = "outerhull_dir" + }, +/area/space) +"aag" = ( +/turf/open/floor/almayer_hull, +/area/space) +"aah" = ( +/turf/open/floor/almayer_hull{ + dir = 4; + icon_state = "outerhull_dir" + }, +/area/space) +"aai" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hull/upper_hull) +"aaj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop) +"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) +"aal" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"aam" = ( +/obj/structure/stairs, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/stair_clone/upper) +"aan" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"aao" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"aap" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_s) +"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{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"aar" = ( +/turf/closed/wall/almayer, +/area/almayer/hull/upper_hull/u_m_s) +"aas" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/repair_bay) +"aau" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/living/pilotbunks) +"aav" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/repair_bay) +"aaw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"aax" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/aft_hallway) +"aay" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"aaz" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"aaC" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"aaD" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"aaE" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/aft_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{ + allow_construction = 0 + }, +/area/almayer/stair_clone) +"aaG" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/aft_hallway) +"aaH" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/stair_clone/upper) +"aaI" = ( +/obj/effect/projector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/aft_hallway) +"aaJ" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/aft_hallway) +"aaK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/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{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"aaL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"aaO" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"aaW" = ( +/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{ + icon_state = "mono" + }, +/area/almayer/hallways/aft_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{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"abd" = ( +/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{ + dir = 4 + }, +/obj/structure/sign/safety/terminal{ + pixel_y = 32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"abe" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"abf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"abg" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"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) +"abk" = ( +/obj/structure/window/reinforced/toughened, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"abl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"abp" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/hull/upper_hull/u_m_s) +"abs" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/north1) +"abt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"abu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"abw" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/north1) +"abx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"abA" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_p) +"abB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"abC" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/offices/flight) +"abH" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/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) +"abM" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"abQ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/machinery/cm_vending/clothing/staff_officer_armory, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/command/cic) +"abR" = ( +/obj/item/tank/phoron, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/engineering/upper_engineering) +"abS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/alpha) +"abT" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/bravo) +"abU" = ( +/obj/structure/machinery/computer/aa_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/living/briefing) +"acf" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/living/starboard_garden) +"acg" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"ach" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_m_s) +"aci" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/chapel) +"acp" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comtech_tools, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"act" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"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) +"acz" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"acA" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"acC" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"acD" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"acE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"acF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"acG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"acH" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"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) +"acJ" = ( +/mob/living/silicon/decoy/ship_ai{ + layer = 2.98; + pixel_y = -16 + }, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"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{ + icon_state = "plate" + }, +/area/almayer/living/offices/flight) +"acN" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"acO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"acP" = ( +/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{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"acT" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"acU" = ( +/obj/structure/closet/basketball, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/basketball) +"acV" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"acY" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "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/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices/flight) +"adb" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/aft_hallway) +"adc" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/aft_hallway) +"add" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"adf" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"adg" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"adi" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/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) +"adk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"ado" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/living/starboard_garden) +"adp" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"adq" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/north1) +"adr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"adt" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"adu" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"adv" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"ady" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/basketball) +"adE" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"adF" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/living/basketball) +"adG" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/starboard_missiles) +"adH" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"adI" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"adO" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/starboard_atmos) +"adP" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"adQ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "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/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/offices/flight) +"adT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"adZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"aea" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aeb" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/starboard_hallway) +"aec" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/living/basketball) +"aee" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/offices/flight) +"aei" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/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) +"aem" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"aeo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "3" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/shipboard/brig/evidence_storage) +"aep" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/airmix) +"aeq" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"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) +"aew" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/closet/secure_closet/bar{ + name = "Success Cabinet"; + req_access_txt = "1" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"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) +"aey" = ( +/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{ + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"aez" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"aeC" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"aeD" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_p) +"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{ + dir = 10; + icon_state = "blue" + }, +/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{ + dir = 4; + icon_state = "blue" + }, +/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{ + dir = 5; + icon_state = "plating" + }, +/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{ + allow_construction = 0 + }, +/area/almayer/stair_clone) +"aeM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/living/officer_study) +"aeP" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "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{ + allow_construction = 0 + }, +/area/almayer/stair_clone/upper) +"aeU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"aeZ" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"afa" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/starboard_missiles) +"afc" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"afd" = ( +/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 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hull/lower_hull/l_f_s) +"afe" = ( +/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{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"aff" = ( +/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/repair_bay) +"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) +"afl" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"afm" = ( +/turf/open/floor/almayer_hull{ + dir = 6; + icon_state = "outerhull_dir" + }, +/area/space) +"afo" = ( +/obj/structure/safe, +/obj/item/moneybag, +/obj/item/clothing/glasses/monocle, +/obj/item/weapon/telebaton, +/obj/item/book/codebook, +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"afq" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"afr" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"afs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/basketball) +"afu" = ( +/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{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"afv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/aft_hallway) +"afx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Workshop Vendors" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/repair_bay) +"afy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"afz" = ( +/turf/open/floor/almayer/empty, +/area/almayer/hallways/vehiclehangar) +"afB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/living/starboard_garden) +"afC" = ( +/obj/docking_port/stationary/vehicle_elevator/almayer, +/turf/open/floor/almayer/empty, +/area/almayer/hallways/vehiclehangar) +"afD" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"afE" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/prison{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/officer_study) +"afH" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/cafeteria_officer) +"afI" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/cafeteria_officer) +"afJ" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/cafeteria_officer) +"afM" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/starboard_atmos) +"afN" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 10; + icon_state = "cargo" + }, +/area/almayer/engineering/starboard_atmos) +"afP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/starboard_missiles) +"afX" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/starboard) +"afZ" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cichallway) +"aga" = ( +/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/repair_bay) +"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{ + icon_state = "plate" + }, +/area/almayer/command/cichallway) +"agc" = ( +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"age" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hull/upper_hull/u_f_s) +"agf" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/living/offices/flight) +"agi" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"agj" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/commandbunks) +"agl" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"agn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"ago" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "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{ + icon_state = "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/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"agw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"agy" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"agA" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/basketball) +"agB" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/living/starboard_garden) +"agG" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"agI" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/living/officer_study) +"agJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"agK" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/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) +"agN" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/disposalpipe/down/almayer{ + dir = 1; + id = "almayerlink" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"agO" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/officer_study) +"agQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/cafeteria_officer) +"agS" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/living/starboard_garden) +"agT" = ( +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/cafeteria_officer) +"agU" = ( +/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/hull/upper_hull/u_f_s) +"agV" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/cafeteria_officer) +"agX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"agY" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/cafeteria_officer) +"aha" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + access_modified = 1; + name = "\improper Commanding Officer's Quarters"; + req_access = null; + req_access_txt = "31" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/commandbunks) +"ahb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"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) +"ahd" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"ahe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/storage/box/donkpockets, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/starboard_atmos) +"ahg" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"ahj" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/starboard_hallway) +"ahk" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"ahl" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/living/starboard_garden) +"ahn" = ( +/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/hull/upper_hull/u_a_s) +"aho" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/offices/flight) +"ahq" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"ahr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"aht" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"ahv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"ahw" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"ahx" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_m_s) +"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{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"ahB" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"ahE" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/starboard_atmos) +"ahH" = ( +/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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"ahJ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/starboard_atmos) +"ahM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/aft_hallway) +"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{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/living/offices/flight) +"ahU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_m_s) +"ahV" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/living/offices/flight) +"ahY" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/shoes/laceup{ + desc = "The height of fashion, and they're pre-polished! The name 'Bob' is written on the inside."; + pixel_y = -5 + }, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"ahZ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/door_control{ + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown Override"; + pixel_x = 8; + pixel_y = -24; + req_one_access_txt = "90;91;92" + }, +/obj/structure/machinery/door_control{ + id = "ARES Emergency"; + name = "ARES Emergency Lockdown Override"; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Override"; + pixel_x = -8; + pixel_y = -24; + req_access_txt = "1;3" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"aia" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/living/officer_study) +"aib" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/vehiclehangar) +"aic" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/living/officer_study) +"aie" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/cafeteria_officer) +"aii" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"aij" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/cafeteria_officer) +"aik" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"ail" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_s) +"aim" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"ain" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/cafeteria_officer) +"aio" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"aip" = ( +/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/hull/upper_hull/u_m_p) +"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{ + dir = 8; + icon_state = "bluecorner" + }, +/area/almayer/living/offices/flight) +"ait" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/aft_hallway) +"aiv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_m_s) +"aiw" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/starboard_atmos) +"aiy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"aiz" = ( +/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/hull/upper_hull/u_a_s) +"aiA" = ( +/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/hull/upper_hull/u_a_s) +"aiB" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"aiC" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/stern_hallway) +"aiE" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"aiF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"aiG" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"aiH" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + allow_construction = 0 + }, +/area/almayer/stair_clone/upper) +"aiP" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/living/starboard_garden) +"aiQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/almayer{ + icon_state = "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{ + allow_construction = 0 + }, +/area/almayer/stair_clone) +"aiS" = ( +/obj/structure/closet, +/obj/item/device/flashlight/pen, +/obj/item/attachable/reddot, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"aiT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"aiU" = ( +/obj/structure/surface/table/almayer, +/obj/item/card/id/visa, +/obj/item/tool/crew_monitor, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"aiV" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"aiW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"aiX" = ( +/turf/closed/wall/almayer, +/area/almayer/living/pilotbunks) +"aiZ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"ajd" = ( +/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/port_hallway) +"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, +/obj/item/storage/box/kit/honorguard, +/obj/item/storage/box/kit/honorguard, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/command/cic) +"ajp" = ( +/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{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"ajq" = ( +/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{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"ajr" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/hallways/aft_hallway) +"ajs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"ajt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"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) +"ajx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"ajy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"ajz" = ( +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"ajA" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices/flight) +"ajB" = ( +/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{ + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"ajC" = ( +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"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) +"ajF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/stern_hallway) +"ajG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/stern_hallway) +"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{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"ajJ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/cafeteria_officer) +"ajL" = ( +/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{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"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) +"ajN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"ajO" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/starboard_hallway) +"ajP" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/stern_hallway) +"ajQ" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_m_s) +"ajR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/stern_hallway) +"ajS" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"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) +"ajW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/stern_hallway) +"ajX" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/port_hallway) +"ajY" = ( +/turf/open/floor/almayer_hull{ + dir = 10; + icon_state = "outerhull_dir" + }, +/area/space) +"ajZ" = ( +/turf/open/floor/almayer_hull{ + icon_state = "outerhull_dir" + }, +/area/space) +"aka" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"akb" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"akc" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"akd" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_a_s) +"ake" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"akf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/weapon_room) +"akk" = ( +/obj/structure/machinery/door/window/westright{ + dir = 4 + }, +/obj/structure/machinery/shower{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/commandbunks) +"akl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/living/commandbunks) +"akm" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/commandbunks) +"akn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"ako" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"akp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"akr" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"aks" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/device/binoculars, +/turf/open/floor/wood/ship, +/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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"akw" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/upper_medical) +"akx" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"aky" = ( +/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{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"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{ + dir = 4; + icon_state = "sterile_green_side" + }, +/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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_two) +"akH" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"akI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"akJ" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/stern_hallway) +"akK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"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{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"akO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"akQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"akS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/lifeboat) +"akT" = ( +/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/aft_hallway) +"akU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"akV" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"akW" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/living/starboard_garden) +"akY" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/starboard_garden) +"alb" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/living/commandbunks) +"alc" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/living/commandbunks) +"ald" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"ale" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/starboard_garden) +"alf" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"ali" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "bluecorner" + }, +/area/almayer/hallways/aft_hallway) +"alj" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/device/whistle, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -17 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"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) +"all" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"alo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/obj/structure/machinery/light, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"alp" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"alq" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"als" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/hallways/aft_hallway) +"alu" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/megaphone, +/obj/item/device/radio, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"alw" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Pilot's Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/pilotbunks) +"alx" = ( +/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{ + icon_state = "redfull" + }, +/area/almayer/hallways/starboard_hallway) +"aly" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/starboard_missiles) +"alD" = ( +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"alE" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"alG" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/stern_hallway) +"alH" = ( +/turf/closed/wall/almayer/white/outer_tile, +/area/almayer/hull/upper_hull) +"alI" = ( +/obj/item/stack/cable_coil{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/trash/pistachios, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/repair_bay) +"alJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/stern_hallway) +"alK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/stern_hallway) +"alL" = ( +/turf/closed/wall/almayer, +/area/almayer/command/telecomms) +"alO" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/upper_engineering) +"alP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/stern_hallway) +"alQ" = ( +/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/repair_bay) +"alR" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"alT" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"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{ + allow_construction = 0 + }, +/area/almayer/stair_clone/upper) +"alX" = ( +/turf/open/floor/almayer, +/area/almayer/command/cic) +"alZ" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"amg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"amh" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"amj" = ( +/obj/item/reagent_container/food/drinks/cans/souto, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/repair_bay) +"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{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"amp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"amw" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"amC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"amD" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"amE" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/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{ + icon_state = "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{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"amJ" = ( +/obj/structure/largecrate/machine/bodyscanner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"amK" = ( +/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/aft_hallway) +"amL" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/largecrate, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"amN" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"amO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"amP" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"amQ" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"amR" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/item/storage/belt/utility, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"amS" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/port_hallway) +"amT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"amU" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/repair_bay) +"amW" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"amX" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"anb" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/hull/lower_hull/l_m_p) +"anc" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silvercorner" + }, +/area/almayer/hallways/aft_hallway) +"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) +"anf" = ( +/turf/open/floor/almayer{ + icon_state = "silvercorner" + }, +/area/almayer/hallways/aft_hallway) +"anh" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"ani" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"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{ + allow_construction = 0 + }, +/area/almayer/stair_clone) +"ano" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"anp" = ( +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/medical/upper_medical) +"anq" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/closet/secure_closet/guncabinet/red, +/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, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/medical/upper_medical) +"anr" = ( +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/medical/upper_medical) +"ans" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"ant" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"anu" = ( +/obj/structure/ladder{ + height = 2; + id = "AftStarboardMaint" + }, +/turf/open/floor/plating/almayer, +/area/almayer/hull/upper_hull/u_a_s) +"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{ + dir = 1 + }, +/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{ + icon_state = "sterile_green" + }, +/area/almayer/medical/hydroponics) +"anB" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"anC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/stern_hallway) +"anD" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"anG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/stern_hallway) +"anH" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"anI" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"anJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"anK" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"anL" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"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{ + dir = 8; + icon_state = "orange" + }, +/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) +"anR" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"anS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"anT" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/hallways/repair_bay) +"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" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/offices/flight) +"anV" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/engineering/upper_engineering) +"anW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"anX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"aoa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"aoc" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/port_hallway) +"aod" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"aoe" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/morgue) +"aof" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"aog" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"aoh" = ( +/obj/structure/morgue/crematorium, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"aoi" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"aol" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"aom" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"aop" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"aoq" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"aor" = ( +/obj/structure/curtain/medical, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"aos" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"aot" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) +"aou" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"aov" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"aow" = ( +/turf/open/floor/almayer{ + icon_state = "bluecorner" + }, +/area/almayer/hallways/aft_hallway) +"aox" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "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) +"aoA" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"aoB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"aoC" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"aoD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/stern_hallway) +"aoE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"aoF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"aoG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"aoH" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"aoI" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/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{ + icon_state = "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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/medical_science) +"aoN" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/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) +"aoQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"aoR" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/stern_hallway) +"aoS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"aoT" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"aoU" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/stern_hallway) +"aoV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/lifeboat_pumps/north1) +"aoW" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/upper_engineering) +"aoZ" = ( +/obj/structure/sign/prop1, +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/commandbunks) +"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) +"apc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/stern_hallway) +"apd" = ( +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/stern_hallway) +"ape" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"apf" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/stern_hallway) +"apg" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"api" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"apj" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"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) +"apl" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"apm" = ( +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"apo" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"app" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"apq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"apr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/lifeboat_pumps/north1) +"aps" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/stair_clone/upper) +"apt" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"apu" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/living/starboard_garden) +"apv" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"apA" = ( +/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/engineering_workshop/hangar) +"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{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/starboard) +"apC" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"apE" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"apI" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2; + name = "\improper Command Ladder" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull) +"apJ" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"apK" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"apL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"apM" = ( +/obj/structure/machinery/autolathe/armylathe/full, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"apO" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"apP" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/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{ + icon_state = "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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/containment) +"apT" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"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) +"apV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"apW" = ( +/obj/structure/machinery/telecomms/server/presets/common, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"apX" = ( +/obj/structure/machinery/telecomms/server/presets/medical, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"apY" = ( +/obj/structure/machinery/telecomms/server/presets/engineering, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"aqa" = ( +/obj/structure/machinery/telecomms/receiver/preset, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"aqb" = ( +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"aqc" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = -25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"aqd" = ( +/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/engineering_workshop/hangar) +"aqe" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering) +"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/disposalpipe/junction, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering) +"aqh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"aqj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering) +"aqk" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/living/starboard_garden) +"aqm" = ( +/obj/item/bedsheet/brown, +/obj/structure/bed, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 1; + icon_state = "green" + }, +/area/almayer/living/offices) +"aqp" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"aqq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "mono" + }, +/area/almayer/living/pilotbunks) +"aqx" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"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{ + icon_state = "mono" + }, +/area/almayer/living/pilotbunks) +"aqz" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/pilotbunks) +"aqD" = ( +/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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"aqF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/command/cic) +"aqG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/medical_science) +"aqI" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/living/auxiliary_officer_office) +"aqJ" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"aqK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"aqM" = ( +/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/starboard_hallway) +"aqN" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/containment/cell) +"aqS" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/containment) +"aqT" = ( +/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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"aqU" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/airoom) +"aqV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"aqW" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"aqY" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering) +"arb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"ard" = ( +/obj/structure/filingcabinet, +/obj/item/folder/yellow, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"are" = ( +/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/engineering_workshop/hangar) +"arf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "silvercorner" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "plate" + }, +/area/almayer/command/telecomms) +"arh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/command/telecomms) +"arj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/device/radio/headset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/telecomms) +"ark" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/telecomms) +"arl" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/command/telecomms) +"arm" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"arn" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"arp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/starboard_garden) +"arq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"arr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"ars" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"arw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"arz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"arC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"arE" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"arF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/command/cic) +"arG" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/command/cic) +"arH" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/engineering/upper_engineering) +"arJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"arK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"arO" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/starboard_hallway) +"arP" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/command/cic) +"arR" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/chemistry) +"arZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"asc" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/command/cic) +"ase" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/pilotbunks) +"asj" = ( +/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{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"ask" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"asl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"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{ + allow_construction = 0 + }, +/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) +"aso" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"asp" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"ast" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"asu" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/medical/upper_medical) +"asv" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"asw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"asx" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/aft_hallway) +"asy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"asA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"asB" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/bombcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"asD" = ( +/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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"asE" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/engineering_workshop/hangar) +"asF" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + name = "\improper AI Reception"; + req_access = null; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"asG" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + climbable = 0; + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"asH" = ( +/obj/structure/machinery/telecomms/bus/preset_three, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"asI" = ( +/obj/structure/machinery/telecomms/bus/preset_two, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"asJ" = ( +/obj/structure/machinery/telecomms/bus/preset_four, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"asK" = ( +/obj/structure/machinery/telecomms/bus/preset_one, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"asL" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/command/cic) +"asO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"asP" = ( +/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{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/starboard_hallway) +"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, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/command/cic) +"asR" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/command/cic) +"asS" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/starboard_garden) +"asT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"asU" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"asW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"asX" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie_delta_shared) +"asY" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"asZ" = ( +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "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{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"atd" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/sprays, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"ate" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"atf" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/telecomms) +"atg" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"ath" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door_control{ + id = "OTStore"; + name = "Shutters"; + pixel_y = -24 + }, +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"ati" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"atj" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/aft_hallway) +"atk" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "tcomms_apc"; + name = "\improper Telecommunications Power Storage" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/telecomms) +"atl" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "redfull" + }, +/area/almayer/command/cic) +"atp" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"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{ + dir = 4; + icon_state = "orange" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"atu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"atv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/upper_engineering) +"atw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"atx" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/command/cic) +"aty" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"atz" = ( +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"atA" = ( +/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/engineering_workshop/hangar) +"atC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"atD" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"atE" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OTStore"; + name = "\improper Secure Storage"; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"atF" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"atG" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"atI" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/aft_hallway) +"atJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"atK" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"atL" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"atM" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/command/cic) +"atO" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cic) +"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) +"atU" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"atV" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"atW" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/lifeboat_pumps/north1) +"atY" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"atZ" = ( +/obj/structure/machinery/door_control{ + id = "OTStore"; + name = "Shutters"; + pixel_y = 24 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"aua" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"aub" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"aud" = ( +/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/engineering_workshop/hangar) +"aue" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/port_hallway) +"auf" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/closed/wall/almayer/white/hull, +/area/almayer/command/airoom) +"aug" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"auh" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"aui" = ( +/obj/structure/machinery/telecomms/hub/preset, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"auj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"auk" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"aul" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/port_hallway) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/briefing) +"aun" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/port_hallway) +"auo" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"aup" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"aur" = ( +/obj/structure/reagent_dispensers/oxygentank{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"aus" = ( +/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/engineering_workshop/hangar) +"aut" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"auu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"auv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"auw" = ( +/obj/structure/reagent_dispensers/pacidtank{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"aux" = ( +/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/engineering_workshop/hangar) +"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{ + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering) +"auC" = ( +/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{ + icon_state = "cargo" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"auD" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"auE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"auF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"auG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"auH" = ( +/obj/structure/machinery/door_control{ + id = "tcomms_apc"; + name = "Telecommuncation Power"; + pixel_x = -25 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/telecomms) +"auI" = ( +/obj/structure/reagent_dispensers/acidtank, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"auK" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"auM" = ( +/obj/structure/reagent_dispensers/ammoniatank{ + anchored = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"auN" = ( +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"auO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"auP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"auQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/cic) +"auR" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/rifle/m41aMK1/ap, +/obj/item/ammo_magazine/rifle/m41aMK1/ap, +/obj/item/weapon/gun/rifle/m41aMK1/ap, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"auT" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/command/cic) +"auU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/upper_engineering) +"auV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/port_point_defense) +"auY" = ( +/obj/structure/reagent_dispensers/watertank{ + anchored = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"auZ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"ava" = ( +/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/engineering_workshop/hangar) +"avb" = ( +/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{ + icon_state = "cargo" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"avc" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"avd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"ave" = ( +/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{ + icon_state = "cargo" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"avi" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"avj" = ( +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"avk" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"avl" = ( +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"avm" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"avn" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"avo" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/powered/agent) +"avr" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"avs" = ( +/turf/closed/wall/biodome, +/area/almayer/powered/agent) +"avu" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/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{ + dir = 4; + icon_state = "red" + }, +/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) +"avz" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/vending/security, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/general_equipment) +"avB" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/navigation) +"avC" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/powered/agent) +"avD" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"avF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/containment) +"avG" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "sterile_green_side" + }, +/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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"avK" = ( +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"avM" = ( +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 8; + pixel_x = 17; + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/almayer_B{ + climbable = 0; + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"avN" = ( +/obj/structure/machinery/telecomms/processor/preset_two, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"avO" = ( +/obj/structure/machinery/telecomms/processor/preset_three, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"avP" = ( +/obj/structure/machinery/telecomms/processor/preset_four, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"avQ" = ( +/obj/structure/machinery/telecomms/processor/preset_one, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"avR" = ( +/obj/structure/machinery/telecomms/relay/preset/telecomms{ + listening_level = 6 + }, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"avS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/command/cic) +"avT" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"avV" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/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{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"avX" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"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{ + icon_state = "rasputin15" + }, +/area/almayer/powered/agent) +"awb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"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{ + icon_state = "plate" + }, +/area/almayer/living/starboard_garden) +"awj" = ( +/obj/structure/machinery/photocopier, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"awk" = ( +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/command/cic) +"awm" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/command/cic) +"awn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/medical/upper_medical) +"awp" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Research Armory"; + name = "\improper Armory Shutters" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/upper_medical) +"awq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"awt" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"awv" = ( +/obj/structure/machinery/computer/telecomms/monitor, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/telecomms) +"aww" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"awx" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"awE" = ( +/turf/closed/wall/almayer, +/area/almayer/command/corporateliason) +"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{ + icon_state = "redfull" + }, +/area/almayer/command/cic) +"awH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/obj/item/device/megaphone, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"awJ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"awM" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) +"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{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/hydroponics) +"awR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer{ + icon_state = "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" + }, +/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{ + icon_state = "cargo" + }, +/area/almayer/living/pilotbunks) +"awY" = ( +/turf/open/floor/plating/plating_catwalk, +/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{ + icon_state = "bluefull" + }, +/area/almayer/living/pilotbunks) +"axa" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/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{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering) +"axk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/weapon_room) +"axl" = ( +/obj/structure/machinery/door_control{ + dir = 1; + id = "Research Armory"; + name = "Research Armory"; + pixel_x = -27; + req_one_access_txt = "4;28" + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"axm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"axo" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/telecomms) +"axp" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/command/cic) +"axs" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"axu" = ( +/obj/structure/machinery/computer/telecomms/server, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/telecomms) +"axw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"axx" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"axy" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"axz" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin8" + }, +/area/almayer/hallways/hangar) +"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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"axB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"axM" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"axN" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"axQ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"axV" = ( +/obj/structure/machinery/telecomms/server/presets/command, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"axW" = ( +/obj/structure/machinery/telecomms/server/presets/security, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"aya" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering) +"ayb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"ayc" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north2) +"ayd" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering) +"aye" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"ayh" = ( +/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{ + icon_state = "orange" + }, +/area/almayer/hull/upper_hull/u_f_p) +"ayi" = ( +/obj/structure/machinery/recharger, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"ayl" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"ayn" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north2) +"ayo" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Evacuation Airlock PU-2"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"ayq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer{ + icon_state = "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 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"ays" = ( +/turf/open/floor/almayer{ + icon_state = "silvercorner" + }, +/area/almayer/command/cic) +"ayt" = ( +/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{ + icon_state = "test_floor4" + }, +/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{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/command/cic) +"ayw" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/navigation) +"ayz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/command/cic) +"ayD" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"ayE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"ayG" = ( +/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/aft_hallway) +"ayH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "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{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/cic) +"ayP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_s) +"ayQ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north2) +"ayR" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north2) +"ayT" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"ayU" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"ayV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"ayW" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/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{ + icon_state = "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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/medical_science) +"azb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/aft_hallway) +"azc" = ( +/obj/structure/machinery/computer/telecomms/traffic, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/telecomms) +"azd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/command/telecomms) +"aze" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering) +"azh" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"azi" = ( +/obj/effect/spawner/random/tool, +/obj/structure/surface/rack, +/obj/item/cell/high, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"azk" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north2) +"azl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "bluecorner" + }, +/area/almayer/living/offices/flight) +"azn" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"azo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/upper_engineering) +"azp" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/engineering/upper_engineering) +"azq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"azr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/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{ + dir = 1; + icon_state = "orange" + }, +/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{ + allow_construction = 0 + }, +/area/almayer/stair_clone) +"azA" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"azB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"azC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/almayer{ + icon_state = "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{ + allow_construction = 0 + }, +/area/almayer/stair_clone) +"azE" = ( +/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{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/port_hallway) +"azG" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"azH" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_m_p) +"azI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/port_hallway) +"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) +"azS" = ( +/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{ + dir = 8; + icon_state = "greencorner" + }, +/area/almayer/hallways/port_hallway) +"azT" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"azU" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"azV" = ( +/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"; + shuttleId = "dropship_normandy"; + disabled = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"azW" = ( +/obj/structure/machinery/door/window/westright{ + dir = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"azX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window/reinforced/toughened{ + dir = 4 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + dir = 8; + name = "Dropship Remote Control Console"; + shuttleId = "dropship_alamo"; + disabled = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"azY" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"azZ" = ( +/obj/structure/machinery/keycard_auth, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"aAa" = ( +/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{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"aAb" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"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) +"aAe" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"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{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/command/cic) +"aAl" = ( +/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{ + 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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cic) +"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{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"aAv" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"aAy" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/telecomms) +"aAA" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 4 + }, +/area/almayer/command/cic) +"aAB" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/westright, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"aAE" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"aAG" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/morgue) +"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{ + icon_state = "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{ + icon_state = "sterile_green" + }, +/area/almayer/medical/containment) +"aAW" = ( +/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{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"aAZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/telecomms) +"aBa" = ( +/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/hull/upper_hull/u_a_s) +"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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/command/telecomms) +"aBd" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/morgue) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/telecomms) +"aBg" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"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/machinery/door/firedoor/border_only/almayer, +/obj/structure/surface/table/almayer, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer{ + icon_state = "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/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/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{ + icon_state = "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) +"aBq" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "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{ + dir = 4; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"aBw" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/offices/flight) +"aBA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"aBC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/repair_bay) +"aBD" = ( +/obj/structure/closet/basketball, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "logo_c" + }, +/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{ + icon_state = "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{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/command/cic) +"aBW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silvercorner" + }, +/area/almayer/command/cichallway) +"aBX" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/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 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"aCd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"aCf" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/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/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{ + icon_state = "silvercorner" + }, +/area/almayer/command/cic) +"aCl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"aCo" = ( +/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{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/morgue) +"aCp" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"aCt" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/medical_science) +"aCv" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "cl_shutters 2"; + name = "\improper Privacy Shutters" + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/corporateliason) +"aCw" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/medical/morgue) +"aCC" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 10; + icon_state = "sterile_green_side" + }, +/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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/containment) +"aCX" = ( +/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/aft_hallway) +"aCZ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "silver" + }, +/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{ + icon_state = "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{ + icon_state = "orangecorner" + }, +/area/almayer/command/telecomms) +"aDe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering) +"aDg" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"aDh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering) +"aDi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"aDj" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"aDk" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"aDm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering) +"aDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"aDp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/hallways/aft_hallway) +"aDr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"aDs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"aDv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"aDx" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"aDz" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"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{ + icon_state = "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{ + icon_state = "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{ + dir = 8; + icon_state = "orangecorner" + }, +/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) +"aDF" = ( +/obj/structure/platform, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"aDH" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/cic) +"aDO" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"aDQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/command/lifeboat) +"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{ + dir = 10; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"aDX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/containment{ + dir = 4 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"aDZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/stern_hallway) +"aEe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/upper_medical) +"aEf" = ( +/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/aft_hallway) +"aEg" = ( +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/command/lifeboat) +"aEi" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/morgue) +"aEj" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/helmet/marine/pilot, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/offices/flight) +"aEk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 4; + pixel_y = 17 + }, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 4 + }, +/obj/structure/machinery/computer/card{ + dir = 4; + pixel_y = -16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"aEm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"aEp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/stern_hallway) +"aEA" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/command/cic) +"aEB" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/command/cic) +"aEC" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"aED" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/command/cic) +"aEG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/command/cic) +"aEI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"aEJ" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"aEK" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"aEM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"aEN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/morgue) +"aEO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/morgue) +"aEQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "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) +"aEV" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"aEW" = ( +/turf/closed/wall/almayer, +/area/almayer/living/numbertwobunks) +"aEX" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "bluecorner" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"aFa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/containment) +"aFf" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/command/telecomms) +"aFi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/telecomms) +"aFj" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/numbertwobunks) +"aFl" = ( +/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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"aFo" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/numbertwobunks) +"aFp" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/hull/upper_hull/u_f_p) +"aFq" = ( +/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{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/hull/upper_hull/u_f_p) +"aFr" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"aFt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"aFu" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"aFy" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"aFA" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering) +"aFB" = ( +/obj/structure/closet/toolcloset, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering) +"aFD" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"aFF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"aFI" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"aFJ" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"aFN" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = list(2,34,30) + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_s) +"aFV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/stern_hallway) +"aFW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/stern_hallway) +"aGb" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge1" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cichallway) +"aGc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"aGd" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "greencorner" + }, +/area/almayer/hallways/aft_hallway) +"aGg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cichallway) +"aGn" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"aGq" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "blue" + }, +/area/almayer/command/cic) +"aGr" = ( +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"aGt" = ( +/turf/open/floor/almayer, +/area/almayer/command/corporateliason) +"aGv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"aGz" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "cryo curtain" + }, +/turf/open/floor/plating, +/area/almayer/engineering/port_atmos) +"aGC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"aGD" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"aGH" = ( +/obj/structure/machinery/computer/ordercomp, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"aGN" = ( +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"aGO" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"aGP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"aGQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"aGR" = ( +/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{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"aGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "bluecorner" + }, +/area/almayer/living/basketball) +"aGV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/numbertwobunks) +"aGW" = ( +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/morgue) +"aGX" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/morgue) +"aGY" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/numbertwobunks) +"aGZ" = ( +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/numbertwobunks) +"aHa" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/morgue) +"aHe" = ( +/turf/closed/wall/almayer, +/area/almayer/command/lifeboat) +"aHk" = ( +/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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/numbertwobunks) +"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) +"aHo" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hull/upper_hull/u_f_p) +"aHq" = ( +/turf/closed/wall/almayer, +/area/almayer/command/computerlab) +"aHr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"aHt" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"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" + }, +/turf/open/floor/almayer{ + icon_state = "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" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering) +"aHB" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hull/upper_hull/u_f_p) +"aHK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"aHM" = ( +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/engineering/port_atmos) +"aHQ" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"aHR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/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) +"aHU" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"aHX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/numbertwobunks) +"aHY" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/shipboard/starboard_missiles) +"aHZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"aIa" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"aIb" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hull/upper_hull/u_f_p) +"aIe" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"aIf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"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{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"aIo" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/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{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"aIr" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"aIv" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"aIw" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"aIx" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"aIB" = ( +/obj/structure/flora/bush/ausbushes/var3/fullgrass, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"aID" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/living/numbertwobunks) +"aIS" = ( +/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{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"aIT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + access_modified = 1; + dir = 2; + name = "Telecommunications"; + req_access_txt = "6" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/telecomms) +"aIU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"aIV" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/engineering/upper_engineering) +"aIX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/tankerbunks) +"aIZ" = ( +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_m_s) +"aJa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/captain_mess) +"aJd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"aJf" = ( +/obj/structure/machinery/floodlight, +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/upper_engineering) +"aJh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/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{ + dir = 1; + icon_state = "orange" + }, +/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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"aJk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"aJl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/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{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/containment) +"aJp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "blue" + }, +/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{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering) +"aJs" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"aJw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"aJz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/main_office) +"aJG" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "blue" + }, +/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{ + dir = 5; + icon_state = "plating" + }, +/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) +"aJL" = ( +/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/hull/upper_hull/u_m_s) +"aJM" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_m_p) +"aJU" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "silver" + }, +/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{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"aKn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/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{ + dir = 1; + icon_state = "silver" + }, +/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"; + indestructible = 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"; + indestructible = 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/no_build{ + icon_state = "ai_floors" + }, +/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{ + dir = 1; + icon_state = "silvercorner" + }, +/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{ + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"aKz" = ( +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"aKB" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"aKC" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"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{ + dir = 1; + icon_state = "silver" + }, +/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{ + icon_state = "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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/pilotbunks) +"aKI" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"aKJ" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "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{ + icon_state = "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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/starboard_point_defense) +"aKU" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/starboard_point_defense) +"aKV" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/starboard_point_defense) +"aKW" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hull/lower_hull/l_m_s) +"aLa" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"aLd" = ( +/turf/closed/wall/almayer, +/area/almayer/hull/lower_hull) +"aLf" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"aLk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"aLl" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/numbertwobunks) +"aLt" = ( +/obj/structure/surface/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/living/numbertwobunks) +"aLB" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/starboard_hallway) +"aLC" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_m_s) +"aLE" = ( +/obj/docking_port/stationary/emergency_response/external/hangar_starboard{ + dwidth = 8 + }, +/turf/open/space, +/area/space) +"aLF" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"aLG" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"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) +"aLQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"aLS" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"aLT" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/alpha) +"aLW" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_point_defense) +"aLX" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/aft_hallway) +"aLZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/wy, +/obj/structure/machinery/computer/cameras/containment{ + dir = 4; + layer = 2.981; + name = "Research Cameras"; + pixel_y = 16 + }, +/obj/item/clothing/accessory/stethoscope, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/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{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"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{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"aMh" = ( +/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/hull/upper_hull) +"aMi" = ( +/obj/structure/ladder{ + height = 2; + id = "cicladder4" + }, +/turf/open/floor/plating/almayer, +/area/almayer/hull/upper_hull) +"aMl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hallways/aft_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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"aMr" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"aMs" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/squads/alpha_bravo_shared) +"aMz" = ( +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"aMB" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"aMC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/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{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering) +"aMH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aMM" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/starboard_hallway) +"aMO" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha_bravo_shared) +"aMP" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"aMU" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"aMV" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/starboard_hallway) +"aMY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/hangar) +"aNc" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"aNe" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"aNi" = ( +/turf/closed/wall/almayer, +/area/almayer/living/chapel) +"aNj" = ( +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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) +"aNn" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"aNs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"aNw" = ( +/obj/structure/machinery/door_control{ + id = "safe_armory"; + name = "Hangar Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_f_s) +"aNx" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha_bravo_shared) +"aNG" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/hallways/starboard_hallway) +"aNI" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/alpha) +"aNO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"aNQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aNT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aNY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/containment) +"aOd" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "sterile_green_side" + }, +/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{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"aOg" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"aOq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/telecomms) +"aOr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/telecomms) +"aOs" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "cargo" + }, +/area/almayer/command/telecomms) +"aOy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/squads/alpha) +"aOz" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/squads/alpha) +"aOB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"aOD" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"aOE" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north2) +"aOF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"aOG" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"aOH" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"aOK" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"aOL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"aOM" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/shipboard/starboard_point_defense) +"aOP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering) +"aOR" = ( +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"aOS" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/stern_hallway) +"aOU" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north2) +"aOV" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/window/reinforced, +/turf/open/floor/prison{ + icon_state = "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{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering) +"aOY" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"aPa" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"aPb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"aPf" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"aPi" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"aPj" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"aPm" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/aft_hallway) +"aPn" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/alpha) +"aPr" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/command/lifeboat) +"aPy" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/starboard_umbilical) +"aPz" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/lifeboat) +"aPB" = ( +/turf/open/floor/almayer{ + icon_state = "emerald" + }, +/area/almayer/command/cic) +"aPD" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"aPE" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"aPI" = ( +/turf/open/floor/almayer{ + icon_state = "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) +"aPX" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"aPY" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_umbilical) +"aPZ" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_umbilical) +"aQb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"aQg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "emerald" + }, +/area/almayer/command/cic) +"aQo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/stern_hallway) +"aQp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"aQr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"aQs" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/hull/upper_hull/u_f_p) +"aQt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"aQv" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/starboard_umbilical) +"aQz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha) +"aQW" = ( +/obj/structure/machinery/vending/cola{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"aRd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/westright, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/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{ + icon_state = "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{ + icon_state = "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) +"aRp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/lifeboat) +"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{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"aRr" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/hull/upper_hull/u_f_p) +"aRt" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emeraldcorner" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"aRx" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"aRC" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"aRD" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/corporateliason) +"aRE" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"aRF" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + dir = 2; + name = "Morgue Processing"; + req_access_txt = "25"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/morgue) +"aRG" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 12; + pixel_y = -5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"aRJ" = ( +/obj/structure/ladder{ + height = 2; + id = "med1" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/refridgeration{ + pixel_x = -17; + pixel_y = 7 + }, +/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) +"aRP" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/squads/bravo) +"aRS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"aRV" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"aRX" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"aRZ" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/squads/bravo) +"aSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/bravo) +"aSb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"aSh" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/item/prop/helmetgarb/helmet_nvg/cosmetic, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"aSl" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/medical_science) +"aSm" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"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{ + icon_state = "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) +"aSq" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/captain_mess) +"aSr" = ( +/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{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/starboard_hallway) +"aSt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/chem_dispenser/soda/beer, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/captain_mess) +"aSv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"aSx" = ( +/obj/structure/machinery/vending/dinnerware, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/captain_mess) +"aSy" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"aSz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/stern_hallway) +"aSA" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"aSB" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"aSC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"aSE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"aSH" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/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{ + icon_state = "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{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/operating_room_two) +"aSP" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"aSS" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/perma) +"aSY" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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) +"aTf" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"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{ + dir = 1; + icon_state = "silver" + }, +/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) +"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{ + dir = 5; + icon_state = "green" + }, +/area/almayer/living/offices) +"aTq" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_umbilical) +"aTr" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/living/offices) +"aTv" = ( +/obj/structure/machinery/cm_vending/clothing/marine/bravo{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/bravo) +"aTw" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/tl, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/bravo) +"aTx" = ( +/obj/structure/machinery/power/apc, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"aTy" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"aTB" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/captain_mess) +"aTE" = ( +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/captain_mess) +"aTG" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/captain_mess) +"aTL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"aTQ" = ( +/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{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"aTR" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_p) +"aTS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/stern_hallway) +"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) +"aTV" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/cells) +"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{ + dir = 4; + icon_state = "green" + }, +/area/almayer/living/offices) +"aTZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/living/offices) +"aUa" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"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 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"aUi" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "bluefull" + }, +/area/almayer/living/captain_mess) +"aUw" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"aUx" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/lower_engineering) +"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{ + icon_state = "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{ + icon_state = "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{ + dir = 10; + icon_state = "green" + }, +/area/almayer/living/offices) +"aUY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"aUZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"aVd" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"aVf" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/living/bridgebunks) +"aVi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "bluefull" + }, +/area/almayer/living/captain_mess) +"aVl" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/lower_engineering) +"aVo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/engine, +/area/almayer/engineering/airmix) +"aVp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower_engineering) +"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{ + icon_state = "kitchen" + }, +/area/almayer/living/captain_mess) +"aVt" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"aVC" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"aVF" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/command/telecomms) +"aVG" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"aVH" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/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{ + icon_state = "bluefull" + }, +/area/almayer/command/cichallway) +"aVL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"aVR" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cichallway) +"aVU" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"aVW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/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" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/bridgebunks) +"aVY" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"aWb" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/engineering/ce_room) +"aWc" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/engineering/port_atmos) +"aWd" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/stern_hallway) +"aWf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"aWk" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"aWl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"aWm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"aWn" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"aWr" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/lower_engineering) +"aWs" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"aWt" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"aWu" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"aWw" = ( +/obj/structure/window/framed/almayer, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/lifeboat_pumps/south1) +"aWA" = ( +/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/almayer{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/offices) +"aWF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/offices) +"aWH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"aWM" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"aWR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"aWS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"aWT" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"aXh" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"aXj" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"aXx" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/engineering/port_atmos) +"aXE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/stern_hallway) +"aXQ" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_p) +"aXS" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"aXT" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -25 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/stern_hallway) +"aYc" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"aYd" = ( +/obj/structure/dropship_equipment/medevac_system, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/hangar) +"aYj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/stern_hallway) +"aYm" = ( +/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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"aYn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/aft_hallway) +"aYp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cl_shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/command/corporateliason) +"aYq" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/living/starboard_garden) +"aYr" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"aYs" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/living/starboard_garden) +"aYt" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"aYu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"aYz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/hangar) +"aYD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/stern_hallway) +"aYE" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south2) +"aYI" = ( +/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/starboard_hallway) +"aYO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"aYQ" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/operating_room_one) +"aYR" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_two) +"aYT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"aYV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"aYW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"aYX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"aYY" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"aYZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"aZg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"aZi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"aZl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"aZm" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"aZn" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_a_s) +"aZr" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"aZs" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"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) +"aZB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_umbilical) +"aZC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"aZE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"aZF" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/stair_clone/upper) +"aZH" = ( +/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/stern_hallway) +"aZJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"aZK" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"aZM" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/turf/open/floor/almayer{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"aZO" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"aZP" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"aZQ" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"aZR" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"aZV" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"aZW" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"aZX" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"aZY" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/hangar) +"baa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/obj/structure/machinery/faxmachine/corporate/liaison, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"bac" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"bad" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"baf" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"bag" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_one) +"bai" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"bal" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"baq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"bar" = ( +/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/starboard_hallway) +"bat" = ( +/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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"baw" = ( +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"bax" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"baB" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"baD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"baI" = ( +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"baM" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"baN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"baX" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"baY" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"baZ" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/lower_medical_lobby) +"bbd" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"bbg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"bbh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"bbi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"bbj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"bbk" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/starboard_hallway) +"bbl" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/starboard_hallway) +"bbm" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/starboard_hallway) +"bbn" = ( +/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, +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_umbilical) +"bbp" = ( +/obj/effect/projector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/aft_hallway) +"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) +"bbv" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"bbx" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bby" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/starboard_point_defense) +"bbz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/starboard_point_defense) +"bbA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/starboard_point_defense) +"bbB" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/starboard_hallway) +"bbC" = ( +/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/starboard_hallway) +"bbL" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"bbO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"bbR" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"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) +"bbX" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"bbY" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/alpha, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bcc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bcm" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/hangar) +"bco" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bcz" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/chemistry) +"bcA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/chemistry) +"bcB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/chemistry) +"bcD" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/chemistry) +"bcE" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"bcK" = ( +/obj/structure/machinery/smartfridge/chemistry, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_one) +"bcP" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_two) +"bcR" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_one) +"bcV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_two) +"bcZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/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{ + dir = 4; + icon_state = "sterile_green_side" + }, +/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) +"bdi" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"bdj" = ( +/turf/open/floor/almayer, +/area/almayer/squads/req) +"bdk" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"bdn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bdo" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_s) +"bdr" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"bds" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/alpha, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"bdv" = ( +/obj/structure/machinery/cm_vending/clothing/leader/alpha, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"bdw" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/starboard_point_defense) +"bdz" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/smart, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/alpha) +"bdA" = ( +/obj/structure/machinery/cm_vending/clothing/medic/alpha, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"bdC" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"bdD" = ( +/obj/structure/machinery/cm_vending/clothing/engi/alpha, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bdO" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bdU" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + allow_construction = 0 + }, +/area/almayer/stair_clone) +"bea" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"beg" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bei" = ( +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"bej" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/chemistry) +"bek" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"ben" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"bet" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/chemistry) +"bev" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_one) +"bew" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"bez" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/operating_room_one) +"beB" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"beE" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"beG" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"beH" = ( +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"beI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/alpha) +"beS" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/engineer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/alpha) +"beT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"beU" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"beV" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"beW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"beZ" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"bfb" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bfc" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"bfl" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/living/cryo_cells) +"bfm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/living/cryo_cells) +"bfn" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha_bravo_shared) +"bfo" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/living/cryo_cells) +"bfs" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/engineering/lower_engineering) +"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{ + dir = 4; + icon_state = "redcorner" + }, +/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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"bfx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/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{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"bfA" = ( +/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{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"bfC" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"bfD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"bfE" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bfP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"bfV" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bga" = ( +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/hallways/starboard_hallway) +"bgc" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"bgj" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bgk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/chemistry) +"bgl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/chemistry) +"bgm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_two) +"bgs" = ( +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_two) +"bgt" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/operating_room_two) +"bgu" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/operating_room_two) +"bgz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_one) +"bgA" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_one) +"bgG" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/almayer/medical/chemistry) +"bgH" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bgK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/chapel) +"bgO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"bgP" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "test_floor5" + }, +/area/almayer/squads/req) +"bgU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"bgY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"bhg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/living/cryo_cells) +"bhh" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "n_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_umbilical) +"bhn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"bho" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"bhq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"bhr" = ( +/obj/structure/shuttle/part/dropship2/lower_right_wall, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"bht" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower_engineering) +"bhw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower_engineering) +"bhx" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/chapel) +"bhB" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/engine_core) +"bhC" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bhD" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_s) +"bhG" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"bhJ" = ( +/obj/structure/machinery/cm_vending/clothing/staff_officer{ + density = 0; + pixel_x = -30 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/bridgebunks) +"bhM" = ( +/obj/structure/safe, +/obj/item/coin/platinum, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/clothing/accessory/storage/holster, +/obj/item/weapon/gun/pistol/es4, +/obj/item/ammo_magazine/pistol/es4, +/obj/item/ammo_magazine/pistol/es4, +/obj/item/clothing/suit/armor/bulletproof, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"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) +"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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/chemistry) +"bit" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"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, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/chemistry) +"biy" = ( +/obj/structure/pipes/unary/freezer, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/cryo_tubes) +"biA" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_three) +"biB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull) +"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{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"biL" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north2) +"biT" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/living/starboard_garden) +"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) +"bja" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) +"bjb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"bjd" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/engineering/lower_engineering) +"bje" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"bjg" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/lower_engineering) +"bjl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower_engineering) +"bjn" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bjs" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"bju" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"bjy" = ( +/obj/docking_port/stationary/emergency_response/port3, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_p) +"bjA" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/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{ + icon_state = "cargo_arrow" + }, +/area/almayer/living/offices) +"bjI" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"bjJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"bjL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/hallways/starboard_umbilical) +"bjM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_umbilical) +"bjN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/starboard_umbilical) +"bjO" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/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 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_umbilical) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bkd" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bkg" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/spec, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/alpha) +"bkh" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bks" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bkt" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"bky" = ( +/obj/structure/machinery/cryo_cell, +/obj/structure/pipes/standard/cap/hidden, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lockerroom) +"bkA" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/chemistry) +"bkD" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/vehiclehangar) +"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) +"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{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lockerroom) +"bkQ" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"bkR" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"bkT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"bkU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/cryo_cells) +"bkY" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"bkZ" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/engineering_workshop) +"blb" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/stern_hallway) +"bld" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower_engineering) +"blf" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"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{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"bll" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"blm" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bln" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 3; + pixel_y = 27 + }, +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"blo" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"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{ + icon_state = "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 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"blA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"blB" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"blJ" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lockerroom) +"bmb" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "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{ + icon_state = "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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"bmi" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/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{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/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{ + icon_state = "greenfull" + }, +/area/almayer/living/offices) +"bmn" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_lobby) +"bmr" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"bmu" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_umbilical) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"bmw" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/starboard_umbilical) +"bmx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_umbilical) +"bmy" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/starboard_umbilical) +"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{ + dir = 1; + icon_state = "silver" + }, +/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{ + icon_state = "plating_striped" + }, +/area/almayer/squads/req) +"bmC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"bmD" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/squads/req) +"bmF" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"bmM" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"bmN" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop) +"bmO" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"bmP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"bmR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"bmT" = ( +/obj/structure/shuttle/part/dropship2/transparent/nose_top_left, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"bmW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"bmX" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/living/offices) +"bnc" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 9"; + buildstate = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bne" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_s) +"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{ + dir = 5; + icon_state = "green" + }, +/area/almayer/living/offices) +"bni" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"bny" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/bravo) +"bnD" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"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{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/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{ + icon_state = "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{ + icon_state = "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{ + dir = 4; + icon_state = "sterile_green_side" + }, +/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/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 6; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"bob" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"bof" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_four) +"bop" = ( +/obj/structure/machinery/cm_vending/clothing/military_police{ + density = 0; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/shipboard/brig/general_equipment) +"boq" = ( +/obj/structure/bed/chair/comfy/alpha, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"bot" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_umbilical) +"bou" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_umbilical) +"boy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 1; + icon_state = "cargo_arrow" + }, +/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{ + icon_state = "mono" + }, +/area/almayer/squads/req) +"boC" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"boH" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"boI" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop) +"boL" = ( +/turf/open/floor/almayer, +/area/almayer/living/starboard_garden) +"boN" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/engineering_particle_accelerator, +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"boU" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"boY" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer{ + icon_state = "greenfull" + }, +/area/almayer/living/offices) +"boZ" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"bpa" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/port_missiles) +"bpe" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"bph" = ( +/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/corporateliason) +"bpj" = ( +/obj/structure/dropship_equipment/fulton_system, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"bpz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/chemistry) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/bravo) +"bpH" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/engineer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/bravo) +"bpJ" = ( +/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/hull/lower_hull/l_a_p) +"bpK" = ( +/obj/structure/machinery/door/airlock/almayer/marine/alpha/sl, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/alpha) +"bpL" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/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, +/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{ + dir = 1; + icon_state = "green" + }, +/area/almayer/squads/req) +"bpU" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_umbilical) +"bpV" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/cryo_cells) +"bpW" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_umbilical) +"bpX" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/engineering_workshop) +"bpY" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/clipboard, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"bpZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/crap, +/obj/item/tool/crowbar, +/obj/structure/machinery/cell_charger, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"bqa" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop) +"bqe" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop) +"bqf" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"bqm" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"bqo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"bqp" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"bqw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"bqy" = ( +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"bqF" = ( +/obj/structure/dropship_equipment/fuel/fuel_enhancer, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/hangar) +"bqG" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/hull/upper_hull/u_m_p) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_lobby) +"bqL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"bqN" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) +"bqR" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "sterile_green_side" + }, +/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) +"bqZ" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"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{ + icon_state = "redfull" + }, +/area/almayer/shipboard/starboard_missiles) +"bri" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/req) +"brj" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/squads/req) +"brn" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/bravo) +"brp" = ( +/obj/structure/supply_drop/bravo, +/turf/open/floor/plating, +/area/almayer/squads/req) +"brr" = ( +/obj/structure/machinery/cm_vending/clothing/medic/bravo, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"brs" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"brt" = ( +/obj/structure/machinery/cm_vending/clothing/engi/bravo, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"brv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"brw" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"brx" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop) +"bry" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"brA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/bravo) +"brC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"brH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"brI" = ( +/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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"brJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"brO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/hallways/starboard_umbilical) +"brP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_umbilical) +"brQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/starboard_umbilical) +"brS" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"brW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"brX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"brY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bsc" = ( +/obj/structure/machinery/computer/skills{ + req_one_access_txt = "200" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliason) +"bsd" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/machinery/door_control{ + id = "cl_shutters"; + name = "Privacy Shutters"; + pixel_x = -5; + pixel_y = 6; + req_access_txt = "200" + }, +/obj/structure/machinery/door_control{ + id = "RoomDivider"; + name = "Room Divider"; + pixel_x = -5; + pixel_y = -3; + req_access_txt = "200" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliason) +"bse" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"bsj" = ( +/obj/structure/machinery/line_nexter/med{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"bsk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"bsF" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"bsG" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/living/cryo_cells) +"bsJ" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/req) +"bsK" = ( +/obj/effect/landmark/supply_elevator, +/turf/open/floor/almayer/empty, +/area/supply/station) +"bsL" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "supply_elevator_railing" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/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{ + icon_state = "greenfull" + }, +/area/almayer/living/offices) +"bsO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"bsP" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"bsS" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/bravo, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"bsT" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"bsU" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"bsV" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"bsW" = ( +/obj/structure/machinery/cm_vending/clothing/leader/bravo, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"bsX" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/starboard_hallway) +"bsZ" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"btc" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/squads/alpha) +"btk" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"btm" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"btn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"btp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_umbilical) +"btr" = ( +/obj/structure/closet/boxinggloves, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"btz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliason) +"btC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "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) +"btX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/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{ + dir = 8; + icon_state = "red" + }, +/area/almayer/living/briefing) +"bua" = ( +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/main_office) +"buc" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/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{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/operating_room_one) +"buj" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_one) +"buk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"buq" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bur" = ( +/obj/structure/prop/almayer/missile_tube, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"buv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "green" + }, +/area/almayer/living/offices) +"buD" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"buH" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"buI" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"buJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"buK" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer, +/obj/item/device/radio, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"buM" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/bravo, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"buO" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"buQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/working_joe{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"buS" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"buU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"buW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"buX" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"bvb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"bvc" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/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 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"bvd" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"bve" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bvf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bvl" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/corporateliason) +"bvr" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"bvx" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"bvz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_one) +"bvF" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/living/cryo_cells) +"bvI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"bvK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop) +"bvL" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop) +"bvO" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"bvQ" = ( +/obj/structure/pipes/unary/outlet_injector, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"bvS" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull) +"bvT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_umbilical) +"bvU" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/command/corporateliason) +"bvV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_umbilical) +"bvY" = ( +/obj/structure/machinery/door_control{ + id = "cl_shutters 2"; + name = "Quarters Shutters"; + pixel_x = -25; + pixel_y = 23; + req_access_txt = "200" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"bwc" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/squads/req) +"bwd" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"bwe" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "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/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"bwh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha) +"bwj" = ( +/obj/structure/pipes/standard/simple/visible, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bwm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bwn" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"bwF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"bwH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"bwQ" = ( +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_f_s) +"bwR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = -4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/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{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"bxd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"bxf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "mono" + }, +/area/almayer/squads/req) +"bxk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"bxm" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/cryo_cells) +"bxn" = ( +/obj/structure/target, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/cryo_cells) +"bxo" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"bxr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop) +"bxs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"bxx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"bxB" = ( +/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/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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"bxD" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"bxE" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower_engineering) +"bxF" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower_engineering) +"bxG" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"bxH" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"bxI" = ( +/obj/structure/pipes/binary/pump/on{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"bxX" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"byb" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_lobby) +"byc" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/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{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/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{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_four) +"byg" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"byh" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"byk" = ( +/obj/structure/pipes/valve/digital/open{ + dir = 4 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"byl" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/obj/structure/machinery/meter, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/engineering/lower_engineering) +"bym" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"byp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliason) +"byq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/corporateliason) +"byr" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bys" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"byu" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/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{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/cryo_cells) +"byz" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"byA" = ( +/obj/structure/machinery/alarm/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop) +"byC" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"byD" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"byF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"byI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"byJ" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/engineering/lower_engineering) +"byK" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 5 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/engineering/lower_engineering) +"byL" = ( +/obj/structure/machinery/meter, +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower_engineering) +"byM" = ( +/obj/structure/pipes/standard/simple/hidden/universal{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"byN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"byO" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"byQ" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"byR" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"byY" = ( +/obj/structure/bed, +/obj/item/toy/farwadoll{ + pixel_x = 5 + }, +/obj/item/clothing/under/redpyjamas, +/obj/item/bedsheet/orange, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"bzg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lockerroom) +"bzj" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"bzo" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_four) +"bzs" = ( +/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/corporateliason) +"bzy" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/vehiclehangar) +"bzz" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer, +/area/almayer/shipboard/starboard_missiles) +"bzA" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"bzD" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "tcomms" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/telecomms) +"bzH" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"bzI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/cryo_cells) +"bzK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"bzP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower_engineering) +"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{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"bzS" = ( +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/chemistry) +"bzU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/engine_core) +"bzV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"bzW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"bzX" = ( +/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 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bzY" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"bAa" = ( +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/starboard_hallway) +"bAd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/squads/alpha) +"bAe" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 1 + }, +/area/almayer/command/lifeboat) +"bAf" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower_engineering) +"bAg" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"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) +"bAr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"bAs" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/weapon_room) +"bAu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 1; + name = "\improper High Security Storage" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/securestorage) +"bAC" = ( +/obj/structure/shuttle/part/dropship2/transparent/nose_center, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"bAF" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"bAH" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"bAJ" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/living/briefing) +"bAK" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bAM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"bAN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bAP" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bAQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"bAV" = ( +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/starboard_hallway) +"bAX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/starboard_hallway) +"bAY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/cryo_cells) +"bAZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/auxiliary_officer_office) +"bBa" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/port_hallway) +"bBb" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/starboard_hallway) +"bBc" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/living/cryo_cells) +"bBg" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/alpha) +"bBh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"bBi" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/liaison_suit/formal, +/obj/item/clothing/under/liaison_suit, +/obj/item/clothing/under/liaison_suit/outing, +/obj/item/clothing/under/liaison_suit/suspenders, +/obj/item/clothing/under/blackskirt{ + desc = "A stylish skirt, in a business-black and red colour scheme."; + name = "liaison's skirt" + }, +/obj/item/clothing/under/suit_jacket/charcoal{ + desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike."; + name = "liaison's black suit" + }, +/obj/item/clothing/under/suit_jacket/navy{ + desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants."; + name = "liaison's navy suit" + }, +/obj/item/clothing/under/suit_jacket/trainee, +/obj/item/clothing/under/liaison_suit/charcoal, +/obj/item/clothing/under/liaison_suit/outing/red, +/obj/item/clothing/under/liaison_suit/blazer, +/obj/item/clothing/suit/storage/snow_suit/liaison, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/marine/dress, +/obj/item/clothing/glasses/sunglasses/big, +/obj/item/clothing/accessory/blue, +/obj/item/clothing/accessory/red, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"bBl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"bBm" = ( +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/engineering/lower_engineering) +"bBp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower_engineering) +"bBq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"bBu" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bBx" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bBy" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bBz" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bBA" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/weapon_room) +"bBB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/vehiclehangar) +"bBC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"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{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"bBY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"bCg" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"bCj" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/port_hallway) +"bCl" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_three) +"bCm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_three) +"bCo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"bCu" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"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{ + icon_state = "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{ + icon_state = "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{ + dir = 4; + icon_state = "green" + }, +/area/almayer/squads/req) +"bCD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/living/cryo_cells) +"bCE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"bCF" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"bCG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"bCH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull) +"bCI" = ( +/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_engineering) +"bCJ" = ( +/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_engineering) +"bCM" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/cryo_cells) +"bCN" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/cryo_cells) +"bCO" = ( +/obj/item/tool/kitchen/tray{ + layer = 2.9 + }, +/obj/item/reagent_container/food/snacks/carpmeat{ + layer = 3.3 + }, +/obj/item/reagent_container/food/snacks/carpmeat{ + layer = 3.3 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"bCP" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"bCQ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bCR" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_p) +"bCS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/squads/alpha) +"bCW" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/starboard_hallway) +"bCY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/weapon_room) +"bCZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/weapon_room) +"bDe" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"bDn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/closed/wall/almayer, +/area/almayer/hallways/hangar) +"bDs" = ( +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"bDv" = ( +/obj/structure/machinery/cm_vending/clothing/medical_crew, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lockerroom) +"bDx" = ( +/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{ + icon_state = "redfull" + }, +/area/almayer/hallways/port_hallway) +"bDD" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/starboard_garden) +"bDF" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/weapon_room/notunnel) +"bDH" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "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 = "19;27;22" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/cryo_cells) +"bDO" = ( +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/shipboard/weapon_room) +"bDP" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"bDQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"bDS" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"bDT" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"bDV" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"bDW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"bDZ" = ( +/obj/structure/closet/crate/internals, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"bEa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/living/cryo_cells) +"bEb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/living/cryo_cells) +"bEc" = ( +/obj/structure/machinery/computer/supplycomp, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"bEd" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/living/cryo_cells) +"bEg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 1; + icon_state = "green" + }, +/area/almayer/squads/req) +"bEi" = ( +/obj/structure/supply_drop/alpha, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/squads/req) +"bEj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"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) +"bEn" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"bEo" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"bEp" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/squads/req) +"bEr" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"bEt" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/squads/req) +"bEv" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/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) +"bEz" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"bEA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bED" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bEE" = ( +/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{ + dir = 4 + }, +/obj/item/tool/warning_cone, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bEF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/weapon_room) +"bEG" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"bEH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/starboard_hallway) +"bEK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bEN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lockerroom) +"bES" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"bET" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) +"bEU" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"bEV" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"bFa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bFb" = ( +/obj/structure/foamed_metal, +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_medbay) +"bFc" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"bFe" = ( +/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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"bFf" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/atmospipes, +/obj/item/circuitboard/airalarm, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"bFg" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/fire_alarm, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"bFj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "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) +"bFp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/living/cryo_cells) +"bFq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 10; + icon_state = "red" + }, +/area/almayer/living/cryo_cells) +"bFt" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"bFu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"bFA" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"bFC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"bFJ" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "53" + }, +/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/lz1, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"bGb" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/port_hallway) +"bGc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"bGe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"bGg" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"bGh" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/port_hallway) +"bGi" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/port_hallway) +"bGj" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/port_hallway) +"bGk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/port_hallway) +"bGl" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/port_hallway) +"bGn" = ( +/obj/structure/barricade/plasteel/metal, +/turf/open/floor/almayer{ + icon_state = "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) +"bGp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/hallways/port_umbilical) +"bGq" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bGr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"bGu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bGy" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/squads/req) +"bGF" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bGG" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bGH" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bGI" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bGK" = ( +/obj/item/tool/warning_cone, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bGM" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bGN" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bGO" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bGP" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bGQ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bGR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bGT" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"bGU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"bHa" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"bHb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"bHd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"bHk" = ( +/turf/open/floor/almayer/research/containment/floor2{ + dir = 1 + }, +/area/almayer/medical/containment/cell/cl) +"bHm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull) +"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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/navigation) +"bHt" = ( +/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/starboard_hallway) +"bHu" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower_engineering) +"bHv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/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{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"bHy" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"bHz" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuelCell, +/obj/item/fuelCell, +/obj/item/fuelCell, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"bHB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bHD" = ( +/obj/structure/ship_ammo/rocket/banshee, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/hangar) +"bHG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"bHH" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"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) +"bHL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"bHP" = ( +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/weapon_room) +"bHT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"bHV" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"bHW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"bHX" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"bHY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"bIb" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"bId" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bIe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bIi" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"bIl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bIo" = ( +/obj/structure/cargo_container/lockmart/left{ + layer = 3.1; + pixel_y = 5 + }, +/turf/open/floor/almayer{ + icon_state = "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/white/open{ + closed_layer = 3.2; + id = "ARES Emergency"; + layer = 3.2; + name = "ARES Emergency Lockdown"; + needs_power = 0; + open_layer = 1.9; + plane = -7 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"bIs" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 1; + icon_state = "red" + }, +/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{ + dir = 5; + icon_state = "red" + }, +/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) +"bIz" = ( +/mob/living/simple_animal/cat/Jones{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"bIA" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 29 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/auxiliary_officer_office) +"bII" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"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{ + icon_state = "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) +"bIN" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"bIO" = ( +/turf/closed/wall/almayer/outer, +/area) +"bIR" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"bIS" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"bIT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_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{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"bIX" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"bJb" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/port_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{ + icon_state = "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) +"bJh" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/port_umbilical) +"bJi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/starboard_hallway) +"bJj" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"bJk" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/auxiliary_officer_office) +"bJo" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/repair_bay) +"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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"bJz" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"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 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/squads/bravo) +"bJF" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engine_core) +"bJH" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black{ + pixel_x = -4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"bJI" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engine_core) +"bJK" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/engineering/engine_core) +"bJM" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"bJN" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"bJO" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_umbilical) +"bJP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"bJQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuelCell, +/obj/item/fuelCell, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"bJR" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuelCell, +/obj/item/fuelCell, +/obj/item/fuelCell, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"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{ + dir = 8; + icon_state = "red" + }, +/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{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bKa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"bKb" = ( +/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 = "7;19" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/weapon_room) +"bKc" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"bKd" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/obj/item/storage/firstaid/fire, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bKe" = ( +/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/aft_hallway) +"bKf" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bKh" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/vehiclehangar) +"bKj" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/vehiclehangar) +"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{ + icon_state = "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{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bKp" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bKq" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"bKA" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"bKC" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, +/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{ + icon_state = "cargo" + }, +/area/almayer/living/cryo_cells) +"bKE" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/starboard_hallway) +"bKO" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/engineering/engineering_workshop) +"bKQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"bKT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop) +"bKU" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bKV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engine_core) +"bKW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/engine_core) +"bKX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"bLb" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_p) +"bLc" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engine_core) +"bLd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engine_core) +"bLe" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engine_core) +"bLf" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"bLg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_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{ + dir = 4; + icon_state = "red" + }, +/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{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bLl" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/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{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bLo" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bLp" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/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{ + dir = 5; + icon_state = "red" + }, +/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{ + dir = 9; + icon_state = "sterile_green_side" + }, +/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) +"bLt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/vehiclehangar) +"bLu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/vehiclehangar) +"bLv" = ( +/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{ + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/almayer/no_build{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"bLw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bLH" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bLJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/obj/item/tool/extinguisher, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/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) +"bLS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull) +"bLT" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"bLX" = ( +/obj/vehicle/powerloader, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"bMa" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "green" + }, +/area/almayer/squads/req) +"bMq" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie_delta_shared) +"bMt" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emerald" + }, +/area/almayer/hallways/port_hallway) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie_delta_shared) +"bMx" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"bMy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"bMA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"bMB" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engine_core) +"bMC" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"bMD" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"bMF" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"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) +"bMM" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/engine_core) +"bMN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/engine_core) +"bMO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bMP" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bMQ" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 1"; + buildstate = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bMR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bMS" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/red, +/obj/item/tool/pen, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/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{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bMU" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/blue, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bMV" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 7"; + buildstate = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bMW" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 13"; + buildstate = 1 + }, +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bMX" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_s) +"bMY" = ( +/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{ + icon_state = "dark_sterile" + }, +/area/almayer/hull/upper_hull/u_a_s) +"bNa" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/black, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bNb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/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{ + dir = 4; + icon_state = "red" + }, +/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{ + dir = 9; + icon_state = "orange" + }, +/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{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bNk" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/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{ + dir = 4; + icon_state = "red" + }, +/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{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bNo" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/almayer/shipboard/navigation) +"bNp" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"bNq" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"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{ + icon_state = "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{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"bNA" = ( +/obj/structure/machinery/computer/ordercomp, +/obj/structure/sign/safety/galley{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "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, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"bNC" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"bND" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"bNE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/charlie_delta_shared) +"bNF" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) +"bNM" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"bNN" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) +"bNP" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"bNQ" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/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{ + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bNT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"bNW" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/vehiclehangar) +"bNX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"bNZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/engineering_workshop) +"bOc" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"bOe" = ( +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"bOh" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 16"; + buildstate = 1 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bOi" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"bOk" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 2"; + buildstate = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bOl" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 8"; + buildstate = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bOm" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 14"; + buildstate = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bOn" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_a_s) +"bOo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_s) +"bOq" = ( +/obj/structure/prop/almayer/cannon_cables, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/shipboard/weapon_room) +"bOs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/shipboard/weapon_room) +"bOv" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emeraldcorner" + }, +/area/almayer/hallways/port_hallway) +"bOx" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/charlie) +"bOC" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"bOG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/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{ + icon_state = "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{ + icon_state = "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{ + dir = 1; + icon_state = "red" + }, +/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{ + dir = 1; + icon_state = "red" + }, +/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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bOQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"bOR" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/sea_office) +"bOX" = ( +/turf/open/floor/almayer{ + icon_state = "emeraldcorner" + }, +/area/almayer/hallways/port_hallway) +"bOZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emeraldcorner" + }, +/area/almayer/squads/charlie) +"bPa" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emeraldcorner" + }, +/area/almayer/squads/charlie) +"bPd" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 3"; + buildstate = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bPe" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"bPg" = ( +/obj/vehicle/powerloader, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "cargo" + }, +/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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bPj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"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{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_lobby) +"bPn" = ( +/obj/structure/machinery/prop/almayer/orbital_cannon_console, +/obj/structure/bed/chair/ob_chair, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/shipboard/weapon_room) +"bPo" = ( +/obj/structure/prop/almayer/cannon_cable_connector, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"bPB" = ( +/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, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"bPC" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 28 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/shipboard/weapon_room) +"bPD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/shipboard/weapon_room) +"bPJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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, +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"bPM" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/living/cryo_cells) +"bPO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional{ + dir = 8; + icon_state = "logo_c" + }, +/area/almayer/living/briefing) +"bPR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/engineering/engineering_workshop) +"bPS" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bPT" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bPU" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bPV" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bPW" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bPZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"bQa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/engineering/engineering_workshop) +"bQe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"bQi" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/engineering/engine_core) +"bQk" = ( +/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{ + icon_state = "tcomms" + }, +/area/almayer/engineering/engine_core) +"bQm" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"bQt" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bQu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"bQz" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"bQA" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "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{ + dir = 5; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "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{ + icon_state = "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/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"bRg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"bRi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"bRj" = ( +/obj/structure/ladder{ + height = 1; + id = "engineeringladder" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engineering_workshop) +"bRk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"bRm" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/lobby) +"bRo" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"bRr" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"bRs" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"bRu" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engineering_workshop) +"bRx" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/vehiclehangar) +"bRz" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_umbilical) +"bRA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_umbilical) +"bRD" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"bRF" = ( +/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/hull/lower_hull/l_f_p) +"bRH" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"bRK" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"bRQ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"bRR" = ( +/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, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"bRU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/vehiclehangar) +"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{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"bSa" = ( +/obj/structure/target, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/living/cryo_cells) +"bSb" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/cryo_cells) +"bSd" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"bSe" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"bSf" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/port_point_defense) +"bSg" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/port_umbilical) +"bSj" = ( +/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/port_hallway) +"bSk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/engineering/engineering_workshop) +"bSl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"bSm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/engineering/engineering_workshop) +"bSn" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"bSt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"bSv" = ( +/turf/closed/wall/almayer, +/area/almayer/living/tankerbunks) +"bSx" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/engineering/engine_core) +"bSy" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/engine_core) +"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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"bSG" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/engineering/engine_core) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/port) +"bSR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"bSY" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"bSZ" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"bTa" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"bTi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"bTl" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 4"; + buildstate = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"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{ + icon_state = "cargo" + }, +/area/almayer/living/tankerbunks) +"bTp" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"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) +"bTu" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"bTw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) +"bTx" = ( +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"bTy" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/squads/delta) +"bTz" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"bTA" = ( +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"bTC" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"bTE" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "bluecorner" + }, +/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{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"bTH" = ( +/turf/open/floor/almayer, +/area/almayer/living/tankerbunks) +"bTI" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_s) +"bTJ" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"bTM" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"bTN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"bTO" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/port_point_defense) +"bTQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bTR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/auxiliary_officer_office) +"bTS" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/tankerbunks) +"bUa" = ( +/obj/structure/closet, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/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{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"bUc" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Secretroom"; + indestructible = 1; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bUd" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "bluecorner" + }, +/area/almayer/hallways/port_hallway) +"bUe" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"bUf" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "bluecorner" + }, +/area/almayer/squads/delta) +"bUi" = ( +/obj/structure/sign/poster{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/squads/charlie_delta_shared) +"bUo" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/squads/req) +"bUp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"bUq" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"bUr" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"bUx" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"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{ + icon_state = "test_floor5" + }, +/area/almayer/squads/req) +"bUz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"bUA" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"bUE" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"bUF" = ( +/turf/open/floor/almayer{ + icon_state = "bluecorner" + }, +/area/almayer/hallways/port_hallway) +"bUG" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"bUI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop) +"bUJ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"bUL" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"bUM" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/port_hallway) +"bUN" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"bUO" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/port_point_defense) +"bUP" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_m_s) +"bUT" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"bUW" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 5"; + buildstate = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bUX" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 11"; + buildstate = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bUY" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 17"; + buildstate = 1 + }, +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bUZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_p) +"bVb" = ( +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/squads/delta) +"bVd" = ( +/turf/open/floor/almayer{ + icon_state = "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) +"bVi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"bVn" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"bVo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"bVq" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/squads/delta) +"bVw" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "bluecorner" + }, +/area/almayer/living/briefing) +"bVy" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/masks, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/squads/delta) +"bVB" = ( +/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/machinery/door/poddoor/shutters/almayer{ + id = "cl_shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/corporateliason) +"bVC" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "cmp_armory"; + name = "\improper Armory Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Armory" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/armory) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/upper_medical) +"bVF" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"bVL" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"bVM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"bVR" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"bVT" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"bVU" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/port_point_defense) +"bWb" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"bWc" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/starboard_garden) +"bWe" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/port_point_defense) +"bWf" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/starboard_garden) +"bWh" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-4"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"bWn" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/port_point_defense) +"bWo" = ( +/obj/docking_port/stationary/emergency_response/port2, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/port_point_defense) +"bWp" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/port_point_defense) +"bWq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/starboard_garden) +"bWr" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/chapel) +"bWs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"bWw" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"bWC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/aft_hallway) +"bWE" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"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) +"bWK" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_m_s) +"bWL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"bWM" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"bWP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"bWS" = ( +/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{ + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"bWV" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/port_hallway) +"bWZ" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engineering_workshop) +"bXc" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/mre_pack/xmas2{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3{ + pixel_x = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"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{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"bXl" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"bXm" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"bXn" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"bXo" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge1" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 24; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/navigation) +"bXr" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 6"; + buildstate = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bXs" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/vehiclehangar) +"bXt" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 12"; + buildstate = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bXu" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 18"; + buildstate = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bXv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"bXw" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/operating_room_two) +"bXx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 + }, +/obj/structure/machinery/door_control{ + id = "cl_shutters 3"; + name = "Quarters Shutters"; + pixel_x = -25; + req_access_txt = "200" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"bXP" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"bXQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engine_core) +"bXR" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"bXS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/engine_core) +"bXU" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/engine_core) +"bXV" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/engine_core) +"bXW" = ( +/obj/structure/machinery/door_control{ + id = "cl_shutters 3"; + name = "Quarters Shutters"; + pixel_x = 25; + req_access_txt = "200" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"bXX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/vehiclehangar) +"bXY" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 24; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/navigation) +"bXZ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/vehiclehangar) +"bYa" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/cargo/blend, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/squads/req) +"bYc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"bYd" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"bYe" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/aft_hallway) +"bYg" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"bYh" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"bYi" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"bYj" = ( +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"bYn" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/upper_engineering/port) +"bYq" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"bYu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/uniform_supply, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"bYv" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + name = "\improper Requisitions Storage" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"bYy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"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{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"bYE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/port_hallway) +"bYI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"bYK" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"bYM" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/engineering/lower_engineering) +"bYO" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engine_core) +"bYP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"bYQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"bYS" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engine_core) +"bYU" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"bYV" = ( +/obj/item/fuelCell, +/obj/item/fuelCell, +/obj/item/fuelCell, +/obj/structure/surface/table/almayer, +/obj/item/fuelCell, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"bYW" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"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{ + icon_state = "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{ + icon_state = "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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"bZg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"bZi" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"bZr" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) +"bZw" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/combat_correspondent) +"bZz" = ( +/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/port_hallway) +"bZA" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower_engineering) +"bZD" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuelCell, +/obj/item/fuelCell, +/obj/item/fuelCell, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"bZE" = ( +/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{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"bZH" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hull/upper_hull/u_f_p) +"bZJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/binoculars, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"bZK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"bZL" = ( +/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/vehiclehangar) +"bZN" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/chief_mp_office) +"bZO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/delta) +"cab" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"cac" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"cad" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"cae" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"caf" = ( +/obj/structure/machinery/computer/cryopod{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"cag" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"cah" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"cai" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"cal" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "green" + }, +/area/almayer/squads/req) +"can" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"cat" = ( +/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/vehiclehangar) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/cryo_cells) +"cav" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/port_hallway) +"cax" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/port_umbilical) +"cay" = ( +/obj/structure/closet/emcloset{ + pixel_x = 8 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"caz" = ( +/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{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"caA" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/fire, +/obj/item/device/lightreplacer, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"caB" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight, +/obj/item/storage/firstaid/rad, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"caC" = ( +/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/vehiclehangar) +"caD" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"caE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_p) +"caF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"caM" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"caO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/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{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/operating_room_three) +"caT" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"cbn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"cbo" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull) +"cbr" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_medbay) +"cbv" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/port_hallway) +"cbw" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/port_hallway) +"cbz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"cbA" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"cbD" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"cbE" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"cbG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower_engineering) +"cbH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"cbM" = ( +/obj/structure/closet/crate, +/obj/item/clothing/glasses/welding, +/obj/item/circuitboard, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"cbN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"cbO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"cbQ" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"cbR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"cbS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"cbU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"cbV" = ( +/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/port_hallway) +"cbW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"cbX" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"cbZ" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"ccb" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/living/cryo_cells) +"ccd" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/living/cryo_cells) +"cce" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Atmospherics Wing" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower_engineering) +"ccf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/aft_hallway) +"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{ + dir = 1; + icon_state = "silver" + }, +/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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"ccq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"ccr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"ccs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"ccu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"ccv" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"ccx" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"ccy" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/suit_storage_unit/carbon_unit, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"ccz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"ccA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"ccB" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"ccC" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"ccD" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"ccE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/general_air_control/large_tank_control{ + name = "Lower Mixed Air Control" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"ccF" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"ccG" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"ccJ" = ( +/turf/open/floor/almayer{ + icon_state = "silvercorner" + }, +/area/almayer/hallways/repair_bay) +"ccN" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/living/cryo_cells) +"ccO" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"ccQ" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"ccR" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 6 + }, +/obj/structure/machinery/meter, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"ccS" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"ccT" = ( +/obj/structure/pipes/trinary/mixer{ + dir = 4; + name = "Gas mixer N2/O2" + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"ccU" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"ccV" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 10 + }, +/obj/structure/machinery/meter, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"ccW" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"ccX" = ( +/obj/structure/pipes/binary/pump/high_power/on{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"ccY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"cdb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_umbilical) +"cdc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_umbilical) +"cdd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_umbilical) +"cdf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"cdk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/main_office) +"cdm" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"cdn" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/cryo_cells) +"cdo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/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) +"cdr" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"cdu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"cdw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_umbilical) +"cdx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_umbilical) +"cdy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_umbilical) +"cdz" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_umbilical) +"cdA" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"cdF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"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{ + icon_state = "cargo_arrow" + }, +/area/almayer/squads/charlie) +"cdT" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/charlie, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"cdV" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"cdX" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"cdZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"cea" = ( +/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/hull/lower_hull/l_a_p) +"ceg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha) +"ceo" = ( +/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/corporateliason) +"cer" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"ces" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_umbilical) +"cet" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_umbilical) +"ceu" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/living/starboard_garden) +"cev" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_umbilical) +"cew" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/port_umbilical) +"cex" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_umbilical) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"ceE" = ( +/turf/closed/wall/almayer, +/area/almayer/command/cichallway) +"ceK" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"ceQ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/part_fabricator/dropship, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/repair_bay) +"ceR" = ( +/obj/structure/machinery/prop/almayer/computer{ + pixel_y = 20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/repair_bay) +"ceU" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/repair_bay) +"ceZ" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"cfk" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/port_missiles) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"cfq" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer{ + icon_state = "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) +"cfx" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/port_umbilical) +"cfy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/port_umbilical) +"cfz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/port_umbilical) +"cfA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_umbilical) +"cfE" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/starboard_missiles) +"cfM" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/repair_bay) +"cfN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"cfT" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/charlie) +"cgr" = ( +/obj/structure/machinery/cm_vending/clothing/medic/charlie, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"cgs" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"cgt" = ( +/obj/structure/machinery/cm_vending/clothing/engi/charlie, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"cgu" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/charlie, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"cgv" = ( +/obj/structure/machinery/cm_vending/clothing/leader/charlie, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"cgy" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"cgz" = ( +/obj/structure/bed/chair/comfy/charlie, +/obj/structure/sign/poster{ + desc = "Eat an EAT bar! ...Aren't they called MEAT bars?"; + icon_state = "poster7"; + name = "EAT - poster"; + pixel_x = 27 + }, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/living/briefing) +"cgA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"cgE" = ( +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"cgG" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_umbilical) +"cgH" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_umbilical) +"cgI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"cgJ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/stern_hallway) +"cgO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"cgT" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"chf" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/charlie_delta_shared) +"chk" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/charlie) +"chl" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/engineer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/charlie) +"chm" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/spec, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/charlie) +"chn" = ( +/obj/structure/machinery/door/airlock/almayer/marine/charlie/sl, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/charlie) +"chp" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"chq" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"chu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"chC" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"chE" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"chL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 4; + icon_state = "emeraldcorner" + }, +/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{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"chP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"chQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emeraldcorner" + }, +/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{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"chV" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emeraldcorner" + }, +/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{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"cib" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/charlie) +"cic" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha) +"cil" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"cim" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/hallways/port_umbilical) +"cin" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_umbilical) +"cio" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/port_umbilical) +"cir" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/squads/req) +"cit" = ( +/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/hull/upper_hull/u_m_s) +"ciu" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north2) +"civ" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering) +"ciw" = ( +/obj/structure/platform, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north2) +"cix" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-4"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"ciD" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north2) +"ciF" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"ciN" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/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) +"ciT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"ciU" = ( +/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{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/port_hallway) +"cjd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"cjf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"cjg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"cjh" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"cji" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north2) +"cjl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_umbilical) +"cjm" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_umbilical) +"cjo" = ( +/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{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"cjw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/port_hallway) +"cjA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"cjC" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"cjE" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/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 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"cjK" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_umbilical) +"cjS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/port_hallway) +"cjT" = ( +/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{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/port_hallway) +"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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/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{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/engineering/port_atmos) +"ckl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/port_hallway) +"ckm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/port_hallway) +"ckr" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"ckB" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Emergency Air Storage" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_a_s) +"ckI" = ( +/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/port_hallway) +"ckK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/engineering/port_atmos) +"ckP" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"ckQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"ckR" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"ckS" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/main_office) +"ckX" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"cla" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hallways/port_hallway) +"clb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/port_hallway) +"cle" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "bluecorner" + }, +/area/almayer/squads/delta) +"clj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "bluecorner" + }, +/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{ + icon_state = "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{ + icon_state = "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{ + dir = 8; + icon_state = "bluecorner" + }, +/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{ + icon_state = "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{ + dir = 10; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"cls" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"clw" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101; + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"cly" = ( +/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{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/hallways/port_hallway) +"clz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/hallways/port_hallway) +"clC" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/starboard_hallway) +"clE" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/medic, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/delta) +"clF" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/engineer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/delta) +"clG" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/spec, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/delta) +"clH" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/sl, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/delta) +"clI" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/smart, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/delta) +"clJ" = ( +/obj/structure/machinery/cm_vending/clothing/medic/delta, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"clK" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"clL" = ( +/obj/structure/machinery/cm_vending/clothing/engi/delta, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"clM" = ( +/obj/structure/machinery/cm_vending/clothing/specialist/delta, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"clN" = ( +/obj/structure/machinery/cm_vending/clothing/leader/delta, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"clO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"clP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"clR" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/port_hallway) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"clT" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"clV" = ( +/obj/structure/machinery/computer/arcade, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/squads/req) +"clW" = ( +/obj/structure/machinery/cm_vending/clothing/smartgun/delta, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"clY" = ( +/obj/structure/machinery/cm_vending/gear/medic, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"clZ" = ( +/obj/structure/machinery/cm_vending/gear/engi, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"cmd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"cmg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"cmh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"cmk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"cml" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/port_point_defense) +"cmm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/port_point_defense) +"cmn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/port_point_defense) +"cmp" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"cmC" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SL-1"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"cmE" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_m_s) +"cmF" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north2) +"cmH" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_umbilical) +"cmI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/navigation) +"cmJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + access_modified = 1; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/navigation) +"cmK" = ( +/obj/structure/window/reinforced, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/securestorage) +"cmX" = ( +/obj/docking_port/stationary/escape_pod/west, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_m_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{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"cno" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/starboard_hallway) +"cnp" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"cnq" = ( +/obj/structure/machinery/line_nexter{ + id = "line1"; + pixel_x = -2 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/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{ + icon_state = "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{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"cnv" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silvercorner" + }, +/area/almayer/hallways/aft_hallway) +"cnE" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"cnG" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "47" + }, +/area/almayer/hallways/hangar) +"cnH" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Computer Lab" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/computerlab) +"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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/command/computerlab) +"cnU" = ( +/obj/structure/machinery/vending/hydronutrients, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"cnV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/morgue) +"cnW" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/morgue) +"cnX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"cnY" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"cnZ" = ( +/obj/item/tool/surgery/hemostat, +/obj/item/tool/surgery/scalpel, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/morgue) +"coa" = ( +/obj/item/tool/surgery/circular_saw, +/obj/item/tool/surgery/cautery, +/obj/item/tool/surgery/retractor, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/morgue) +"cod" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/command/cic) +"cog" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"coj" = ( +/obj/structure/machinery/power/apc, +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"cop" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/tankerbunks) +"cos" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"coB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha_bravo_shared) +"coG" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"coJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/shipboard/starboard_point_defense) +"coZ" = ( +/turf/open/floor/almayer/research/containment/corner{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"cpf" = ( +/obj/structure/ladder{ + height = 2; + id = "ForeStarboardMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + icon_state = "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) +"cpw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/aft_hallway) +"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) +"cqa" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"cqn" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/armory) +"cqz" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"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{ + icon_state = "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/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"cre" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"crh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"crD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/squads/req) +"crK" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"crP" = ( +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"crW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"csl" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/starboard_hallway) +"csz" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"csG" = ( +/obj/structure/bed/chair/comfy/delta, +/obj/item/trash/popcorn, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/briefing) +"csI" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/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 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/bravo) +"ctn" = ( +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/lobby) +"cts" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"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{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"ctC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"cuk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/cryo) +"cus" = ( +/obj/docking_port/stationary/lifeboat_dock/starboard, +/turf/open/floor/almayer_hull{ + dir = 4; + icon_state = "outerhull_dir" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"cuC" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/upper_engineering/starboard) +"cuY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/alpha) +"cvb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"cve" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "86" + }, +/area/almayer/hallways/hangar) +"cvj" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliason) +"cvZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/cic) +"cwd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"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) +"cwJ" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"cwQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"cwS" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/no_build{ + icon_state = "plating" + }, +/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 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "tcomms" + }, +/area/almayer/command/airoom) +"cxe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower_engineering) +"cxk" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"cxo" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"cxA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/main_office) +"cyo" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/squads/req) +"cyE" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"cyG" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/port_hallway) +"cyU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/upper_medical) +"cyZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"czu" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hull/upper_hull/u_m_p) +"czB" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/execution) +"czG" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"czJ" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"czM" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/stern_hallway) +"cAm" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"cAF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"cAH" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"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{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/starboard) +"cBi" = ( +/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/hull/upper_hull/u_a_p) +"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{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/port) +"cBl" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"cBm" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -97; + vector_y = 65 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/no_build{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"cBs" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha) +"cBA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"cBB" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"cBI" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"cCa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"cCd" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"cCD" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/almayer/uscm/directional{ + dir = 9 + }, +/area/almayer/living/briefing) +"cCE" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"cDe" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"cDj" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"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{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"cDs" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/charlie) +"cDC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/grunt_rnr) +"cDW" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hull/upper_hull/u_a_p) +"cDZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/tankerbunks) +"cEg" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/command/cic) +"cEx" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"cEB" = ( +/obj/structure/phone_base/no_dnd{ + name = "Requisition Telephone"; + phone_category = "Almayer"; + phone_id = "Requisition"; + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/squads/req) +"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{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/charlie) +"cEG" = ( +/obj/structure/sign/poster{ + icon_state = "poster14"; + pixel_x = -27 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"cEO" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"cES" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/stern_hallway) +"cEY" = ( +/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/hull/lower_hull/l_f_p) +"cFh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/weapon_room) +"cFn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"cFA" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"cFO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/main_office) +"cFP" = ( +/obj/structure/sign/safety/outpatient{ + pixel_x = -17; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"cFX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"cGr" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/aft_hallway) +"cGV" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha_bravo_shared) +"cHc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"cHl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"cHq" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"cHu" = ( +/turf/closed/wall/almayer/research/containment/wall/south, +/area/almayer/medical/containment/cell/cl) +"cHE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/command/cichallway) +"cHO" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower_engineering) +"cIe" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"cIi" = ( +/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/hull/lower_hull/l_f_s) +"cIr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"cIG" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"cII" = ( +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_p) +"cIK" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/execution) +"cIU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"cIW" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Engine Monitoring" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/starboard) +"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{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"cJB" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"cJE" = ( +/obj/structure/sign/prop2, +/turf/closed/wall/almayer, +/area/almayer/shipboard/sea_office) +"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{ + icon_state = "sterile_green" + }, +/area/almayer/medical/containment) +"cJP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"cKt" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"cKK" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "97" + }, +/area/almayer/hallways/hangar) +"cKL" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering/port) +"cKN" = ( +/obj/item/device/radio/intercom/normandy{ + layer = 3.5; + pixel_x = 10 + }, +/turf/closed/shuttle/dropship2{ + icon_state = "54" + }, +/area/almayer/hallways/hangar) +"cKX" = ( +/obj/structure/platform, +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"cKY" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"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/no_build{ + icon_state = "cargo_arrow" + }, +/area/almayer/command/airoom) +"cLp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"cLA" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "cargo" + }, +/area/almayer/living/bridgebunks) +"cLV" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"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) +"cMN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/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) +"cNc" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"cNe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"cNf" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/living/briefing) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/containment/cell/cl) +"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) +"cNY" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"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{ + dir = 4; + icon_state = "outerhull_dir" + }, +/area/almayer/engineering/upper_engineering/starboard) +"cOM" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"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{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"cQc" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/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{ + icon_state = "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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/containment) +"cQv" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/general_equipment) +"cQF" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hull/lower_hull/l_f_s) +"cQN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cichallway) +"cRc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"cRi" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering/port) +"cRv" = ( +/turf/open/floor/almayer{ + icon_state = "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) +"cSk" = ( +/obj/structure/machinery/door/window/southleft, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"cSC" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/starboard_missiles) +"cSK" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"cSN" = ( +/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{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"cSQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"cST" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"cTf" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"cTC" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/living/offices) +"cUb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"cUv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_p) +"cVs" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"cVw" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"cVJ" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"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{ + dir = 9; + icon_state = "green" + }, +/area/almayer/living/offices) +"cWs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/main_office) +"cWt" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"cWv" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/living/starboard_garden) +"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{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"cWA" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_s) +"cWI" = ( +/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/hull/upper_hull/u_a_s) +"cWN" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/filingcabinet/security{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/brig/chief_mp_office) +"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) +"cXq" = ( +/obj/structure/largecrate/supply/supplies/water, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hull/upper_hull/u_a_p) +"cXC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/containment) +"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{ + icon_state = "containment_corner_variant_2" + }, +/area/almayer/medical/containment/cell/cl) +"cXR" = ( +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/squads/req) +"cXW" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"cXY" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"cXZ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"cYu" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/lifeboat_pumps/south1) +"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/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"cZs" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/brig/chief_mp_office) +"cZJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + name = "\improper Core Hatch" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"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{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"cZZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"dac" = ( +/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" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"daj" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/surgery) +"daz" = ( +/turf/closed/wall/almayer/white/hull, +/area/almayer/command/airoom) +"dbe" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 1; + icon_state = "plating_striped" + }, +/area/almayer/engineering/upper_engineering/port) +"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{ + dir = 1; + icon_state = "silver" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"dcd" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"dci" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/main_office) +"dck" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"dcp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"dcP" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/surgery) +"dcS" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"ddj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower_engineering) +"ddk" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"ddz" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"ddK" = ( +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"deb" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Perma 2"; + pixel_y = -24 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/perma) +"deg" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south2) +"deD" = ( +/obj/structure/machinery/prop/almayer/CICmap{ + pixel_x = -5 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"deH" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"deT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/living/port_emb) +"dfa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"dfc" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/port_umbilical) +"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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"dfk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "greenfull" + }, +/area/almayer/shipboard/brig/cells) +"dfp" = ( +/obj/structure/machinery/keycard_auth{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"dfC" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"dfO" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/surgery) +"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{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"dgl" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"dgx" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/chief_mp_office) +"dgN" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"dhQ" = ( +/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/corporateliason) +"dhR" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "north_central_checkpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"dhU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/port_hallway) +"dhZ" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_umbilical) +"diw" = ( +/obj/structure/bed/chair/comfy/delta, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/briefing) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/port) +"diF" = ( +/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{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"diJ" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha_bravo_shared) +"djm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"djp" = ( +/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{ + icon_state = "cargo" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"djL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"djM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder/industrial{ + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"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{ + icon_state = "plate" + }, +/area/almayer/shipboard/starboard_point_defense) +"dka" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_four) +"dkj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/alamo{ + layer = 2.9 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "red" + }, +/area/almayer/living/briefing) +"dkH" = ( +/obj/structure/bed/chair/comfy/delta, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/briefing) +"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{ + allow_construction = 0 + }, +/area/almayer/stair_clone/upper) +"dkS" = ( +/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/prison{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering/port) +"dll" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"dlp" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/item/toy/deck{ + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"dls" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/surgery) +"dmg" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"dmv" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/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{ + icon_state = "cargo" + }, +/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) +"dnk" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"dnr" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "24" + }, +/area/almayer/hallways/hangar) +"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{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/hydroponics) +"dnE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"dnH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering/starboard) +"dnJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"dnS" = ( +/obj/structure/safe, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/command/securestorage) +"dnX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"dod" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering) +"doj" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/surgery) +"doJ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/bed/stool, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/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{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"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{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"dpy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"dpO" = ( +/obj/structure/machinery/cm_vending/clothing/marine/delta{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/delta) +"dpV" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"dqb" = ( +/obj/structure/sign/safety/security{ + pixel_x = -16 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"dqd" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"dqg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"dqj" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/living/offices) +"dqH" = ( +/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/hull/lower_hull/l_f_p) +"dqN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"dqV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/door_control{ + id = "perma_lockdown"; + name = "\improper Perma Cells Lockdown"; + pixel_y = 24; + req_access_txt = "3" + }, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"drj" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/charlie_delta_shared) +"drk" = ( +/obj/structure/closet, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/engineering/port_atmos) +"drt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"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{ + icon_state = "sterile_green" + }, +/area/almayer/medical/hydroponics) +"dsk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"dsu" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hull/upper_hull/u_a_p) +"dsw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/cryo) +"dtH" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"dtM" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"dtN" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"dtZ" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"dum" = ( +/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{ + 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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cic) +"duo" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "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{ + icon_state = "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{ + icon_state = "emeraldfull" + }, +/area/almayer/living/briefing) +"dux" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/living/starboard_garden) +"duF" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"duT" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 2"; + pixel_x = -24 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/brig/cells) +"duV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/chemistry) +"dvl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/command/cichallway) +"dvs" = ( +/obj/structure/machinery/cm_vending/clothing/vehicle_crew{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/cryo_cells) +"dvD" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/squads/req) +"dvF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/ot{ + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"dvT" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/general_equipment) +"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) +"dwA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/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, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/starboard) +"dxm" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/general_equipment) +"dxu" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_four) +"dxv" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silvercorner" + }, +/area/almayer/command/computerlab) +"dxC" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"dxF" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down1"; + vector_x = 19; + vector_y = -98 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/stair_clone/upper) +"dxK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"dxL" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/reagent_dispensers/ethanoltank{ + anchored = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"dxT" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/lobby) +"dyb" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"dyp" = ( +/obj/structure/machinery/ares/cpu, +/turf/open/floor/almayer/no_build{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/squads/req) +"dyF" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/door_control{ + id = "cl_shutters 2"; + name = "Quarters Shutters"; + pixel_x = 25; + req_access_txt = "200" + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"dyK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/ce_room) +"dzF" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"dAb" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/bravo) +"dAO" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"dBj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "cargo" + }, +/area/almayer/command/cic) +"dBG" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/engineering/upper_engineering) +"dBH" = ( +/obj/structure/window/framed/almayer/white, +/turf/open/floor/plating, +/area/almayer/medical/lower_medical_medbay) +"dBO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_one) +"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{ + icon_state = "cargo" + }, +/area/almayer/shipboard/brig/cells) +"dCh" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"dCr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"dCt" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hull/upper_hull/u_a_p) +"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{ + icon_state = "plate" + }, +/area/almayer/command/cichallway) +"dCD" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"dCP" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"dCS" = ( +/obj/structure/sign/safety/rad_shield{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"dDp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "tcomms" + }, +/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) +"dDC" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"dDL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/research/main_terminal{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"dDQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"dEm" = ( +/obj/structure/machinery/power/apc, +/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{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/containment/cell) +"dEn" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"dEt" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 2; + name = "\improper Engineering South Hall" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/port) +"dEC" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/starboard_hallway) +"dEQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"dEV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"dFk" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/command/lifeboat) +"dFC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"dFF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"dFR" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"dFV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"dGc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"dGl" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -97; + vector_y = 65 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/no_build{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"dGr" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/living/pilotbunks) +"dGw" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"dGz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"dGC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"dGD" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Spare Restraints"; + req_one_access_txt = "3" + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/item/clothing/glasses/sunglasses/blindfold, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"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{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"dHk" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"dHr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"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/surface/table/reinforced/prison, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/adv, +/obj/item/device/defibrillator, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/surgery) +"dHV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/unary/freezer{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + allow_construction = 0 + }, +/area/almayer/command/airoom) +"dIl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"dIn" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 5 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/alpha) +"dIR" = ( +/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{ + icon_state = "cargo" + }, +/area/almayer/hull/lower_hull/l_m_s) +"dKm" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/stern_hallway) +"dKp" = ( +/turf/open/floor/almayer/research/containment/corner{ + dir = 4 + }, +/area/almayer/medical/containment/cell/cl) +"dKL" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/engineering/airmix) +"dLc" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"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{ + icon_state = "plating_striped" + }, +/area/almayer/shipboard/sea_office) +"dLz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/lifeboat_pumps/south1) +"dLE" = ( +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"dMB" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/almayer/living/cryo_cells) +"dMK" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 8 + }, +/area/almayer/medical/containment/cell) +"dNe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"dNq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/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) +"dNx" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/engineering/engine_core) +"dNB" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"dNM" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = -5; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"dNZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/command/cic) +"dOl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"dOL" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"dPm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"dPC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"dPU" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"dPY" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"dQc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ + id = "aft_door" + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"dQl" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -97; + vector_y = 65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/no_build{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"dQs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"dQv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/surgery) +"dQE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"dQH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"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) +"dRv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"dRw" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/offices/flight) +"dRG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/starboard_hallway) +"dRT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"dRV" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"dSc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/main_office) +"dSn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/cells) +"dSp" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"dSs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_s) +"dSA" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"dSJ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -28 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"dSX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_two) +"dSZ" = ( +/obj/structure/bed/chair, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/almayer/powered/agent) +"dTc" = ( +/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 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/command/corporateliason) +"dTt" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"dTI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"dTZ" = ( +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"dUE" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"dUF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"dUI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_s) +"dUS" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_two) +"dUZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/port_missiles) +"dVd" = ( +/obj/structure/machinery/seed_extractor{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"dVe" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/living/briefing) +"dVm" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_p) +"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{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"dVO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"dVZ" = ( +/obj/structure/machinery/pipedispenser, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"dWg" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"dWk" = ( +/obj/structure/surface/table/almayer, +/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" + }, +/obj/structure/machinery/faxmachine/uscm/brig/chief, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"dWm" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"dWw" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "bluecorner" + }, +/area/almayer/living/basketball) +"dWz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/machinery/door_control{ + id = "cl_shutters 2"; + name = "Quarters Shutters"; + pixel_x = 11; + pixel_y = 37; + req_access_txt = "200" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"dWJ" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/living/pilotbunks) +"dWX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering/starboard) +"dXd" = ( +/obj/item/storage/fancy/cigarettes/kpack, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/engineering/laundry) +"dXo" = ( +/obj/structure/machinery/photocopier, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) +"dXr" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"dXy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) +"dXG" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"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{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/living/pilotbunks) +"dYh" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"dYu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"dYK" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"dYR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/briefing) +"dZd" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"dZr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/shipboard/port_point_defense) +"eaX" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"ebd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"ebn" = ( +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"ebD" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"ebJ" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"ebN" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/command/airoom) +"ebO" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"ebY" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"eco" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"ecq" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 6 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/shipboard/brig/lobby) +"ecr" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/captain_mess) +"ect" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop) +"ecM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"ecQ" = ( +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Containment Cell 4"; + name = "Control Panel"; + pixel_x = -15; + req_access_txt = "200" + }, +/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 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliason) +"ecR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"ecZ" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge4" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/navigation) +"edv" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/medical_science) +"edx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/lifeboat) +"edM" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer, +/area/almayer/hallways/vehiclehangar) +"eed" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/command/computerlab) +"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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"eep" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"eet" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/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{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"eeN" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"efh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = -8; + pixel_y = -6; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Brig Lockdown Shutters"; + name = "Brig Lockdown Shutters"; + pixel_x = -8; + pixel_y = 2; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "courtyard window"; + name = "Courtyard Window Shutters"; + pixel_x = -8; + pixel_y = 10; + req_access_txt = "3" + }, +/obj/structure/machinery/door_control{ + id = "Cell Privacy Shutters"; + name = "Cell Privacy Shutters"; + pixel_x = 2; + pixel_y = 10; + req_access_txt = "3" + }, +/obj/structure/machinery/recharger{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"efK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"efU" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"egp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform_decoration, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"egq" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/vehiclehangar) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/chapel) +"egB" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"egR" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"egS" = ( +/obj/structure/closet, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"ehg" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "98" + }, +/area/almayer/hallways/hangar) +"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) +"ehH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"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{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"eim" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"eir" = ( +/obj/structure/shuttle/part/dropship2/transparent/nose_top_right, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"eiw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/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{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"eiH" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/cells) +"eiK" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"eiN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bedsheetbin{ + pixel_y = 6 + }, +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"eiO" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/main_office) +"eiP" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"ejp" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/aft_hallway) +"ejt" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 4 + }, +/area/almayer/command/lifeboat) +"ejw" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/grunt_rnr) +"ejK" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"ejY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"ekg" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"eko" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"eky" = ( +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"ekO" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hull/upper_hull/u_m_p) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/starboard_garden) +"elf" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"elq" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"elA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"elE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_one) +"elR" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"eme" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/upper_medical) +"emn" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/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) +"emx" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"emG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"emK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"emO" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + dir = 1; + name = "Corporate Liaison's Bedroom" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/corporateliason) +"ene" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/command/securestorage) +"enf" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"eni" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/book/spacebeast, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/evidence_storage) +"enx" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"enz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/vending/snack, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"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) +"eoM" = ( +/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/hull/lower_hull/l_m_s) +"eoP" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Perma 1"; + pixel_y = 24 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/perma) +"eoT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"epq" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/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 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/lobby) +"epA" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"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) +"eqk" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"eqB" = ( +/obj/item/bedsheet/brown{ + layer = 3.2 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/engineering/port_atmos) +"eqD" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 + }, +/turf/open/floor/almayer/research/containment/floor2{ + dir = 1 + }, +/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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/port_missiles) +"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{ + icon_state = "test_floor5" + }, +/area/almayer/squads/req) +"erd" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/research/containment/floor2{ + dir = 1 + }, +/area/almayer/medical/containment/cell/cl) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/delta) +"erx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/cryo) +"erG" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"erN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump/no_boom{ + dir = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"erS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_umbilical) +"erZ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"esi" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"esF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"esT" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 9 + }, +/area/almayer/command/lifeboat) +"etf" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "plating_striped" + }, +/area/almayer/command/lifeboat) +"ets" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/upper_engineering) +"etE" = ( +/obj/structure/prop/almayer/name_stencil, +/turf/open/floor/almayer_hull{ + icon_state = "outerhull_dir" + }, +/area/space) +"etF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/starboard_point_defense) +"eua" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"eup" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/officer_study) +"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/no_build{ + icon_state = "tcomms" + }, +/area/almayer/command/airoom) +"euO" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"euV" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 8; + icon_state = "logo_c" + }, +/area/almayer/command/cic) +"euY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"eva" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/living/basketball) +"evg" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/starboard) +"evl" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"evX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/north1) +"ewo" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/starboard_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) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/delta) +"ewS" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silvercorner" + }, +/area/almayer/command/cichallway) +"ewT" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"exi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"exr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/surgery) +"ext" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"exy" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/engineering/upper_engineering/starboard) +"eyd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"eyg" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/shipboard/brig/cryo) +"eyG" = ( +/obj/structure/platform, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south2) +"eyQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"eyR" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 10; + icon_state = "green" + }, +/area/almayer/shipboard/brig/cells) +"ezG" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lockerroom) +"ezQ" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"ezU" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/shipboard/brig/lobby) +"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{ + dir = 6; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"eAC" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"eAL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"eAU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/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{ + icon_state = "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/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/starboard_hallway) +"eBo" = ( +/obj/structure/machinery/cm_vending/gear/commanding_officer, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"eBC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_umbilical) +"eBO" = ( +/obj/structure/bed, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "cargo_arrow" + }, +/area/almayer/squads/charlie_delta_shared) +"eBW" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/evidence_storage) +"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{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"eCo" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south2) +"eCS" = ( +/obj/structure/bed/chair/comfy/delta, +/obj/item/trash/popcorn, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/briefing) +"eDo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/medical/upper_medical) +"eDu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"eDz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"eDG" = ( +/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/port_hallway) +"eEc" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 6; + icon_state = "sterile_green_side" + }, +/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) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"eFp" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"eFH" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_s) +"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{ + dir = 9; + icon_state = "orange" + }, +/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{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"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) +"eGb" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"eGg" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/vehiclehangar) +"eGh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/scalpel{ + pixel_x = -1; + pixel_y = 10 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"eGl" = ( +/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{ + dir = 4; + icon_state = "bluecorner" + }, +/area/almayer/hallways/aft_hallway) +"eGr" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/surgery) +"eGs" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"eGz" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"eGB" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"eGF" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_s) +"eGH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"eHf" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"eHj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/corporateliason) +"eHx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/command/cichallway) +"eHY" = ( +/obj/structure/surface/rack, +/obj/item/device/taperecorder, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"eIA" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"eJd" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"eJg" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hull/lower_hull/l_m_s) +"eJh" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"eJu" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin5" + }, +/area/almayer/hallways/hangar) +"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{ + dir = 4; + icon_state = "outerhull_dir" + }, +/area/almayer/command/lifeboat) +"eJX" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/ce_room) +"eKg" = ( +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"eKD" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hull/upper_hull/u_a_s) +"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{ + icon_state = "test_floor5" + }, +/area/almayer/squads/req) +"eKJ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"eKK" = ( +/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{ + icon_state = "dark_sterile" + }, +/area/almayer/command/corporateliason) +"eKM" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"eKO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"eKT" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/living/offices) +"eLz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"eMh" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Laundry Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/laundry) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cichallway) +"eNi" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/ce_room) +"eNv" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"eNx" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"eNI" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "containmentlockdown_S"; + name = "\improper Containment Lockdown" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/containment) +"eNL" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"eOd" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_right_exhaust, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"eOh" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/evidence_storage) +"eOk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/lobby) +"eOr" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"eOM" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-6"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"eOR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"eOW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"ePk" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"ePs" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"ePA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"ePB" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/general_equipment) +"ePY" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop) +"eQi" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"eRe" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_medbay) +"eRL" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) +"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{ + icon_state = "plate" + }, +/area/almayer/living/starboard_garden) +"eSo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"eSU" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer1" + }, +/turf/open/floor/almayer_hull{ + icon_state = "outerhull_dir" + }, +/area/space) +"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) +"eTo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"eTN" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/shuttle/dropship/flight{ + disabled = 1 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"eTO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/stern_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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie_delta_shared) +"eUn" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/almayer{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/chemistry) +"eUz" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"eUA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"eUR" = ( +/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/corporateliason) +"eUU" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Spare Prison Uniforms" + }, +/obj/item/clothing/shoes/orange, +/obj/item/clothing/shoes/orange, +/obj/item/clothing/shoes/orange, +/obj/item/clothing/shoes/orange, +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/obj/item/clothing/under/color/orange, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"eVj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"eVm" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/living/briefing) +"eVQ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"eVT" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"eWp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/living/briefing) +"eWF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/basketball) +"eWY" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"eXo" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_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) +"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{ + dir = 5; + icon_state = "plating" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"eYz" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + dir = 1 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 29 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"eYC" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"eYH" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"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 + }, +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"eYR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering/port) +"eYW" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"eZi" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/port_hallway) +"eZj" = ( +/obj/structure/closet/secure_closet/guncabinet, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"eZz" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"eZH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"eZQ" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hull/upper_hull/u_a_p) +"fad" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"fau" = ( +/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/starboard_hallway) +"faO" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"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{ + icon_state = "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 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"fbo" = ( +/obj/structure/machinery/door_control{ + id = "kitchen2"; + name = "Main Kitchen Shutters"; + pixel_x = -28 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"fbv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/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{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"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{ + dir = 9; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"fbx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"fbB" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/upper_medical) +"fbY" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Execution Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/execution) +"fcf" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"fcy" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/hydroponics) +"fcB" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"fcE" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/living/basketball) +"fcF" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"fcG" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"fcI" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engine_core) +"fcM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/ce_room) +"fcP" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"fcX" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer/no_build{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"fdj" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"fdA" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"fdE" = ( +/obj/item/clothing/mask/rebreather/scarf, +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"fdX" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"fdZ" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lockerroom) +"feq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"feD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"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{ + icon_state = "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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_two) +"ffE" = ( +/turf/open/floor/almayer/no_build{ + icon_state = "plating" + }, +/area/almayer/command/airoom) +"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{ + icon_state = "plate" + }, +/area/almayer/shipboard/starboard_point_defense) +"fgl" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/perma) +"fgm" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/squads/req) +"fgo" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_m_p) +"fgx" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"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) +"fgF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"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) +"fhf" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"fhA" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"fhH" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering/starboard) +"fhQ" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/structure/machinery/light, +/obj/item/reagent_container/food/condiment/sugar, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"fiq" = ( +/turf/closed/wall/almayer, +/area/almayer/hull/lower_hull/l_m_p) +"fir" = ( +/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{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"fjO" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"fkn" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"fkO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"fkW" = ( +/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, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"fkX" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 8 + }, +/area/almayer/medical/containment/cell/cl) +"flE" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"flP" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"flW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/briefing) +"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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"fmB" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "bluecorner" + }, +/area/almayer/living/pilotbunks) +"fmS" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"fnl" = ( +/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{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/execution) +"fnx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door/window/eastright{ + access_modified = 1; + dir = 8; + req_access_txt = "19" + }, +/obj/structure/machinery/door/window/eastleft{ + req_access_txt = "19" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/briefing) +"fnA" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/device/radio, +/obj/item/device/flashlight, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/medical/upper_medical) +"fnC" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"fnI" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"fnQ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/tinted{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering/port) +"fnZ" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hull/upper_hull/u_a_s) +"foL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emeraldcorner" + }, +/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) +"foR" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"fpd" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"fps" = ( +/obj/structure/machinery/chem_master/industry_mixer, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"fpO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_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{ + icon_state = "plate" + }, +/area/almayer/engineering/starboard_atmos) +"fpT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/medical_science) +"fpW" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"fqc" = ( +/obj/structure/machinery/vending/cigarette, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/command/cichallway) +"fqe" = ( +/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 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"fqu" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"fqx" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/hull/upper_hull/u_m_p) +"fqO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"fqZ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"frl" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"frz" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/starboard_point_defense) +"frF" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/starboard_missiles) +"frJ" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/brig/armory) +"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/no_build{ + icon_state = "tcomms" + }, +/area/almayer/command/airoom) +"fsd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"fso" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + access_modified = 1; + name = "\improper Cryogenics Bay"; + req_access = null; + req_one_access_txt = "1;3" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/cryo) +"fsp" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"fsz" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/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 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/brig/armory) +"fsH" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"fsT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/brig/armory) +"fsU" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"fsV" = ( +/obj/structure/target, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/almayer/living/cryo_cells) +"ftf" = ( +/obj/effect/attach_point/crew_weapon/dropship2, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/almayer/hallways/hangar) +"fti" = ( +/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{ + icon_state = "mono" + }, +/area/almayer/hallways/vehiclehangar) +"ftl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"fut" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"fuz" = ( +/obj/structure/machinery/cm_vending/clothing/pilot_officer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"fuB" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"fuS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"fuT" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/engineering/laundry) +"fuX" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 8; + id = "Perma 2L"; + name = "\improper cell shutter" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/perma) +"fuY" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"fvd" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/upper_medical) +"fvf" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/living/briefing) +"fvu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"fvv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_p) +"fvB" = ( +/obj/structure/closet/secure_closet/staff_officer/armory/m4a1, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/command/cic) +"fvJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) +"fvK" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"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) +"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{ + icon_state = "plate" + }, +/area/almayer/living/starboard_garden) +"fwY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie_delta_shared) +"fxu" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8 + }, +/turf/closed/wall/almayer, +/area/almayer/engineering/lower_engineering) +"fxz" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/upper_engineering) +"fxO" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"fxW" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"fxZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/shipboard/weapon_room) +"fyD" = ( +/obj/structure/machinery/light, +/obj/structure/ladder{ + height = 1; + id = "cicladder2" + }, +/turf/open/floor/plating/almayer, +/area/almayer/living/briefing) +"fza" = ( +/turf/open/floor/almayer, +/area/almayer/hull/lower_hull/l_m_s) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/charlie) +"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) +"fAa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/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{ + dir = 9; + icon_state = "red" + }, +/area/almayer/living/offices/flight) +"fAo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"fAt" = ( +/obj/structure/largecrate/guns/merc{ + name = "\improper dodgy crate" + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"fAS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"fBf" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_a_s) +"fBD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"fBL" = ( +/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/aft_hallway) +"fBO" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"fCp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"fCL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"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{ + icon_state = "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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"fDn" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"fDG" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/engineering/upper_engineering) +"fDS" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"fDU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"fEg" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 15"; + buildstate = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"fEk" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/cichallway) +"fEC" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"fEN" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + dir = 4 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"fER" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/hangar) +"fEV" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"fFe" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"fFh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/autopsy_scanner, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/morgue) +"fFD" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"fFO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"fGg" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"fGH" = ( +/obj/effect/attach_point/electronics/dropship2{ + dir = 1 + }, +/obj/structure/shuttle/part/dropship2/transparent/inner_right_weapons, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"fGN" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"fGY" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = 25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"fHc" = ( +/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/hull/lower_hull/l_f_p) +"fHh" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"fHz" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"fHC" = ( +/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/aft_hallway) +"fHF" = ( +/turf/open/floor/almayer{ + icon_state = "greenfull" + }, +/area/almayer/living/offices) +"fHO" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"fHS" = ( +/obj/structure/sign/safety/rewire{ + pixel_y = -32 + }, +/obj/structure/machinery/door_control{ + id = "perma_lockdown"; + name = "\improper Perma Cells Lockdown"; + pixel_x = 6; + pixel_y = -24; + req_access_txt = "3" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"fIf" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"fIx" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"fIH" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"fIX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + access_modified = 1; + name = "\improper Requisitions Auxiliary Storage Room"; + req_one_access = "19;21" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/command/cichallway) +"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{ + dir = 6; + icon_state = "green" + }, +/area/almayer/shipboard/brig/cells) +"fJX" = ( +/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/hull/lower_hull/l_f_s) +"fJY" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/no_build{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/command/airoom) +"fKe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "tcomms" + }, +/area/almayer/command/airoom) +"fKg" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_s) +"fKl" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"fKT" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"fLn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"fLS" = ( +/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/phone_base/rotary{ + name = "Senior Enlisted Advisor Office Telephone"; + phone_category = "Almayer"; + phone_id = "Senior Enlisted Advisor's Office"; + pixel_x = -3 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/sea_office) +"fLX" = ( +/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_engineering) +"fMl" = ( +/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/no_build{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"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/machinery/door/poddoor/almayer/blended/white/open{ + closed_layer = 3.2; + id = "ARES Emergency"; + layer = 3.2; + name = "ARES Emergency Lockdown"; + needs_power = 0; + open_layer = 1.9; + plane = -7 + }, +/obj/structure/sign/safety/laser{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32; + pixel_y = 6 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"fMA" = ( +/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{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"fMW" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/living/pilotbunks) +"fNb" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/card{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"fNg" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"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) +"fNA" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"fNC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"fOk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"fOz" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/sea_office) +"fOJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering) +"fOL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "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{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/living/port_emb) +"fPu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"fPB" = ( +/obj/structure/machinery/ares/processor/apollo, +/turf/open/floor/almayer/no_build{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"fQk" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"fQu" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "CMO Shutters"; + name = "\improper CMO Office Shutters" + }, +/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) +"fQF" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"fQK" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/hull/upper_hull/u_m_p) +"fRr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "blue" + }, +/area/almayer/command/cichallway) +"fRC" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"fRN" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"fSl" = ( +/obj/structure/machinery/line_nexter{ + id = "line2"; + pixel_x = -2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/squads/req) +"fSm" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"fSK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"fTi" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hull/upper_hull/u_a_p) +"fTm" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"fTu" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hull/lower_hull/l_f_p) +"fTx" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"fTF" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Laundry Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/laundry) +"fTR" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"fTU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"fUn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/sign/poster{ + desc = "A large piece of cheap printed paper. This one proudly demands that you REMEMBER IO!"; + icon_state = "poster14"; + name = "propaganda poster"; + pixel_y = 32 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"fUA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"fVz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"fVG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/chemistry) +"fWT" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engineering_workshop) +"fXd" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"fXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"fXx" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"fXz" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/starboard_point_defense) +"fXB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"fXE" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) +"fXM" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_left_cap, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"fYb" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/morgue) +"fYc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"fYf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"fYn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"fYG" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"fYO" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin4" + }, +/area/almayer/hallways/hangar) +"fYX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/chief_mp_office) +"fYZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"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) +"fZx" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"fZF" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/briefing) +"gai" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"gaJ" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/cryo) +"gaO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"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{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"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/no_build{ + icon_state = "ai_floors" + }, +/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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"gbQ" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/corporateliason) +"gbX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"gcc" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"gcI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/phone_base/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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"gcK" = ( +/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/hull/lower_hull/l_a_s) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/sea_office) +"gcT" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"gdd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"gde" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"gdi" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"gdo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"gdp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/hangar) +"gds" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silvercorner" + }, +/area/almayer/hallways/repair_bay) +"gdO" = ( +/obj/effect/attach_point/weapon/dropship2/left_wing, +/obj/structure/shuttle/part/dropship2/transparent/lower_left_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"gdS" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/laundry) +"geg" = ( +/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 = "Dropship Remote Control Console"; + pixel_y = -12; + shuttleId = "dropship_normandy"; + disabled = 1 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/offices/flight) +"gek" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/fancy/cigarettes/wypacket, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"gel" = ( +/turf/closed/wall/almayer/research/containment/wall/west, +/area/almayer/medical/containment/cell/cl) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/medical_science) +"geH" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/stern_hallway) +"geW" = ( +/obj/structure/sign/prop1{ + pixel_y = 32 + }, +/obj/item/storage/fancy/cigar, +/obj/item/reagent_container/food/drinks/bottle/sake{ + layer = 3.6; + pixel_x = 9; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + layer = 3.6; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + layer = 3.6; + pixel_x = -9; + pixel_y = 16 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"geX" = ( +/obj/structure/pipes/vents/scrubber, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"gfk" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"gfo" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"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/no_build{ + icon_state = "tcomms" + }, +/area/almayer/command/airoom) +"gfE" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"gfS" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = -26 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"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{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"ggt" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"ggz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_four) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"ggQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/engineering/airmix) +"ghD" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"ghX" = ( +/obj/structure/window/reinforced/tinted{ + pixel_y = -8 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/tinted{ + dir = 8 + }, +/obj/item/toy/inflatable_duck, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/cells) +"gio" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"gip" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"gir" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/engineering/engineering_workshop) +"giB" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"giZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/cryo) +"gjm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"gjn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"gjq" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"gjt" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"gjv" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"gjw" = ( +/obj/structure/machinery/faxmachine/uscm/command{ + density = 0; + department = "AI Core"; + pixel_y = 32 + }, +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/computer/working_joe{ + dir = 8; + pixel_x = 17; + pixel_y = -6 + }, +/obj/item/storage/box/ids{ + pixel_x = -4 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"gjB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/command/computerlab) +"gjK" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"gka" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hull/lower_hull/l_f_s) +"gks" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"gkJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"glk" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "42" + }, +/area/almayer/hallways/hangar) +"gll" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"glr" = ( +/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/hull/lower_hull/l_m_s) +"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{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/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{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"glM" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"glU" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"gmb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + dir = 1; + name = "Storage"; + req_one_access_txt = "19;21" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"gmj" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/starboard_point_defense) +"gms" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"gnu" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/green, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"gnv" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"gnz" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"goj" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/weapon_room) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/port_emb) +"goD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"goL" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"goO" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "38" + }, +/area/almayer/hallways/hangar) +"gpc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/engineering{ + dir = 1; + name = "\improper Engineering North Hall" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/starboard) +"gpe" = ( +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"gpi" = ( +/obj/structure/dropship_equipment/rappel_system, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/hangar) +"gpI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"gpY" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/lifeboat_pumps/north1) +"gqq" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"gqK" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"gqP" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"gqW" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"grl" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"grG" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"grR" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/living/briefing) +"grX" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_p) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"gsm" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"gsH" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_p) +"gsL" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_p) +"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) +"gtp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/command/cichallway) +"guc" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"guC" = ( +/obj/item/paper_bin/wy, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/clicky, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliason) +"guS" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "silver" + }, +/area/almayer/command/cic) +"gvC" = ( +/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/hull/upper_hull/u_f_p) +"gvU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/squads/req) +"gwm" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"gwn" = ( +/obj/structure/machinery/ares/processor/bioscan, +/turf/open/floor/almayer/no_build{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"gwo" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "bluecorner" + }, +/area/almayer/living/basketball) +"gwu" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"gww" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"gwD" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/item/clipboard, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"gwF" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"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{ + icon_state = "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) +"gwW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"gwY" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + icon_state = "plate" + }, +/area/almayer/shipboard/starboard_point_defense) +"gxk" = ( +/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/hull/upper_hull/u_f_p) +"gxr" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"gxO" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "blue" + }, +/area/almayer/living/gym) +"gxP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/research/containment/floor2{ + dir = 8 + }, +/area/almayer/medical/containment/cell) +"gxU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"gyt" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"gyv" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"gyy" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"gyC" = ( +/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{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/starboard_hallway) +"gyN" = ( +/obj/structure/machinery/prop{ + desc = "It's a server box..."; + icon_state = "comm_server"; + name = "server box" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"gyO" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/ce_room) +"gzn" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/obj/structure/platform_decoration, +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"gzr" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/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) +"gzK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"gzV" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"gAd" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"gAe" = ( +/obj/structure/machinery/door_control{ + id = "ARES JoeCryo"; + name = "Working Joe Cryogenics Lockdown"; + pixel_x = 24; + pixel_y = 8; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"gAj" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/living/briefing) +"gAl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"gAt" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"gAA" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha_bravo_shared) +"gAS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"gBi" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"gBo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"gBW" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"gCd" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"gCf" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"gCl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"gCw" = ( +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 10 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"gCI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/shipboard/brig/cryo) +"gCP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"gDq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"gDW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"gEg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices/flight) +"gEo" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/delta) +"gEv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"gEK" = ( +/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/corporateliason) +"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{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"gFs" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"gFG" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"gGf" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"gGr" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/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) +"gGx" = ( +/obj/structure/filingcabinet/chestdrawer{ + density = 0; + pixel_x = -16 + }, +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"gGI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"gHg" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"gHo" = ( +/obj/structure/machinery/door/airlock/almayer/marine/delta/tl, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/delta) +"gHZ" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/ce_room) +"gII" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"gIJ" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/port) +"gIN" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"gJd" = ( +/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/hull/lower_hull/l_f_p) +"gJq" = ( +/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{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"gJP" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/living/offices) +"gKB" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/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{ + icon_state = "redfull" + }, +/area/almayer/shipboard/port_missiles) +"gKH" = ( +/obj/structure/bed/chair/comfy/charlie, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/living/briefing) +"gKJ" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"gKR" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"gKS" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"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{ + icon_state = "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) +"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{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/port) +"gLE" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/port_emb) +"gMa" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"gMf" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"gMx" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"gMA" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_m_p) +"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"; + indestructible = 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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"gMU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional{ + dir = 4 + }, +/area/almayer/living/briefing) +"gNd" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"gNi" = ( +/obj/structure/bed/chair/comfy/delta, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/briefing) +"gNp" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie_delta_shared) +"gNr" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "69" + }, +/area/almayer/hallways/hangar) +"gNx" = ( +/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/hull/lower_hull/l_m_p) +"gOs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 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/no_build{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"gPc" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"gPr" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -97; + vector_y = 65 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/no_build{ + dir = 4 + }, +/area/almayer/command/airoom) +"gPF" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"gQl" = ( +/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{ + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"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{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"gRd" = ( +/obj/structure/platform, +/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) +"gRn" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull) +"gRP" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"gSi" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network, +/obj/item/storage/box/tapes{ + pixel_x = -16 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"gSj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/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{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"gSs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"gSV" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 + }, +/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) +"gTl" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/cryo) +"gTx" = ( +/obj/structure/machinery/vending/security, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"gUf" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"gUv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"gUy" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"gUI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"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) +"gUN" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/no_build{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/almayer/command/airoom) +"gUV" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/containment) +"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) +"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) +"gWR" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"gXh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_s) +"gXl" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access_txt = "5" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) +"gXq" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"gXv" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_p) +"gXY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"gYe" = ( +/obj/structure/machinery/vending/sea, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/sea_office) +"gYl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"gYt" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/offices/flight) +"gYB" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_x = 27 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"gYS" = ( +/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/hull/upper_hull/u_m_p) +"gZr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/camera/siliconcam{ + pixel_x = -6; + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"gZw" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"gZG" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/lifeboat) +"had" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/command/lifeboat) +"ham" = ( +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lower_medical_lobby) +"haq" = ( +/turf/closed/wall/almayer, +/area/almayer/hull/lower_hull/l_a_p) +"har" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"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{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"haM" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"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{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"haT" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"hbu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/auxiliary_officer_office) +"hbI" = ( +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/medical/upper_medical) +"hbZ" = ( +/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{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"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{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/engineering/port_atmos) +"hcs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/vehiclehangar) +"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{ + icon_state = "plate" + }, +/area/almayer/living/cryo_cells) +"hcC" = ( +/obj/structure/disposalpipe/up/almayer{ + id = "almayerlink_OT_req" + }, +/turf/closed/wall/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"hcI" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/delta) +"hcZ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"hdd" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/starboard_missiles) +"hdg" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"hdh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"hds" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/living/offices) +"hdE" = ( +/obj/structure/filingcabinet, +/obj/item/reagent_container/food/drinks/coffeecup/uscm{ + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/squads/req) +"hdR" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"heb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"hec" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"hee" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"heg" = ( +/obj/structure/machinery/floodlight, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engine_core) +"heH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/lifeboat_pumps/north1) +"heK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/port_emb) +"heQ" = ( +/obj/structure/bed/chair, +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 21; + pixel_y = 27 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"heV" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/alpha_bravo_shared) +"hfk" = ( +/obj/item/trash/crushed_cup, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"hfm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/photocopier{ + anchored = 0 + }, +/obj/structure/sign/poster{ + desc = "A large piece of cheap printed paper. This one proudly demands that you REMEMBER IO!"; + icon_state = "poster14"; + name = "propaganda poster"; + pixel_y = 32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"hfw" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"hfy" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"hfO" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"hfQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"hgg" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"hgm" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"hgt" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engine_core) +"hgF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"hgH" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"hgL" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/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{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_three) +"hhe" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_umbilical) +"hhn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/living/offices) +"hhw" = ( +/turf/closed/wall/almayer, +/area/almayer/hull/lower_hull/l_m_s) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"hit" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bag/trash{ + pixel_x = -3 + }, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"hiB" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"hiM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"hiQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"hji" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"hjk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/delta) +"hjA" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/port_missiles) +"hjB" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Kitchen"; + req_one_access_txt = "30;19" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/grunt_rnr) +"hki" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"hkm" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"hkx" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"hkB" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/port_point_defense) +"hkE" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/port_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{ + icon_state = "silver" + }, +/area/almayer/command/cic) +"hlw" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"hlz" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"hlI" = ( +/obj/structure/girder, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cichallway) +"hlX" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"hmc" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"hme" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/hydroponics) +"hmy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"hmC" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha_bravo_shared) +"hmS" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/command/cichallway) +"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{ + icon_state = "sterile_green" + }, +/area/almayer/medical/hydroponics) +"hnV" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"hof" = ( +/obj/structure/machinery/computer/dropship_weapons/dropship2, +/obj/structure/phone_base/rotary{ + name = "Normandy Telephone"; + phone_category = "Dropship"; + phone_id = "Normandy"; + pixel_x = 11; + pixel_y = 16 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"hon" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"hop" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"hoX" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"hpf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"hpk" = ( +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"hpw" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "94" + }, +/area/almayer/hallways/hangar) +"hpz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"hpN" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer{ + icon_state = "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) +"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) +"hqs" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/medical_science) +"hrF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/starboard_point_defense) +"hrJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"hrX" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"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) +"hsr" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"hss" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/delta) +"hsW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"htb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/starboard) +"htI" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"htL" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/magazine/boots/n150{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "greenfull" + }, +/area/almayer/living/offices) +"huK" = ( +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/living/cryo_cells) +"huO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/briefing) +"huX" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"hvp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"hvw" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/plating, +/area/almayer/powered/agent) +"hvH" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"hwC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"hwQ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/execution) +"hwS" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"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) +"hxp" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuelCell, +/obj/item/fuelCell, +/obj/item/fuelCell, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"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{ + dir = 1; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"hyc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"hyk" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie_delta_shared) +"hyt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"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{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"hyz" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/processing) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"hyQ" = ( +/turf/closed/wall/almayer, +/area/almayer/living/synthcloset) +"hzb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"hzu" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/delta) +"hzx" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Chief MP's Office"; + req_access = null; + req_one_access_txt = "1;3" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMP Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/chief_mp_office) +"hzJ" = ( +/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" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/cells) +"hzL" = ( +/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/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/cic) +"hzM" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"hzV" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"hAc" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/flare, +/obj/item/mortar_shell/flare, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"hAz" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"hAG" = ( +/obj/structure/closet/crate/internals, +/obj/item/handcuffs/cable/blue, +/obj/item/handcuffs/cable/blue, +/obj/item/handcuffs/cable/cyan, +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/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{ + icon_state = "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{ + icon_state = "blue" + }, +/area/almayer/squads/delta) +"hBc" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"hBz" = ( +/obj/item/mortar_kit, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/squads/req) +"hBC" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/port_hallway) +"hBF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"hBU" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"hCc" = ( +/obj/effect/attach_point/weapon/dropship2/right_wing, +/obj/structure/shuttle/part/dropship2/transparent/lower_right_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"hCo" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"hCt" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/intercom{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/medical/lower_medical_medbay) +"hDw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"hDL" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"hDX" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"hEt" = ( +/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/hull/lower_hull/l_f_p) +"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{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"hFC" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"hFF" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + access_modified = 1; + name = "Autopsy"; + req_access_txt = "25"; + req_one_access = null + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/morgue) +"hFW" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"hGB" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"hGD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/squads/req) +"hGO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/living/briefing) +"hGZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"hHl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/pouch/general/large, +/turf/open/floor/almayer, +/area/almayer/living/bridgebunks) +"hHr" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"hHJ" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"hHR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/starboard_umbilical) +"hHU" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 7; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"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{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"hIL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "cl_shutters 2"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access_txt = "200"; + req_one_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/corporateliason) +"hJb" = ( +/obj/item/tool/pen, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"hJk" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"hJp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"hJu" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"hJz" = ( +/obj/structure/sign/safety/restrictedarea, +/obj/structure/sign/safety/security{ + pixel_x = 15 + }, +/turf/closed/wall/almayer, +/area/almayer/hull/lower_hull/l_f_s) +"hJJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"hKe" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/almayer, +/area/almayer/hull/lower_hull/l_f_s) +"hKi" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"hKq" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"hKQ" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"hKU" = ( +/obj/structure/machinery/door_control{ + id = "ARES StairsUpper"; + name = "ARES Core Access"; + pixel_x = -10; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/obj/structure/machinery/door_control{ + id = "ARES StairsLock"; + name = "ARES Exterior Lockdown"; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/obj/structure/surface/table/reinforced/almayer_B{ + climbable = 0; + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/structure/phone_base/rotary{ + name = "AI Reception Telephone"; + phone_category = "ARES"; + phone_color = "blue"; + phone_id = "AI Reception" + }, +/obj/structure/machinery/door_control{ + id = "ARES Emergency"; + name = "ARES Emergency Lockdown"; + pixel_x = 10; + pixel_y = -24; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"hLy" = ( +/obj/structure/shuttle/part/dropship2/transparent/middle_right_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"hLC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"hLI" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/living/cryo_cells) +"hLO" = ( +/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/aft_hallway) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/briefing) +"hMi" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"hMs" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"hMI" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars, +/obj/item/device/whistle{ + pixel_y = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"hMN" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_three) +"hNw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/squads/charlie) +"hND" = ( +/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{ + dir = 1; + name = "\improper Brig" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/main_office) +"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) +"hOe" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"hOR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/medical_science) +"hPg" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"hPh" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/living/auxiliary_officer_office) +"hPo" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"hPK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"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{ + dir = 5; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/hydroponics) +"hPT" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"hQc" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/squads/charlie_delta_shared) +"hQU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"hQY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"hRd" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"hRi" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"hRy" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/execution) +"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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"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{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"hSu" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_a_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, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/morgue) +"hSL" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/repair_bay) +"hTc" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"hTf" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"hTk" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/closed/wall/almayer/outer, +/area/almayer/hull/lower_hull/l_a_p) +"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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"hTt" = ( +/obj/structure/machinery/brig_cell/cell_1{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/processing) +"hTu" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"hTy" = ( +/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/aft_hallway) +"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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"hUc" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"hUg" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"hVz" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"hWa" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"hWq" = ( +/obj/structure/platform{ + layer = 3.1 + }, +/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) +"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{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"hWJ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"hWO" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/command/cichallway) +"hWU" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"hXb" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/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) +"hXS" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"hXV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"hXY" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"hYc" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_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{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"hYG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"hZj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"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{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"iag" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/command/cichallway) +"iaj" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliason) +"ial" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"iaq" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer{ + icon_state = "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) +"iaF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"iaR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"ibc" = ( +/obj/structure/machinery/conveyor_switch{ + id = "req_belt" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) +"icp" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"icw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"icX" = ( +/obj/structure/machinery/brig_cell/perma_2{ + pixel_x = -32; + pixel_y = -4 + }, +/obj/structure/machinery/door_control{ + id = "Perma 2L"; + name = "Perma 2 Lockdown"; + pixel_x = -24; + pixel_y = 12; + req_access_txt = "3" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"idu" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "48" + }, +/area/almayer/hallways/hangar) +"idx" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"idX" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"ieo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"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{ + icon_state = "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{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_lobby) +"ieF" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -97; + vector_y = 65 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/no_build{ + dir = 4 + }, +/area/almayer/command/airoom) +"ieH" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"ifR" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"igf" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"igh" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "59" + }, +/area/almayer/hallways/hangar) +"igp" = ( +/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/corporateliason) +"igr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "tcomms" + }, +/area/almayer/command/airoom) +"igt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"ihn" = ( +/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/hull/lower_hull/l_m_s) +"ihw" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"ihX" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"ihY" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/spec, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/bravo) +"iid" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_m_p) +"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{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"iiz" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/corporateliason) +"iiC" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"iiP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"iiZ" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/command/cichallway) +"ije" = ( +/obj/item/tool/weldingtool, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hull/upper_hull/u_a_p) +"ijn" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/farwacube{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/neaeracube{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/stokcube{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/reagent_container/food/snacks/monkeycube/wrapped/yirencube{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/corporateliason) +"ijp" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"ijU" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_s) +"ikM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network, +/obj/structure/machinery/computer/secure_data{ + pixel_x = 17 + }, +/obj/structure/machinery/computer/card{ + pixel_x = -16 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"ils" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_f_p) +"ilv" = ( +/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/corporateliason) +"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{ + icon_state = "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) +"ilZ" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"imo" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"imp" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/morgue) +"imy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"ina" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"ind" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "78" + }, +/area/almayer/hallways/hangar) +"inh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/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) +"inC" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"inG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"inL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"inN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) +"ioj" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/alpha_bravo_shared) +"ioU" = ( +/turf/closed/wall/almayer, +/area/almayer/command/securestorage) +"ioX" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"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) +"iph" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/almayer/dropship_two{ + pixel_x = 8; + pixel_y = -16 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"ipD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"ipE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/squads/alpha_bravo_shared) +"ipK" = ( +/obj/effect/step_trigger/message/memorial, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/starboard_garden) +"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{ + icon_state = "sterile_green" + }, +/area/almayer/medical/hydroponics) +"ipT" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"iqd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"iqn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) +"iqo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/living/auxiliary_officer_office) +"iqx" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"iqH" = ( +/obj/item/trash/chips{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/trash/cheesie, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"irn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"irr" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"iry" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south2) +"irJ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"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{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"isC" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 97; + vector_y = -65 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"isH" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"isN" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/morgue) +"isS" = ( +/obj/item/stack/sheet/cardboard{ + amount = 50 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/squads/req) +"isW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/hallways/aft_hallway) +"itf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "ARES Interior"; + indestructible = 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/no_build{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"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{ + icon_state = "bluefull" + }, +/area/almayer/command/cichallway) +"iub" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"iun" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"iur" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/command/cichallway) +"iuu" = ( +/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/hull/lower_hull/l_f_p) +"iuy" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/living/briefing) +"iuz" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/warhead, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"iuE" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"iuT" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"ivb" = ( +/obj/structure/shuttle/part/dropship2/lower_left_wall, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"ivf" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/camera, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"ivg" = ( +/obj/structure/janitorialcart, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"ivs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"ivz" = ( +/obj/structure/closet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"ivB" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"ivM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"ivY" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"iwh" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/engineering/laundry) +"iwI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/generic{ + access_modified = 1; + name = "Storage"; + req_one_access_txt = "19;21" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/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{ + dir = 8 + }, +/area/almayer/medical/containment/cell) +"iwW" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"ixj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lockerroom) +"ixv" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"ixC" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/stern_hallway) +"ixD" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"ixN" = ( +/obj/structure/largecrate, +/obj/item/folded_tent/reqs{ + pixel_x = -3; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"ixP" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"ixQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"ixY" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "32" + }, +/area/almayer/hallways/hangar) +"iyq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Warden Office" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/main_office) +"iyH" = ( +/obj/structure/surface/table/reinforced/almayer_B{ + climbable = 0; + desc = "A square metal surface resting on its fat metal bottom. You can't flip something that doesn't have legs. This one has a metal rail running above it, preventing something large passing over. Like you."; + indestructible = 1; + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"iyQ" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_f_s) +"iyS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/squads/delta) +"izk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"izr" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/structure/sign/poster/propaganda{ + pixel_x = -27 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"izx" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"izG" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"izU" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"izY" = ( +/obj/structure/machinery/autodoc_console, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"iAi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine/uscm/command{ + department = "AI Core"; + pixel_y = 8 + }, +/obj/structure/phone_base/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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"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{ + dir = 10; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/containment) +"iAB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"iAI" = ( +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"iAT" = ( +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/port_hallway) +"iBt" = ( +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_m_p) +"iBG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"iBY" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"iCe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/aft_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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cichallway) +"iCz" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"iCF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "green" + }, +/area/almayer/living/offices) +"iDd" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/vehiclehangar) +"iDm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_s) +"iDN" = ( +/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/starboard_hallway) +"iDQ" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "31" + }, +/area/almayer/hallways/hangar) +"iDT" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"iEb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"iEg" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "silver" + }, +/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) +"iEs" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_a_p) +"iFc" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"iFm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/hull/lower_hull/l_m_p) +"iFn" = ( +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/pilotbunks) +"iFp" = ( +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/command/computerlab) +"iFC" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8 + }, +/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) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/port_emb) +"iGd" = ( +/obj/item/device/radio/intercom/normandy{ + pixel_y = 24 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin6" + }, +/area/almayer/hallways/hangar) +"iGg" = ( +/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/hull/lower_hull/l_m_p) +"iGn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_four) +"iGK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"iGQ" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"iHc" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"iHF" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"iHG" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/shipboard/brig/cells) +"iIl" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"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/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = 10; + pixel_y = 22 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"iIY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"iJf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"iJB" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 10; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"iKb" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"iKc" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "cargo" + }, +/area/almayer/squads/alpha) +"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{ + icon_state = "red" + }, +/area/almayer/shipboard/starboard_missiles) +"iKK" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"iKM" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/port_atmos) +"iKX" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/general_equipment) +"iKZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"iLd" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"iLh" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"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/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_lobby) +"iLO" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"iMm" = ( +/turf/open/floor/almayer, +/area/almayer/living/grunt_rnr) +"iMr" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/bravo) +"iMx" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south2) +"iMI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"iNc" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "19" + }, +/area/almayer/hallways/hangar) +"iNZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"iOh" = ( +/obj/structure/machinery/light/small, +/obj/structure/machinery/status_display{ + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"iOD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"iPv" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/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{ + dir = 10; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"iPS" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/alpha) +"iQg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/lobby) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"iQj" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge4" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 9; + icon_state = "emerald" + }, +/area/almayer/living/port_emb) +"iQx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"iRr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"iRx" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"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{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"iRS" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"iSZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"iTf" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"iTw" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/bridgebunks) +"iTz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"iTI" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"iTK" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"iTN" = ( +/obj/item/stool{ + pixel_x = -15; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/briefing) +"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{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"iUW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/item/tool/crowbar/red, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"iUZ" = ( +/obj/docking_port/stationary/escape_pod/cl, +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_m_p) +"iVj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"iVo" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"iVy" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silvercorner" + }, +/area/almayer/command/cichallway) +"iVE" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"iVO" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"iVZ" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/black, +/obj/item/storage/bible/booze, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door_control{ + id = "CO-Office"; + name = "Door Control"; + normaldoorcontrol = 1; + pixel_x = 18; + req_access_txt = "31" + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"iWc" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"iWd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/stern_hallway) +"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) +"iWE" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"iWL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"iWN" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"iWR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering) +"iXb" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/briefing) +"iXt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"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{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_lobby) +"iYe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/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{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/medical/hydroponics) +"iYi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"iYj" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"iYp" = ( +/obj/item/paper/almayer_storage, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"iYr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/living/starboard_garden) +"iYt" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/squads/req) +"iYx" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"iZg" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"iZw" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -97; + vector_y = 65 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/no_build{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"iZG" = ( +/obj/structure/window/framed/almayer/hull, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/chief_mp_office) +"iZH" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emerald" + }, +/area/almayer/hallways/port_hallway) +"iZP" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"iZU" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"iZX" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hull/upper_hull/u_a_p) +"jac" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"jaj" = ( +/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/hull/upper_hull/u_a_p) +"jaH" = ( +/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{ + icon_state = "plating" + }, +/area/almayer/command/airoom) +"jaP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"jbb" = ( +/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/hull/lower_hull/l_m_p) +"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{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"jbB" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_s) +"jbH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"jbK" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/containment) +"jbO" = ( +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"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) +"jcK" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"jcP" = ( +/turf/open/floor/almayer{ + icon_state = "plating_striped" + }, +/area/almayer/engineering/upper_engineering/starboard) +"jcZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"jdk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_umbilical) +"jdm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/trash/USCMtray, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"jdy" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"jdG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_three) +"jdQ" = ( +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/item/tool/soap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"jea" = ( +/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/hull/lower_hull/l_a_p) +"jeb" = ( +/turf/closed/wall/almayer, +/area/almayer/squads/alpha_bravo_shared) +"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{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"jew" = ( +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"jeK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/shipboard/brig/general_equipment) +"jeO" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) +"jeQ" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/living/cryo_cells) +"jeU" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"jfm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"jfD" = ( +/obj/structure/sign/safety/security{ + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"jfK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"jfM" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"jfZ" = ( +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"jge" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "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{ + dir = 8 + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/living/auxiliary_officer_office) +"jgu" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 29 + }, +/turf/open/floor/almayer{ + icon_state = "sterile" + }, +/area/almayer/living/captain_mess) +"jgw" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/notunnel) +"jgC" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"jgF" = ( +/obj/structure/platform, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"jgJ" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/command/cichallway) +"jgM" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"jgU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"jhb" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = -6; + pixel_y = -6 + }, +/turf/closed/wall/almayer, +/area/almayer/living/cryo_cells) +"jhn" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_four) +"jht" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 6; + icon_state = "green" + }, +/area/almayer/living/offices) +"jhA" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"jhD" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"jhW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/bridgebunks) +"jhY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hull/upper_hull/u_m_p) +"jiw" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"jiX" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"jjn" = ( +/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/book/manual/medical_diagnostics_manual, +/obj/item/device/megaphone, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lower_medical_medbay) +"jjs" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/vehiclehangar) +"jjM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) +"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{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/medical_science) +"jjT" = ( +/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/port_hallway) +"jjZ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/vehicle/powerloader{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "cargo" + }, +/area/almayer/hallways/vehiclehangar) +"jkd" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/port_hallway) +"jkj" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "cargo" + }, +/area/almayer/engineering/starboard_atmos) +"jkl" = ( +/obj/structure/morgue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"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{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"jkS" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/main_office) +"jkV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/bolted{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/perma) +"jlj" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/farwadoll{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + icon_state = "therapyred"; + layer = 4.1; + name = "Sergeant Huggs"; + pixel_x = 7; + pixel_y = -1; + throwforce = 15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"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{ + dir = 5; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/containment) +"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{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"jmg" = ( +/obj/structure/largecrate/supply/ammo/shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_s) +"jmK" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/cryo_cells) +"jmP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"jmQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"jmR" = ( +/obj/structure/ladder/fragile_almayer{ + height = 2; + id = "kitchen" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"jmY" = ( +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/command/cichallway) +"jnf" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop) +"jnk" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"jnw" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"jnA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/brig/armory) +"jnD" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silvercorner" + }, +/area/almayer/shipboard/brig/cic_hallway) +"jnT" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/lobby) +"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) +"jor" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "43" + }, +/area/almayer/hallways/hangar) +"jox" = ( +/obj/structure/machinery/brig_cell/cell_3{ + pixel_x = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/engineering/laundry) +"joT" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"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{ + icon_state = "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) +"jpJ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"jpN" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cups{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/storage/box/cups, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"jpQ" = ( +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/lobby) +"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/white/open{ + closed_layer = 3.2; + id = "ARES Emergency"; + layer = 3.2; + name = "ARES Emergency Lockdown"; + needs_power = 0; + open_layer = 1.9; + plane = -7 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"jre" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/clothing/accessory/storage/webbing, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/squads/req) +"jrm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/bed/chair/comfy, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"jrM" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"jss" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/captain_mess) +"jsx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"jsP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"jtj" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"jtJ" = ( +/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{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/starboard_hallway) +"jup" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"juD" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"juN" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen{ + pixel_y = 7 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"juX" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"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{ + icon_state = "plate" + }, +/area/almayer/medical/lower_medical_medbay) +"jvc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/general_equipment) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/alpha) +"jvB" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/no_build{ + dir = 4 + }, +/area/almayer/command/airoom) +"jvI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"jvJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/command/cic) +"jvY" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/telecomms) +"jwD" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/door_control{ + id = "Secretroom"; + indestructible = 1; + layer = 2.5; + name = "Shutters"; + use_power = 0 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"jwK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/squads/alpha_bravo_shared) +"jxi" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"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) +"jxC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 7; + pixel_y = 29 + }, +/obj/structure/phone_base/rotary{ + name = "Reporter Telephone"; + phone_category = "Almayer"; + phone_id = "Reporter"; + pixel_x = -17; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) +"jxK" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"jyi" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"jyE" = ( +/obj/structure/machinery/light, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"jyR" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/hangar) +"jzD" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/notunnel) +"jzZ" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"jAi" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hallways/vehiclehangar) +"jAq" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "51" + }, +/area/almayer/hallways/hangar) +"jAz" = ( +/obj/structure/platform, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 6; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"jAB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/squads/req) +"jAG" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/masks, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/surgery) +"jAJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/port) +"jBy" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/morgue) +"jBB" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/firealarm, +/obj/item/circuitboard, +/obj/item/clipboard, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"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) +"jBX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/lifeboat) +"jCa" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"jCK" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"jDV" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 97; + vector_y = -65 + }, +/obj/structure/platform{ + dir = 4 + }, +/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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"jEs" = ( +/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/hull/lower_hull/l_f_p) +"jFe" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/item/frame/rack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"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) +"jFg" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/stern_hallway) +"jFh" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hull/lower_hull/l_f_s) +"jFE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"jFR" = ( +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"jFX" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_a_s) +"jGn" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "dark_sterile" + }, +/area/almayer/engineering/laundry) +"jGN" = ( +/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/port_hallway) +"jGR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"jHe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"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) +"jHC" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silvercorner" + }, +/area/almayer/command/computerlab) +"jHG" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"jHL" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"jHQ" = ( +/obj/structure/machinery/crema_switch{ + pixel_x = -24; + req_access_txt = "25" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"jIV" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"jJe" = ( +/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{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"jJk" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/living/port_emb) +"jJq" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/toxin{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"jJs" = ( +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"jKh" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"jKn" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/port_missiles) +"jKz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case/double, +/obj/item/cell/crap{ + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"jKA" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = 26 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"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{ + icon_state = "cargo" + }, +/area/almayer/engineering/port_atmos) +"jKJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = 30 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"jKK" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"jLj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/charlie) +"jLs" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/captain_mess) +"jLv" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"jLK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emerald" + }, +/area/almayer/hallways/port_hallway) +"jMb" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"jMi" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"jMm" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/mask/rebreather/scarf, +/turf/open/floor/almayer{ + icon_state = "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) +"jMt" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"jMG" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"jMK" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"jMQ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"jMR" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/containment/cell) +"jNq" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"jNt" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade/three, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"jOi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/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" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"jOo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/gym) +"jOu" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/machinery/faxmachine/uscm/brig, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"jOx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"jOG" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"jPf" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_s) +"jPq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"jQt" = ( +/turf/open/floor/almayer/research/containment/floor2{ + dir = 8 + }, +/area/almayer/medical/containment/cell) +"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{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"jRK" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/starboard) +"jRS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"jSo" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 9; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"jSw" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "green" + }, +/area/almayer/living/offices) +"jSY" = ( +/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/aft_hallway) +"jTi" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"jTj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/medical/upper_medical) +"jTu" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"jTI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie_delta_shared) +"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{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"jUn" = ( +/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/engineering_workshop/hangar) +"jUo" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"jUs" = ( +/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/aft_hallway) +"jUx" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SL-2"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"jUG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) +"jUL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"jUM" = ( +/obj/structure/machinery/camera/autoname/almayer/containment{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/medical_science) +"jUW" = ( +/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{ + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"jUY" = ( +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"jVa" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"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{ + icon_state = "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{ + icon_state = "test_floor5" + }, +/area/almayer/command/computerlab) +"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) +"jWt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"jWu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"jWH" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"jWU" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/starboard_hallway) +"jXf" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + id_tag = "or03"; + name = "Lobby" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"jXk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"jXW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"jXY" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"jYd" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/vehiclehangar) +"jYR" = ( +/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{ + dir = 4 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "tcomms" + }, +/area/almayer/command/airoom) +"jZd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_four) +"jZm" = ( +/obj/structure/machinery/brig_cell/cell_4{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"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{ + dir = 1 + }, +/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{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"jZO" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"jZU" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/medical/containment/cell/cl) +"jZY" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/medical/upper_medical) +"kaj" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"kam" = ( +/obj/item/tool/screwdriver{ + layer = 2.9; + pixel_x = -21; + pixel_y = -14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"kan" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/lower_medical_medbay) +"kat" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hull/lower_hull/l_m_s) +"kaA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"kaB" = ( +/obj/structure/machinery/cm_vending/gear/tl{ + density = 0; + pixel_x = -32; + vend_x_offset = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"kaF" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/starboard_hallway) +"kaI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/squads/charlie_delta_shared) +"kaN" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"kaS" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/camera{ + pixel_x = -9; + pixel_y = 16 + }, +/obj/item/storage/photo_album{ + pixel_x = -6; + pixel_y = -17 + }, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/bravo) +"kbx" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering) +"kbH" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 97; + vector_y = -65 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"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{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/containment) +"kbV" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"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) +"kcA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"kcH" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/synthcloset) +"kcN" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/living/commandbunks) +"kdi" = ( +/obj/item/device/flashlight/pen{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/engineering/laundry) +"kdt" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"kdB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"kep" = ( +/obj/structure/machinery/camera/autoname/almayer/dropship_two{ + dir = 4; + pixel_x = -16 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"keG" = ( +/obj/effect/attach_point/weapon/dropship2/left_fore, +/obj/structure/shuttle/part/dropship2/transparent/outer_left_weapons, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"keR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"kff" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"kfv" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/nanopaste{ + pixel_x = -3; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_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{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"kfN" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"kfP" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"kfU" = ( +/turf/open/floor/plating, +/area/almayer/powered/agent) +"kfX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"kge" = ( +/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/processing) +"kgr" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"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) +"khd" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie_delta_shared) +"khD" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices/flight) +"khE" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"khJ" = ( +/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{ + dir = 8 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "tcomms" + }, +/area/almayer/command/airoom) +"khS" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"kif" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"kij" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"kio" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/closet, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"kiF" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"kiM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"kiT" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"kiU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"kiV" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 11 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"kjN" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/surgery) +"kjV" = ( +/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/plushie_cade, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"kkt" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law, +/turf/open/floor/almayer{ + icon_state = "greenfull" + }, +/area/almayer/living/offices) +"kkx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"kkE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"kkO" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"klH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"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{ + icon_state = "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) +"kmK" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/item/tool/mop, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"kmL" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -7 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -10; + pixel_y = 14 + }, +/obj/item/storage/xeno_tag_case/full{ + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/corporateliason) +"kmM" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"kng" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"knH" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/sign/safety/coffee{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/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) +"koc" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"koz" = ( +/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/hull/lower_hull/l_m_p) +"koB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"koT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_p) +"kpc" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"kpl" = ( +/obj/structure/machinery/door_control{ + id = "cl_shutters"; + name = "Privacy Shutters"; + pixel_y = -20; + req_access_txt = "200" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/aft_hallway) +"kpo" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"kpQ" = ( +/obj/structure/machinery/door_control{ + id = "engidorm"; + pixel_x = 25; + pixel_y = 2 + }, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"kpX" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"kpY" = ( +/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/hull/lower_hull/l_f_p) +"kqc" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/glasses/welding, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"kqf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"kqt" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"kqK" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"kqN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "bluecorner" + }, +/area/almayer/living/basketball) +"kro" = ( +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"krp" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"krN" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/squads/req) +"krS" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"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{ + dir = 1; + icon_state = "green" + }, +/area/almayer/squads/req) +"ksp" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/bravo) +"ksA" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"ksN" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 6 + }, +/area/almayer/living/briefing) +"ksP" = ( +/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/hull/lower_hull/l_f_p) +"kta" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/evidence_storage) +"ktn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/brig/armory) +"ktB" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hull/lower_hull/l_m_s) +"ktO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"ktP" = ( +/obj/structure/curtain/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"ktX" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/living/grunt_rnr) +"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{ + dir = 4; + icon_state = "emeraldcorner" + }, +/area/almayer/living/briefing) +"kvh" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"kvz" = ( +/obj/structure/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/engineering/engine_core) +"kvU" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"kwd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering) +"kwo" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"kwq" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"kws" = ( +/obj/structure/machinery/line_nexter/med{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"kwz" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"kwQ" = ( +/obj/item/tool/warning_cone{ + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"kwS" = ( +/obj/structure/bookcase/manuals/medical, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"kxo" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"kxM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"kyI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"kyN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"kyP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/marine_food, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"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{ + dir = 6; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"kyZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_umbilical) +"kzb" = ( +/obj/structure/machinery/vending/walkman, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"kzk" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/command/computerlab) +"kzy" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"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{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"kzP" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/port_hallway) +"kzT" = ( +/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/no_build{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"kAa" = ( +/obj/structure/shuttle/part/dropship2/nose_front_left, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"kAh" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"kAm" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"kAr" = ( +/obj/structure/shuttle/part/dropship2/left_outer_wing_connector, +/turf/open/space/basic, +/area/almayer/hallways/hangar) +"kAs" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"kAU" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south2) +"kBo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"kBy" = ( +/obj/structure/machinery/ares/processor, +/turf/open/floor/almayer/no_build{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"kBC" = ( +/obj/structure/shuttle/part/dropship2/left_inner_wing_connector, +/turf/open/space/basic, +/area/almayer/hallways/hangar) +"kBK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"kBP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"kBY" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/tankerbunks) +"kCi" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/port_missiles) +"kCj" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/hydroponics) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/containment) +"kCS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/vehiclehangar) +"kCT" = ( +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"kDb" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"kDi" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"kDj" = ( +/obj/structure/bed, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/containment) +"kDA" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"kDR" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"kEb" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"kEp" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/morgue) +"kFe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"kFk" = ( +/obj/structure/closet/secure_closet/commander, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"kFq" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"kFs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"kFv" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "sterile_green_side" + }, +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/squads/req) +"kFY" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 7 + }, +/turf/closed/wall/almayer, +/area/almayer/living/cryo_cells) +"kGt" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"kGF" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"kGI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"kGL" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"kGQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/research/containment/corner_var1{ + icon_state = "containment_corner_variant_2" + }, +/area/almayer/medical/containment/cell) +"kGX" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engine_core) +"kHa" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/surgery) +"kHc" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "10" + }, +/area/almayer/hallways/hangar) +"kHd" = ( +/obj/structure/machinery/computer/arcade, +/obj/item/prop/helmetgarb/spacejam_tickets{ + pixel_x = 4; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"kHj" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"kHK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"kHS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"kHT" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"kHY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"kIm" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/starboard_umbilical) +"kIP" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/charlie) +"kJi" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"kJC" = ( +/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_engineering) +"kJG" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"kJK" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) +"kJL" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"kJV" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"kKb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/grunt_rnr) +"kKv" = ( +/obj/effect/projector{ + name = "Almayer_AresUp"; + vector_x = -97; + vector_y = 65 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/no_build{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"kKG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"kKL" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"kKR" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"kKX" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/plasticflaps, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/hull/lower_hull/l_m_p) +"kLc" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;7" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"kLp" = ( +/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{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/starboard_hallway) +"kLP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "greencorner" + }, +/area/almayer/squads/req) +"kMq" = ( +/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/hull/upper_hull/u_a_p) +"kMt" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "75" + }, +/area/almayer/hallways/hangar) +"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{ + dir = 8; + icon_state = "outerhull_dir" + }, +/area/almayer/engineering/upper_engineering/port) +"kNi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"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) +"kNx" = ( +/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/machinery/cm_vending/sorted/medical/chemistry, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"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) +"kNY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/weapon_room) +"kOf" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"kOi" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/perma) +"kOk" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"kOv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/shipboard/port_missiles) +"kOA" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "96" + }, +/area/almayer/hallways/hangar) +"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{ + icon_state = "bluefull" + }, +/area/almayer/living/pilotbunks) +"kOG" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"kPo" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"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{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/chemistry) +"kPB" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/living/basketball) +"kPG" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"kPJ" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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) +"kQz" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + 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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_p) +"kQU" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"kRd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_three) +"kRu" = ( +/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/hull/lower_hull/l_m_p) +"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) +"kSd" = ( +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"kSv" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/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/no_build{ + icon_state = "tcomms" + }, +/area/almayer/command/airoom) +"kSJ" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"kSN" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"kTc" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/brig/armory) +"kTq" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"kTv" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"kTx" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"kTM" = ( +/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/hull/upper_hull/u_f_s) +"kTN" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "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) +"kUt" = ( +/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/hull/lower_hull/l_m_p) +"kUw" = ( +/obj/structure/surface/rack, +/obj/item/storage/bag/trash{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/bag/trash{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/storage/bag/trash{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/port) +"kUQ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"kUV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"kVX" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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{ + icon_state = "greencorner" + }, +/area/almayer/squads/req) +"kWq" = ( +/obj/structure/sign/safety/synth_storage{ + pixel_x = 8; + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silvercorner" + }, +/area/almayer/command/cichallway) +"kWT" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "blue" + }, +/area/almayer/living/pilotbunks) +"kWY" = ( +/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/hull/lower_hull/l_f_p) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"kXf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"kXj" = ( +/turf/open/floor/almayer/no_build{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"kXu" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"kXw" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"kXJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"kXK" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"kXN" = ( +/obj/item/clothing/glasses/sunglasses/aviator{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/engineering/laundry) +"kYa" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"kYv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"kYP" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"kYU" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/aft_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{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"kZA" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/port_umbilical) +"kZN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/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{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"lah" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "emerald" + }, +/area/almayer/living/gym) +"laj" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"lau" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"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/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + name = "\improper Engineering Reception" + }, +/turf/open/floor/almayer{ + icon_state = "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) +"lbb" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"lbf" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/charlie) +"lbB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"lbX" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"lcg" = ( +/obj/structure/machinery/ares/substrate, +/turf/open/floor/almayer/no_build{ + icon_state = "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{ + icon_state = "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) +"ldj" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/platform, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"ldl" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"ldt" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_1"; + name = "treadmill" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"ldu" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"ldC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"ldD" = ( +/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/general_equipment) +"ldN" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"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 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"leg" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/hallways/hangar) +"leh" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"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) +"leY" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"lfH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/living/basketball) +"lfQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"lfW" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 14; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"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) +"lgK" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"lgX" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"lgY" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"lht" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"lhu" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"lhv" = ( +/obj/structure/machinery/door_control{ + id = "CMO Shutters"; + name = "Office Shutters"; + pixel_y = -20; + req_access_txt = "5" + }, +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"lhL" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"lhX" = ( +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/basketball) +"lid" = ( +/obj/structure/machinery/chem_master{ + vial_maker = 1 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"lin" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 97; + vector_y = -65 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"ljG" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/condiment/coldsauce, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"ljL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/phone_base{ + name = "CMO Office Telephone"; + phone_category = "Offices"; + phone_id = "CMO Office"; + pixel_y = 29 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"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{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"lkd" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/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{ + dir = 6; + icon_state = "red" + }, +/area/almayer/living/offices/flight) +"lkM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"llM" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"llO" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"lmk" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"lml" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"lmn" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "92" + }, +/area/almayer/hallways/hangar) +"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/white/hull, +/area/space) +"lmK" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/securestorage) +"lne" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"lnm" = ( +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/living/briefing) +"lnt" = ( +/turf/open/floor/almayer{ + icon_state = "silvercorner" + }, +/area/almayer/shipboard/brig/cic_hallway) +"lnJ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"lnP" = ( +/obj/structure/machinery/vending/cola, +/obj/structure/window/reinforced, +/turf/open/floor/prison{ + icon_state = "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/no_build{ + icon_state = "ai_floors" + }, +/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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"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{ + icon_state = "rasputin3" + }, +/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{ + icon_state = "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{ + dir = 8; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"lpt" = ( +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/squads/charlie_delta_shared) +"lpy" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/powered/agent) +"lpD" = ( +/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{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/starboard_hallway) +"lpS" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"lpX" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"lqF" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"lqI" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"lqJ" = ( +/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/aft_hallway) +"lqK" = ( +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/hallways/hangar) +"lqN" = ( +/obj/item/device/assembly/mousetrap/armed, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/living/port_emb) +"lra" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Disposals" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_m_p) +"lrb" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hull/upper_hull/u_f_p) +"lre" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"lrq" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/armory) +"lrs" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"lrF" = ( +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"lrT" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"lrV" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 3"; + name = "Cell 3" + }, +/obj/structure/sign/safety/three{ + pixel_x = 31 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"lrW" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/obj/item/storage/firstaid/adv, +/turf/open/floor/almayer{ + icon_state = "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) +"lsb" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cichallway) +"lsD" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"ltb" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) +"lto" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/containment) +"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{ + dir = 5; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"ltK" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "hypersleep curtain" + }, +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_m_p) +"ltR" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_x = -30 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"ltU" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) +"ltX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/main_office) +"lue" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"luk" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/head/helmet/marine/tech/tanker, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"lut" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"luu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"luw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 2; + name = "Brig" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/processing) +"luz" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"luC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/perma) +"luH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"luY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cic) +"lvA" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/living/pilotbunks) +"lvZ" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 8; + id = "Perma 1L"; + name = "\improper cell shutter" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/perma) +"lwi" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_a_p) +"lwm" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"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) +"lwJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/squads/charlie) +"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{ + icon_state = "plate" + }, +/area/almayer/living/auxiliary_officer_office) +"lxT" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"lxW" = ( +/obj/structure/sign/prop2{ + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/auxiliary_officer_office) +"lyi" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/pistachios, +/obj/item/tool/lighter/random{ + pixel_x = 13 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"lyk" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/squads/req) +"lyw" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"lyE" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/command/computerlab) +"lyQ" = ( +/obj/item/device/radio/intercom/normandy{ + layer = 3.5; + pixel_x = 21; + pixel_y = 43 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"lyX" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + req_access = null; + req_access_txt = 37; + req_one_access = null + }, +/turf/open/floor/almayer{ + icon_state = "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) +"lzj" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"lzn" = ( +/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/hull/lower_hull/l_m_s) +"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/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/command/securestorage) +"lzx" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/main_office) +"lzA" = ( +/obj/structure/machinery/sleep_console{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"lzH" = ( +/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/hull/upper_hull/u_f_s) +"lzW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"lAl" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"lAu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"lAA" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_a_p) +"lAO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"lAP" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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{ + dir = 8; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"lBg" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/engineering/laundry) +"lBi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"lBv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"lBz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"lBF" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/clipboard, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/squads/req) +"lBR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"lBY" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"lCt" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/containment) +"lCz" = ( +/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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"lCM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"lCS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/aft_hallway) +"lDg" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"lDJ" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/starboard_hallway) +"lDL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/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{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"lDV" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = 26 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"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{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering) +"lEv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/lobby) +"lEF" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"lEO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"lEW" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"lFb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/living/port_emb) +"lFm" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/securestorage) +"lFn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/morgue) +"lFs" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"lFt" = ( +/obj/structure/machinery/portable_atmospherics/powered/pump, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "cargo" + }, +/area/almayer/engineering/starboard_atmos) +"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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"lFF" = ( +/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/hull/lower_hull/l_m_p) +"lFK" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"lGh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"lGr" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"lGu" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"lGG" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_s) +"lGL" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"lHc" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 26 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"lHu" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "greencorner" + }, +/area/almayer/living/grunt_rnr) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/grunt_rnr) +"lIa" = ( +/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 + }, +/obj/item/book/manual/robotics_cyborgs{ + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) +"lIh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"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) +"lIw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/stern_hallway) +"lII" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/port_atmos) +"lIU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering/port) +"lIV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_p) +"lJa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/engineering_workshop) +"lJg" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"lJu" = ( +/obj/structure/barricade/metal{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/cryo_cells) +"lJv" = ( +/obj/structure/window/framed/almayer/white, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/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) +"lJG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"lJK" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/offices) +"lJO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/alpha_bravo_shared) +"lKk" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"lLC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"lLS" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"lLV" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"lMc" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"lMw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) +"lMA" = ( +/obj/structure/shuttle/part/dropship2/transparent/left_outer_bottom_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"lMM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/aft_hallway) +"lMY" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"lNl" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"lNs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/door_control{ + id = "cmp_armory"; + name = "Armory Lockdown"; + pixel_x = 24; + pixel_y = -6; + req_access_txt = "4" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"lNy" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"lNF" = ( +/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{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/execution) +"lOl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/command/corporateliason) +"lOr" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/medical_science) +"lPz" = ( +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/command/securestorage) +"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{ + dir = 8; + icon_state = "orange" + }, +/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{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/command/securestorage) +"lQj" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"lQq" = ( +/obj/structure/bed, +/obj/item/bedsheet/hop, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"lQu" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"lQz" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"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{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/operating_room_three) +"lQQ" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/port_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{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"lRE" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"lRP" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/chaplain_patch, +/turf/open/floor/wood/ship, +/area/almayer/living/chapel) +"lRU" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"lRX" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/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{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/living/briefing) +"lSD" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"lTt" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"lTK" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"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{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"lWh" = ( +/obj/structure/machinery/pipedispenser/orderable, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"lWr" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"lXg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/structure/machinery/computer/working_joe{ + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"lXF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull) +"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{ + dir = 8; + icon_state = "green" + }, +/area/almayer/living/offices) +"lYi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"lYk" = ( +/obj/item/trash/c_tube{ + pixel_x = 16; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"lYu" = ( +/obj/item/tool/wet_sign, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"lYA" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hull/upper_hull/u_m_s) +"lYL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/hydroponics) +"lYN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"lYZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"lZB" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"lZO" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"lZZ" = ( +/obj/structure/machinery/autolathe/medilathe/full, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/hydroponics) +"maa" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"maq" = ( +/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/corporateliason) +"maw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_m_s) +"maH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base{ + 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{ + icon_state = "redfull" + }, +/area/almayer/shipboard/starboard_missiles) +"maI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"maL" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/protein_pack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"maT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"mbn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower_engineering) +"mce" = ( +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/aft_hallway) +"mcL" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"mcV" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"mcW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"mdo" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"mdJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"mdS" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"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{ + icon_state = "blue" + }, +/area/almayer/squads/delta) +"meJ" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"meN" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Under Construction Shutters"; + name = "\improper Construction Site" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_p) +"meS" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"meY" = ( +/turf/closed/wall/almayer{ + damage_cap = 15000 + }, +/area/almayer/squads/alpha) +"mfe" = ( +/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/hull/lower_hull/l_f_s) +"mfI" = ( +/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/hull/lower_hull/l_a_p) +"mfM" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/megaphone, +/obj/structure/window/reinforced/ultra, +/obj/structure/window/reinforced/ultra{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/living/briefing) +"mfQ" = ( +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"mgj" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"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{ + icon_state = "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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"mhl" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"mhm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"mhG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"mhI" = ( +/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 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"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) +"miK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"miV" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"mji" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"mjR" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_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{ + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"mkh" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"mkk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/lobby) +"mkx" = ( +/obj/structure/machinery/door_control{ + id = "cl_shutters 2"; + name = "Quarters Shutters"; + pixel_x = -25; + req_access_txt = "200" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/command/corporateliason) +"mkG" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"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/no_build{ + icon_state = "tcomms" + }, +/area/almayer/command/airoom) +"mlm" = ( +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/cryo_cells) +"mlp" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_s) +"mlz" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"mlH" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"mmC" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"mmG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 + }, +/obj/structure/phone_base/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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"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) +"mnf" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/squads/req) +"mng" = ( +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/living/briefing) +"mni" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"mnm" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"mnA" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mnG" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"mnI" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "sterile_green" + }, +/area/almayer/medical/containment) +"moh" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"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) +"moE" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_s) +"moI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha_bravo_shared) +"moM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/delta) +"moQ" = ( +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/living/briefing) +"moY" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"mpR" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/two{ + dir = 8; + id = "starboard_door" + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"mqg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"mqo" = ( +/obj/structure/bed/chair/bolted{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"mqU" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_two) +"mrc" = ( +/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/hull/upper_hull/u_f_s) +"mru" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"mrB" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"mrD" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"mrL" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"mrM" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/containment) +"msm" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"msP" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"msV" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"msZ" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"mtD" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"mtE" = ( +/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/hull/upper_hull/u_f_p) +"mtM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"mtN" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"mtX" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/rifle/m41aMK1/ap, +/obj/item/ammo_magazine/rifle/m41aMK1/ap, +/obj/item/weapon/gun/rifle/m41aMK1/ap, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/command/cic) +"mub" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"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{ + icon_state = "bluecorner" + }, +/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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_medbay) +"mwQ" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"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) +"mxL" = ( +/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/hull/lower_hull/l_f_p) +"myn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"myo" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/soft/purple, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"myC" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"myJ" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/squads/req) +"myT" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"mzb" = ( +/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 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"mzg" = ( +/turf/open/floor/almayer{ + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"mzo" = ( +/turf/closed/wall/almayer, +/area/almayer/hull/lower_hull/l_f_p) +"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{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/hydroponics) +"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) +"mzO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/engineering/engine_core) +"mzR" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"mzV" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/living/port_emb) +"mAp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"mAr" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/brig/armory) +"mAT" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "bot_armory"; + name = "\improper Armory Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Armory" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/armory) +"mAV" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/delta) +"mBb" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"mBc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/pilotbunks) +"mBk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"mBp" = ( +/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; + name = "\improper Astronavigational Deck"; + req_access = null; + req_one_access_txt = "3;19" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/navigation) +"mBA" = ( +/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/hull/upper_hull/u_f_p) +"mBJ" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"mCo" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/squads/req) +"mCF" = ( +/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/phone_base/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) +"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{ + icon_state = "green" + }, +/area/almayer/squads/req) +"mDJ" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"mDT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/charlie_delta_shared) +"mDW" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/living/briefing) +"mEb" = ( +/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{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"mEE" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"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/white/open{ + closed_layer = 3.2; + id = "ARES Emergency"; + layer = 3.2; + name = "ARES Emergency Lockdown"; + needs_power = 0; + open_layer = 1.9; + plane = -7 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"mFO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"mGe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"mGn" = ( +/obj/structure/machinery/cm_vending/clothing/military_police_warden, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"mGu" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/securestorage) +"mGL" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"mGP" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "82" + }, +/area/almayer/hallways/hangar) +"mHm" = ( +/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/port_hallway) +"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{ + icon_state = "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) +"mHD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"mHE" = ( +/turf/open/floor/almayer/no_build{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"mHO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/living/pilotbunks) +"mHR" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"mIA" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"mIB" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"mIW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "blue" + }, +/area/almayer/hallways/aft_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{ + icon_state = "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{ + dir = 8; + icon_state = "silver" + }, +/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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"mJL" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/living/pilotbunks) +"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{ + dir = 8; + icon_state = "orange" + }, +/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{ + dir = 10; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"mKf" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"mKh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/cryo) +"mKq" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/bridgebunks) +"mKw" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"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{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"mKX" = ( +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"mKY" = ( +/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/port_hallway) +"mLb" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/item/toy/deck/uno{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/toy/deck{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"mLu" = ( +/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/port_umbilical) +"mLz" = ( +/obj/structure/machinery/door_control{ + id = "pobunk1"; + name = "PO1 Privacy Shutters"; + pixel_x = -24 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"mLE" = ( +/turf/open/floor/plating, +/area/almayer/command/airoom) +"mLF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/alpha) +"mLI" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/perma) +"mLJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) +"mLR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"mLU" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"mMp" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "73" + }, +/area/almayer/hallways/hangar) +"mMV" = ( +/obj/structure/pipes/vents/scrubber, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"mNf" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"mNm" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"mNI" = ( +/obj/structure/machinery/door/window/westleft{ + dir = 2 + }, +/obj/structure/machinery/shower, +/obj/item/tool/soap, +/turf/open/floor/almayer{ + icon_state = "sterile" + }, +/area/almayer/medical/upper_medical) +"mNR" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"mNW" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/storage/firstaid/rad, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"mNX" = ( +/turf/open/floor/almayer_hull{ + dir = 4; + icon_state = "outerhull_dir" + }, +/area/space/almayer/lifeboat_dock) +"mNZ" = ( +/obj/item/trash/uscm_mre, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"mOb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/starboard_garden) +"mOg" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/engineering/laundry) +"mOi" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/command/airoom) +"mOr" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/tool/lighter, +/obj/item/device/flashlight/lamp, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"mOL" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"mOU" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"mPf" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 6 + }, +/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" + }, +/turf/open/floor/almayer{ + icon_state = "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) +"mPX" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"mQc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"mQC" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/port_atmos) +"mQH" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"mQV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"mQW" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"mRl" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"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/machinery/door/poddoor/almayer/blended/white/open{ + closed_layer = 3.2; + id = "ARES Emergency"; + layer = 3.2; + name = "ARES Emergency Lockdown"; + needs_power = 0; + open_layer = 1.9; + plane = -7 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -18; + pixel_y = -8 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = -18; + pixel_y = 6 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"mRS" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"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) +"mSs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"mSz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/crew/alt, +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/command/securestorage) +"mSK" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/medical/hydroponics) +"mSP" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_p) +"mSU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/squads/charlie_delta_shared) +"mTb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "cargo" + }, +/area/almayer/living/offices) +"mTm" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"mTn" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/starboard_hallway) +"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{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/medical/hydroponics) +"mUa" = ( +/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/starboard_hallway) +"mUn" = ( +/obj/structure/machinery/conveyor_switch{ + id = "lower_garbage" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"mUq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"mUx" = ( +/obj/structure/machinery/door/airlock/almayer/marine/bravo/sl, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/bravo) +"mUz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer/ares{ + dir = 8; + pixel_x = 17 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"mUC" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"mUQ" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"mUZ" = ( +/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_engineering) +"mVi" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/cryo) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"mVZ" = ( +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_x = -27 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"mWe" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"mWs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"mWw" = ( +/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/port_hallway) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/alpha_bravo_shared) +"mWD" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/bridgebunks) +"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{ + dir = 9; + icon_state = "blue" + }, +/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{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"mXj" = ( +/turf/closed/wall/almayer, +/area/almayer/living/commandbunks) +"mXU" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"mYs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"mYv" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + negdir = 4; + posdir = 1 + }, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"mYw" = ( +/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{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/port_hallway) +"mYY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"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{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/command/cichallway) +"mZr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/port_point_defense) +"mZA" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "cl_shutters 3"; + name = "\improper Privacy Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/corporateliason) +"mZF" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "s_engi_ext" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/notunnel) +"mZM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"naf" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"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) +"naB" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/perma) +"naQ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering/port) +"naR" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/living/gym) +"nbb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/phone_base{ + dir = 8; + name = "Medical Telephone"; + phone_category = "Almayer"; + phone_id = "Medical Lower"; + pixel_x = 16 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lockerroom) +"nbm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/phone_base{ + dir = 8; + name = "OT Telephone"; + phone_category = "Almayer"; + phone_id = "Ordnance Tech"; + pixel_x = 14 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"nbB" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"ncp" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"ncE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/autodispenser{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"ndx" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"ndJ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"ndM" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"ndQ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"ndZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"nel" = ( +/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/engineering_workshop) +"new" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = 11 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"neE" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"neO" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"neP" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/two, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"neS" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/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{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"nfp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/stern_hallway) +"nfI" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"nfS" = ( +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"ngf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"ngl" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"ngs" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"ngw" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/frag, +/obj/item/mortar_shell/frag, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"ngI" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/living/briefing) +"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{ + icon_state = "silver" + }, +/area/almayer/living/briefing) +"nho" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_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) +"nhG" = ( +/obj/structure/surface/table/almayer, +/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" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"nig" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/ce_room) +"nis" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"niK" = ( +/obj/item/device/radio/intercom/normandy{ + pixel_y = 24 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin7" + }, +/area/almayer/hallways/hangar) +"niL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/medical_science) +"niR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "red" + }, +/area/almayer/squads/alpha) +"njy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"njD" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"njL" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emerald" + }, +/area/almayer/hallways/port_hallway) +"njT" = ( +/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/hull/lower_hull/l_a_p) +"njX" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "14" + }, +/area/almayer/hallways/hangar) +"nka" = ( +/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{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/vehiclehangar) +"nkn" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/starboard_missiles) +"nlB" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/living/briefing) +"nlH" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/cells) +"nlW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"nmb" = ( +/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_engineering) +"nmh" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"nmx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"nmD" = ( +/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/port_hallway) +"nmK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"nmV" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/command/securestorage) +"nna" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"nnc" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"nne" = ( +/obj/structure/ladder{ + height = 2; + id = "bridge2" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cichallway) +"nnr" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"nny" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"nnz" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/firingrange{ + pixel_x = 32; + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"nnD" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Down4"; + vector_x = 19; + vector_y = -104 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/stair_clone/upper) +"nnF" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"noj" = ( +/obj/structure/largecrate, +/obj/structure/prop/server_equipment/laptop{ + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"noo" = ( +/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, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/armory) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/hydroponics) +"noV" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"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) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/containment) +"npB" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/surface/rack{ + density = 0; + pixel_x = 26 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"nqx" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"nqD" = ( +/obj/item/ammo_box/magazine/misc/mre, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"nqG" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"nqU" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"nqV" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"nqZ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30; + pixel_y = -6 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"nrt" = ( +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"nrw" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emeraldcorner" + }, +/area/almayer/squads/charlie) +"nrz" = ( +/obj/structure/surface/rack, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/hatchet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"nrN" = ( +/obj/structure/machinery/sleep_console, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"nrO" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/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) +"nsu" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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/poster/propaganda{ + pixel_y = 34 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/squads/req) +"ntj" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/computerlab) +"ntm" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/machinery/door_control{ + id = "CMP Office Shutters"; + name = "CMP Office Shutters"; + pixel_x = -24; + pixel_y = 8; + req_one_access_txt = "24;31" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) +"ntr" = ( +/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/corporateliason) +"ntt" = ( +/obj/item/stool, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"ntu" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/port_emb) +"ntA" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"ntI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"nub" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/living/starboard_garden) +"nun" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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{ + icon_state = "bluefull" + }, +/area/almayer/living/briefing) +"nuY" = ( +/obj/structure/closet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"nvi" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "25" + }, +/area/almayer/hallways/hangar) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"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{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"nwu" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"nwv" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/tool/lighter/zippo/gold, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"nwx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/port_missiles) +"nwz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/lobby) +"nwD" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/command/cic) +"nwG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) +"nwL" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"nwU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering/starboard) +"nwW" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/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{ + dir = 6; + icon_state = "green" + }, +/area/almayer/squads/req) +"nxq" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Warden Office" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/main_office) +"nxK" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"nyw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/briefing) +"nyz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"nyG" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"nyQ" = ( +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"nyZ" = ( +/obj/effect/attach_point/weapon/dropship2/right_fore, +/obj/structure/shuttle/part/dropship2/transparent/outer_right_weapons, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"nza" = ( +/obj/structure/bed/chair/comfy/charlie, +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/item/trash/uscm_mre, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/living/briefing) +"nzv" = ( +/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{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"nzA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"nzI" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"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) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/alpha_bravo_shared) +"nBb" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"nBc" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"nBo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"nBt" = ( +/obj/effect/attach_point/fuel/dropship2, +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "28" + }, +/area/almayer/hallways/hangar) +"nBu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"nBw" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/living/briefing) +"nBE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/living/pilotbunks) +"nBW" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"nCT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"nDd" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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) +"nDL" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/surface/rack, +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/obj/item/stack/sheet/wood/large_stack, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/port) +"nDM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"nEo" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/donut_box{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"nEs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_umbilical) +"nEA" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"nEF" = ( +/obj/structure/machinery/conveyor_switch{ + id = "gym_1"; + name = "treadmill switch" + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"nEG" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/access_button/airlock_exterior, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"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{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"nEJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"nFm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/surgery/scalpel, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cichallway) +"nFr" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/aft_hallway) +"nFs" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/starboard_point_defense) +"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/structure/machinery/door/firedoor/border_only/almayer, +/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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"nFK" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"nFV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering) +"nGc" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"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{ + icon_state = "plate" + }, +/area/almayer/shipboard/port_point_defense) +"nHg" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"nHh" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/command/computerlab) +"nHF" = ( +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_m_s) +"nHJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/living/cryo_cells) +"nHV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"nIj" = ( +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/living/offices) +"nIt" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/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{ + icon_state = "bluefull" + }, +/area/almayer/command/cichallway) +"nIE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/port_missiles) +"nIG" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/command/securestorage) +"nIS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/basketball) +"nIW" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"nJo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) +"nJs" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"nJu" = ( +/obj/item/newspaper, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"nJy" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = -18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"nJH" = ( +/obj/structure/machinery/computer/cameras/almayer{ + dir = 8; + pixel_x = 17 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "plating" + }, +/area/almayer/command/airoom) +"nKq" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"nLa" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"nLb" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/broken_arcade, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"nLg" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"nLk" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"nLt" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/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{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"nLJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/upper_engineering) +"nLK" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"nLZ" = ( +/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{ + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"nMc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"nMp" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/franks, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/briefing) +"nMu" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"nMz" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 35 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"nMV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"nNt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/port_missiles) +"nNv" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"nNA" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hull/upper_hull/u_m_p) +"nNH" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emeraldcorner" + }, +/area/almayer/living/briefing) +"nNQ" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"nNV" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"nNY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/upper_engineering) +"nOe" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/perma) +"nOG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"nPa" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"nPB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/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{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"nQg" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"nQh" = ( +/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/phone_base/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{ + icon_state = "silverfull" + }, +/area/almayer/command/securestorage) +"nQv" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) +"nQx" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"nRq" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"nRH" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"nRR" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/port_missiles) +"nRX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering) +"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) +"nSM" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"nSN" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"nSS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"nSU" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"nTl" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"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) +"nTH" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"nTZ" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/living/gym) +"nUa" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/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{ + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"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{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"nUy" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"nVe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"nVi" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/briefing) +"nVu" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"nVB" = ( +/turf/open/floor/almayer, +/area/almayer/command/securestorage) +"nVF" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/living/offices) +"nVS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/starboard) +"nWc" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Passenger Cryogenics Bay" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_m_p) +"nWN" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"nXm" = ( +/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" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/cells) +"nXF" = ( +/obj/structure/bed/sofa/south/white/right{ + pixel_y = 16 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/hull/upper_hull/u_m_p) +"nXP" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hull/lower_hull/l_f_s) +"nXU" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + dir = 1; + name = "\improper Requisitions Storage" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/up/almayer{ + dir = 4; + id = "almayerlink_OT1_req" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"nYc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/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) +"nYh" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"nYv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"nYD" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/almayer{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/operating_room_four) +"nYE" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 8 + }, +/area/almayer/command/lifeboat) +"nYP" = ( +/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" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/cells) +"nYS" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/surface/table/almayer, +/obj/structure/phone_base/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office Second Line"; + pixel_x = -5; + pixel_y = 3 + }, +/obj/structure/phone_base/rotary{ + name = "Telephone"; + phone_category = "Almayer"; + phone_id = "Auxiliary Support Office"; + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/auxiliary_officer_office) +"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) +"nZF" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hull/upper_hull/u_a_s) +"oap" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"oas" = ( +/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/hull/lower_hull/l_f_p) +"oaK" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"oaW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/charlie) +"obo" = ( +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink_med_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{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"obC" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/squads/alpha_bravo_shared) +"obG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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{ + icon_state = "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{ + dir = 4; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"ocs" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"oda" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"odb" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"odl" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"odu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"odB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/bravo) +"odD" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 5; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"oed" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"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{ + dir = 8; + icon_state = "outerhull_dir" + }, +/area/almayer/command/lifeboat) +"oef" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/alpha_bravo_shared) +"oeo" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"oer" = ( +/turf/closed/wall/almayer{ + damage_cap = 15000 + }, +/area/almayer/squads/delta) +"oeB" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"oeL" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"oeM" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"ofs" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"oft" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_left_exhaust, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"ofB" = ( +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + dir = 1; + pixel_x = -8 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"ofH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"ofK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"ofZ" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"ohj" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/charlie) +"ohA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/weapon_room) +"ohB" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/command/lifeboat) +"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) +"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{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"oir" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"oit" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/shipboard/port_missiles) +"oiL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/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) +"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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"ojz" = ( +/obj/structure/machinery/door/airlock/dropship_hatch/two{ + id = "port_door" + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"ojF" = ( +/obj/structure/machinery/cm_vending/clothing/tl/charlie{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"ojR" = ( +/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{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"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) +"okd" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"okg" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"oks" = ( +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -9; + pixel_y = 19 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"okz" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"okB" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"okD" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer6" + }, +/turf/open/floor/almayer_hull{ + icon_state = "outerhull_dir" + }, +/area/space) +"okE" = ( +/obj/item/device/radio/intercom/normandy{ + layer = 3.5; + pixel_x = -10 + }, +/turf/closed/shuttle/dropship2{ + icon_state = "52" + }, +/area/almayer/hallways/hangar) +"okM" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "\improper Execution Room" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/execution) +"olk" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/port) +"olv" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/hand_labeler{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/storage/box/evidence{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/storage/box/evidence{ + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"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) +"olO" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"olU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "blue" + }, +/area/almayer/command/cichallway) +"omb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "silvercorner" + }, +/area/almayer/command/cichallway) +"omo" = ( +/obj/structure/window/framed/almayer/white, +/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) +"omu" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/brig/armory) +"omy" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silvercorner" + }, +/area/almayer/shipboard/brig/cic_hallway) +"omP" = ( +/obj/item/tool/mop, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"omW" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"onN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/charlie) +"onQ" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "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{ + icon_state = "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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"ooR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/reinforced{ + name = "\improper Perma Cells" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/perma) +"opj" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/squads/req) +"opC" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Combat Information Center" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/cichallway) +"opD" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/gym) +"opJ" = ( +/obj/docking_port/stationary/emergency_response/external/port4, +/turf/open/space/basic, +/area/space) +"opN" = ( +/obj/structure/closet/secure_closet/brig, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"oqA" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/command/cic) +"oqD" = ( +/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/hull/lower_hull/l_f_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) +"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{ + icon_state = "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{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"orm" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_a_p) +"orv" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"orH" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 10 + }, +/area/almayer/command/lifeboat) +"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) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"osy" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/platform_decoration, +/turf/open/floor/almayer/no_build{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"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{ + icon_state = "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 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"osE" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"osJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/paper, +/obj/item/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" + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"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) +"otu" = ( +/turf/closed/wall/almayer/research/containment/wall/connect_w, +/area/almayer/medical/containment/cell) +"otX" = ( +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_p) +"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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"ouo" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"our" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm{ + pixel_y = 6 + }, +/obj/item/tool/pen, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"ouB" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"ouQ" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"ouV" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 1; + pixel_y = 26 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"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{ + dir = 8; + icon_state = "silvercorner" + }, +/area/almayer/command/cichallway) +"ovi" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering/port) +"ovn" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_p) +"ovp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/briefing) +"ovu" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "81" + }, +/area/almayer/hallways/hangar) +"ovF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"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{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"ovP" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15 + }, +/turf/closed/wall/almayer, +/area/almayer/hallways/starboard_umbilical) +"owg" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering/starboard) +"owH" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/sea_office) +"oxi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/living/cafeteria_officer) +"oxn" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/chief_mp_office) +"oxp" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"oxu" = ( +/obj/structure/sign/safety/galley{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"oxU" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"oyo" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/hull/upper_hull/u_a_s) +"oyw" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"oyy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"oyE" = ( +/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 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/port_atmos) +"oyG" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"ozi" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuelCell, +/obj/item/fuelCell, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"ozq" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/alpha) +"ozr" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"ozz" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering/starboard) +"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{ + icon_state = "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 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"oAd" = ( +/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{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"oAB" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/almayer/uscm/directional{ + dir = 10 + }, +/area/almayer/living/briefing) +"oAD" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "18" + }, +/area/almayer/hallways/hangar) +"oAO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"oBq" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 1"; + pixel_x = -24 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/brig/cells) +"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{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"oCf" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"oCi" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"oCL" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"oCX" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/shipboard/brig/cryo) +"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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"oDv" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/living/port_emb) +"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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"oDL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"oDR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/medical_science) +"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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/lifeboat_pumps/north1) +"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) +"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{ + icon_state = "bluefull" + }, +/area/almayer/command/cichallway) +"oES" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"oEX" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/living/port_emb) +"oFM" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_m_p) +"oFU" = ( +/obj/structure/shuttle/part/dropship2/transparent/engine_right_cap, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"oFV" = ( +/obj/structure/sign/poster{ + pixel_x = -32; + serial_number = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"oGx" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = 30 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/starboard_garden) +"oGC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"oGP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/living/port_emb) +"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{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/charlie) +"oHl" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"oHx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/laundry) +"oIc" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/shipboard/brig/perma) +"oIn" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"oIr" = ( +/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{ + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/medical_science) +"oIB" = ( +/turf/closed/wall/almayer, +/area/almayer/command/combat_correspondent) +"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) +"oJR" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 97; + vector_y = -65 + }, +/obj/structure/platform{ + dir = 8 + }, +/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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"oKb" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"oKv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_medbay) +"oKx" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"oLd" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"oLi" = ( +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"oLm" = ( +/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{ + dir = 4; + pixel_y = -8 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/no_build{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"oLv" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"oLw" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"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 = "Brig"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/lobby) +"oLT" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"oLU" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/hydroponics) +"oMd" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"oMe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/auxiliary_officer_office) +"oMs" = ( +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/almayer/powered/agent) +"oMH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/squads/alpha_bravo_shared) +"oMM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/clothing/commanding_officer, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"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{ + icon_state = "mono" + }, +/area/almayer/engineering/ce_room) +"oNf" = ( +/obj/item/stack/folding_barricade/three, +/obj/item/stack/folding_barricade/three, +/obj/structure/closet/secure_closet/guncabinet/red, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/hydroponics) +"oNJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/medical/upper_medical) +"oOO" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"oPf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"oPk" = ( +/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{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"oPy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"oPD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"oPE" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/command/cic) +"oPI" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"oQj" = ( +/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{ + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"oQo" = ( +/obj/item/stool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"oQs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/book/manual/surgery{ + pixel_y = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cichallway) +"oQH" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/living/briefing) +"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{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/living/auxiliary_officer_office) +"oRj" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"oRk" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"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/item/device/megaphone, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"oRO" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"oRZ" = ( +/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, +/area/almayer/shipboard/brig/processing) +"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{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"oSx" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/alpha_bravo_shared) +"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{ + icon_state = "test_floor5" + }, +/area/almayer/squads/req) +"oTz" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"oTA" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/alpha) +"oUG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"oVP" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"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{ + icon_state = "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{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"oWz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/starboard_garden) +"oWI" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/shipboard/brig/cryo) +"oXd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"oXY" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"oYb" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"oYp" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/living/offices/flight) +"oZd" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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{ + dir = 10; + icon_state = "red" + }, +/area/almayer/living/offices/flight) +"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{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"paa" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/containment) +"paq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/brig, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"paI" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"paL" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 1 + }, +/area/almayer/command/cic) +"pbh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"pbp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"pbs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"pbC" = ( +/obj/item/bedsheet/red, +/obj/structure/bed, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/chief_mp_office) +"pbV" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/command/cic) +"pbW" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/command/cichallway) +"pch" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"pcj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silvercorner" + }, +/area/almayer/shipboard/brig/cic_hallway) +"pcl" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/hangar) +"pcv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"pcD" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_p) +"pcE" = ( +/obj/structure/machinery/conveyor{ + dir = 8; + id = "gym_2"; + name = "treadmill" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"pcG" = ( +/obj/structure/machinery/door_control{ + id = "dccbunk"; + name = "DCC Privacy Shutters"; + pixel_x = 24 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"pcO" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"pcQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"pda" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"pdk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_p) +"pdt" = ( +/obj/structure/closet/secure_closet/freezer/fridge/groceries, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"pdG" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Chief MP's Bedroom" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/chief_mp_office) +"pef" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"peT" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silvercorner" + }, +/area/almayer/command/computerlab) +"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/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/starboard) +"pfe" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/black{ + pixel_x = -10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"pfh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"pfp" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/stair_clone) +"pfA" = ( +/obj/item/tool/soap, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering/port) +"pfH" = ( +/obj/structure/platform_decoration, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south2) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"pgt" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/hull/lower_hull/l_m_s) +"pgD" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/south1) +"pgH" = ( +/obj/effect/projector{ + name = "Almayer_AresDown"; + vector_x = 97; + vector_y = -65 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/stairs{ + dir = 1; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"pgM" = ( +/obj/structure/reagent_dispensers/water_cooler/walk_past{ + pixel_x = 10; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"pha" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"phj" = ( +/obj/item/clothing/head/helmet/marine/reporter, +/obj/item/clothing/suit/storage/marine/light/reporter, +/obj/item/clothing/head/cmcap/reporter, +/obj/item/clothing/head/fedora, +/obj/structure/closet/secure_closet, +/obj/item/storage/box/tapes, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) +"piO" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"piX" = ( +/obj/item/trash/barcardine, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"pjb" = ( +/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{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"pje" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"pji" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/stern_hallway) +"pjw" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"pjF" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/lighter/random, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"pjG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plating_striped" + }, +/area/almayer/squads/req) +"pjM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"pjP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"pky" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"pkz" = ( +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/squads/alpha_bravo_shared) +"plk" = ( +/obj/structure/shuttle/part/dropship2/transparent/upper_left_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"plE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"plI" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/surgery) +"plZ" = ( +/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/multi_tile/almayer/secdoor/glass/reinforced{ + access_modified = 1; + dir = 2; + name = "Brig"; + req_access = null; + req_one_access_txt = "1;3" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/main_office) +"pmk" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"pmq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/living/briefing) +"pmH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"pmV" = ( +/obj/structure/prop/server_equipment/yutani_server/broken{ + 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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"pno" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"pnC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"pop" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/engineering_workshop) +"poq" = ( +/obj/item/pipe{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"poR" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"poZ" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/bed/chair/bolted{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/perma) +"ppc" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hull/upper_hull/u_a_p) +"ppe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer, +/area/almayer/living/auxiliary_officer_office) +"ppQ" = ( +/obj/structure/shuttle/part/dropship2/transparent/right_outer_bottom_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"pqc" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lockerroom) +"pql" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"pqD" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "cargo" + }, +/area/almayer/squads/bravo) +"pqQ" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"pqX" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"prx" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"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{ + icon_state = "bluefull" + }, +/area/almayer/living/bridgebunks) +"psm" = ( +/turf/closed/wall/almayer, +/area/almayer/hull/upper_hull/u_a_s) +"psp" = ( +/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{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"psy" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"psO" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"pth" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/blue, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"ptj" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie_delta_shared) +"ptv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"ptK" = ( +/turf/closed/wall/almayer, +/area/almayer/engineering/upper_engineering/starboard) +"pud" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"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{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/cryo_cells) +"put" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/engineering_workshop) +"puI" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"puK" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"puO" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"puR" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"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) +"pvt" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_y = -32 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"pvJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/charlie) +"pvP" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/starboard_missiles) +"pwt" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"pwK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"pxd" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/structure/phone_base{ + name = "Kitchen Telephone"; + phone_category = "Almayer"; + phone_id = "Kitchen"; + pixel_x = -8; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"pxj" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) +"pxo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"pyc" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/living/port_emb) +"pyi" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/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{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/bravo) +"pyy" = ( +/obj/structure/filingcabinet, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"pzc" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"pzG" = ( +/obj/docking_port/stationary/emergency_response/port1, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/starboard_point_defense) +"pzJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"pzO" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"pzQ" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"pzV" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/living/briefing) +"pzZ" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"pAR" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/starboard_umbilical) +"pBn" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "greencorner" + }, +/area/almayer/hallways/port_hallway) +"pBU" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "83" + }, +/area/almayer/hallways/hangar) +"pBW" = ( +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hull/upper_hull/u_a_s) +"pCi" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hull/upper_hull/u_f_s) +"pCr" = ( +/obj/structure/machinery/cm_vending/sorted/attachments/blend, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"pCD" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 14; + pixel_y = -25 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/stern_hallway) +"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{ + icon_state = "tcomms" + }, +/area/almayer/engineering/upper_engineering/starboard) +"pDm" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"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{ + dir = 5; + icon_state = "plating" + }, +/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{ + dir = 8; + icon_state = "cargo_arrow" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"pDJ" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "62" + }, +/area/almayer/hallways/hangar) +"pDL" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/phone_base/rotary{ + name = "Captain's Office"; + phone_category = "Offices"; + phone_id = "Captain's Office"; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"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{ + dir = 1; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"pEt" = ( +/obj/structure/phone_base{ + name = "Brig Offices Telephone"; + phone_category = "Almayer"; + phone_id = "Brig Main Offices"; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"pEy" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"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{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"pEY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/lifeboat_pumps/south1) +"pFa" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/lobby) +"pFg" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 8; + id = "Perma 1"; + name = "\improper isolation shutter" + }, +/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/perma) +"pFA" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/engineering/lower_engineering) +"pFM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"pFQ" = ( +/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) +"pGG" = ( +/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/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/door_control{ + id = "Execution Shutters"; + name = "Privacy Shutters"; + pixel_y = 12; + req_access_txt = "3" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"pGK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"pGM" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"pGN" = ( +/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{ + icon_state = "cargo" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"pGP" = ( +/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/hull/lower_hull/l_f_s) +"pGT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"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) +"pHG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "bluecorner" + }, +/area/almayer/living/basketball) +"pIf" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/lower_engineering) +"pIj" = ( +/obj/structure/shuttle/part/dropship2/right_outer_wing_connector, +/turf/open/space/basic, +/area/almayer/hallways/hangar) +"pIk" = ( +/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/hull/lower_hull/l_a_s) +"pIH" = ( +/obj/structure/machinery/door_control{ + id = "perma_exit"; + name = "\improper Exit Shutters"; + pixel_y = -22; + req_access_txt = "3" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/perma) +"pIU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"pJi" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"pJE" = ( +/obj/structure/closet/secure_closet{ + name = "\improper Execution Firearms" + }, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/execution) +"pJJ" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"pJR" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresUp"; + vector_x = -97; + vector_y = 65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/no_build{ + dir = 4 + }, +/area/almayer/command/airoom) +"pJW" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"pKZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"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{ + icon_state = "cargo" + }, +/area/almayer/living/pilotbunks) +"pLZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"pMj" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"pMp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cichallway) +"pNp" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"pNG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"pNM" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"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{ + icon_state = "sterile_green" + }, +/area/almayer/medical/hydroponics) +"pNQ" = ( +/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/aft_hallway) +"pOi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"pOB" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"pOD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/living/pilotbunks) +"pON" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 8 + }, +/area/almayer/command/cic) +"pOY" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"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{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"pPz" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"pPF" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"pPM" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/command/securestorage) +"pPN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/port_missiles) +"pPV" = ( +/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 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"pQq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"pQu" = ( +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 20 + }, +/turf/open/floor/almayer, +/area/almayer/command/corporateliason) +"pQy" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/bridgebunks) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie_delta_shared) +"pQG" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_s) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/medical_science) +"pQV" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"pRn" = ( +/obj/structure/bed, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"pRy" = ( +/turf/open/floor/almayer/research/containment/corner_var1{ + dir = 4 + }, +/area/almayer/medical/containment/cell/cl) +"pRL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"pRO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/living/port_emb) +"pRX" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/medical/hydroponics) +"pSL" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"pSU" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"pTc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"pTj" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "silvercorner" + }, +/area/almayer/command/computerlab) +"pTt" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "ARES JoeCryo"; + name = "\improper ARES Core Shutters"; + plane = -7 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"pTT" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"pUd" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/command/computerlab) +"pUe" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"pUf" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "bluecorner" + }, +/area/almayer/squads/delta) +"pUi" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"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{ + icon_state = "test_floor5" + }, +/area/almayer/squads/req) +"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{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/living/briefing) +"pUJ" = ( +/turf/closed/wall/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"pUY" = ( +/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/hull/lower_hull/l_a_p) +"pVu" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"pVx" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/living/briefing) +"pVZ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hull/upper_hull/u_a_s) +"pWf" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engineering_workshop) +"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{ + icon_state = "green" + }, +/area/almayer/shipboard/brig/cells) +"pWA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/squads/req) +"pWG" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"pWN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/living/pilotbunks) +"pXj" = ( +/obj/structure/closet/radiation, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"pXl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"pXn" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"pXx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"pXQ" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"pXV" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/squads/req) +"pYi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump/no_boom{ + dir = 8 + }, +/turf/open/floor/almayer/no_build{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"pYo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/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) +"pYF" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"pYX" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silvercorner" + }, +/area/almayer/shipboard/brig/cic_hallway) +"pZo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_umbilical) +"pZK" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering/port) +"pZS" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"pZV" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"qam" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"qaD" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"qaJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution) +"qaV" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"qaW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/living/briefing) +"qaZ" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/hull/lower_hull/l_f_s) +"qbd" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"qbt" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/shipboard/brig/surgery) +"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{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/living/briefing) +"qbO" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "blue" + }, +/area/almayer/living/pilotbunks) +"qbZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass{ + dir = 1; + name = "\improper Engineering Bunks" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/port) +"qce" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"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) +"qcl" = ( +/obj/structure/sign/safety/conference_room{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"qcy" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "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 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 10; + icon_state = "emerald" + }, +/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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"qdA" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/living/captain_mess) +"qdQ" = ( +/obj/structure/bed/sofa/vert/grey/top{ + pixel_y = 11 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"qee" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"qej" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "cargo" + }, +/area/almayer/squads/charlie) +"qeF" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/squads/alpha_bravo_shared) +"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{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/medical_science) +"qfA" = ( +/turf/open/floor/almayer{ + icon_state = "silvercorner" + }, +/area/almayer/command/cichallway) +"qfR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"qga" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/starboard_garden) +"qgw" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"qgG" = ( +/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/aft_hallway) +"qgH" = ( +/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/hull/lower_hull/l_m_p) +"qgK" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic/press{ + dir = 1; + name = "\improper Combat Correspondent Room" + }, +/turf/open/floor/almayer, +/area/almayer/command/combat_correspondent) +"qgN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"qgP" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "35" + }, +/area/almayer/hallways/hangar) +"qhb" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"qhc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/stern_hallway) +"qhx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = -17; + pixel_y = 7 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"qhB" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/mgoggles/prescription, +/obj/item/clothing/glasses/mbcg, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"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{ + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"qic" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull) +"qih" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Tanker Quarters"; + req_one_access_txt = "19;27" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/tankerbunks) +"qim" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"qin" = ( +/obj/structure/sign/poster/safety{ + pixel_x = 27 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"qit" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"qiy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"qiI" = ( +/obj/structure/girder/displaced, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"qjz" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/lighter, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"qjF" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silvercorner" + }, +/area/almayer/command/computerlab) +"qjN" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"qjV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"qkb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"qkn" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"qld" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_umbilical) +"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) +"qmk" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/facepaint/green, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "bluecorner" + }, +/area/almayer/squads/delta) +"qmt" = ( +/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{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"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{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/medical_science) +"qmC" = ( +/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{ + name = "\improper Brig" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/main_office) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/medical_science) +"qmE" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/machinery/door_control{ + id = "perma_lockdown"; + name = "\improper Perma Cells Lockdown"; + pixel_x = 24; + pixel_y = 6; + req_access_txt = "3" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"qmL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"qmP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"qmX" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/perma) +"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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"qnC" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/living/pilotbunks) +"qnP" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"qof" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 8; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/main_office) +"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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"qon" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"qoY" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/chemistry) +"qpQ" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/medbay, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/chemistry) +"qpU" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"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/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/engineering/upper_engineering) +"qqu" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/command/lifeboat) +"qqK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"qqN" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"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{ + dir = 5; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"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{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"qre" = ( +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"qrv" = ( +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"qsd" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"qsC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/junction, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) +"qsF" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_s) +"qsL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/ce_room) +"qtn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"qtv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"qtR" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"qtS" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"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, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -6; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/cryo_tubes) +"quI" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"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{ + icon_state = "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{ + dir = 8; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"qvf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/cryo) +"qvC" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/living/port_emb) +"qvI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"qwJ" = ( +/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/no_build{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"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) +"qxz" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PU-5"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"qxA" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"qxL" = ( +/obj/structure/machinery/medical_pod/autodoc, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"qyd" = ( +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/perma) +"qyi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"qyo" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/command/cichallway) +"qys" = ( +/obj/structure/platform, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"qyz" = ( +/obj/structure/machinery/computer/cameras/containment/hidden{ + dir = 4; + pixel_x = -17 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/photo_album, +/obj/item/device/camera_film, +/turf/open/floor/almayer, +/area/almayer/command/corporateliason) +"qyD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"qyF" = ( +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"qyW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/squads/charlie_delta_shared) +"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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/port_point_defense) +"qzH" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/red, +/obj/structure/phone_base/rotary{ + name = "Brig CMP's Office Telephone"; + phone_category = "Offices"; + phone_id = "Brig CMP's Office"; + pixel_x = 15 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"qAA" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/ce_room) +"qAT" = ( +/obj/structure/machinery/light, +/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 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"qBy" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "23" + }, +/area/almayer/hallways/hangar) +"qBM" = ( +/obj/item/storage/fancy/crayons{ + layer = 3.1; + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"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) +"qCg" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering/port) +"qCi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"qCo" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"qCy" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/bridgebunks) +"qCG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/lifeboat) +"qDv" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"qDN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/command/cic) +"qDP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_four) +"qEk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/command/cic) +"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, +/turf/open/floor/almayer{ + icon_state = "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) +"qEW" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 30 + }, +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"qFb" = ( +/obj/structure/sign/safety/storage{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"qFl" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hull/upper_hull/u_f_p) +"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) +"qFG" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "bluefull" + }, +/area/almayer/squads/delta) +"qFQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"qFW" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"qGc" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/squads/alpha_bravo_shared) +"qGF" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/operating_room_two) +"qHb" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"qHg" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha_bravo_shared) +"qHl" = ( +/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{ + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"qHq" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock SU-6"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"qHF" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/bodybags{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/box/bodybags, +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/execution) +"qHM" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"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{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"qJf" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/weapon/gun/shotgun/combat, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"qJx" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "sterile_green" + }, +/area/almayer/medical/hydroponics) +"qJF" = ( +/obj/structure/largecrate/supply, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hull/upper_hull/u_f_p) +"qJN" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/item/tool/weldpack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"qJS" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -11; + pixel_y = -1 + }, +/turf/open/floor/prison{ + icon_state = "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{ + icon_state = "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) +"qKi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/upper_engineering) +"qKz" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/securestorage) +"qKF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/headset/almayer/mt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"qKM" = ( +/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{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/port_hallway) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/containment) +"qLj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"qLo" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"qLp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"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{ + dir = 10; + icon_state = "green" + }, +/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) +"qLK" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"qLS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom, +/turf/open/floor/almayer/no_build{ + dir = 4 + }, +/area/almayer/command/airoom) +"qMe" = ( +/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/corporateliason) +"qMf" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"qMu" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hull/upper_hull/u_a_p) +"qMP" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"qMR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"qNd" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/delta) +"qNv" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/pen, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/lobby) +"qNy" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"qNG" = ( +/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/hull/lower_hull/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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_lobby) +"qOk" = ( +/obj/docking_port/stationary/lifeboat_dock/port, +/turf/open/floor/almayer_hull{ + dir = 4; + icon_state = "outerhull_dir" + }, +/area/space/almayer/lifeboat_dock) +"qOp" = ( +/obj/structure/disposalpipe/junction, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/gym) +"qOU" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_p) +"qPg" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"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/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/command/securestorage) +"qPO" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/surgery) +"qPS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"qQc" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"qQp" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"qQM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/surgery) +"qQP" = ( +/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/hull/lower_hull/l_f_p) +"qQS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "tcomms" + }, +/area/almayer/command/airoom) +"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{ + dir = 8; + icon_state = "silvercorner" + }, +/area/almayer/shipboard/brig/cic_hallway) +"qRo" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"qRT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/execution) +"qSl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"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{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"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{ + dir = 6; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"qTY" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/grunt_rnr) +"qTZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_umbilical) +"qUb" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"qUh" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"qUj" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"qUp" = ( +/obj/structure/surface/table/almayer, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/powered/agent) +"qUq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/charlie_delta_shared) +"qUH" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"qUL" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"qVC" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"qVF" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/shipboard/brig/execution) +"qVM" = ( +/turf/closed/wall/almayer, +/area/almayer/hull/upper_hull/u_m_p) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cichallway) +"qVT" = ( +/obj/structure/shuttle/part/dropship2/bottom_right_wall, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"qVU" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"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" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"qWI" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"qWR" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 4 + }, +/area/almayer/medical/containment/cell/cl) +"qWT" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"qXo" = ( +/obj/structure/machinery/seed_extractor, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"qXx" = ( +/obj/structure/platform, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"qXM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"qXZ" = ( +/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{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"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{ + allow_construction = 0 + }, +/area/almayer/stair_clone/upper) +"qYt" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"qYu" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"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{ + icon_state = "mono" + }, +/area/almayer/command/lifeboat) +"qYH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/security/reinforced{ + name = "\improper Execution Equipment" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/execution) +"qYN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/toy/deck, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/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{ + icon_state = "cargo_arrow" + }, +/area/almayer/squads/charlie_delta_shared) +"qYW" = ( +/obj/item/clothing/shoes/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"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) +"qZg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"qZF" = ( +/obj/structure/phone_base/rotary{ + name = "CL Office Telephone"; + phone_category = "Almayer"; + phone_id = "CL Office" + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/command/corporateliason) +"qZH" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "greenfull" + }, +/area/almayer/living/offices) +"qZX" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/bravo) +"rag" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"rav" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/reagent_container/glass/rag, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"raK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"raU" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "72" + }, +/area/almayer/hallways/hangar) +"rbp" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"rbv" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"rbB" = ( +/turf/open/floor/almayer{ + icon_state = "silvercorner" + }, +/area/almayer/command/computerlab) +"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{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/charlie) +"rbX" = ( +/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/port_hallway) +"rbY" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/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{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"rcH" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"rcS" = ( +/obj/structure/machinery/computer/cryopod/eng{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/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) +"rdr" = ( +/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/hull/lower_hull/l_f_p) +"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) +"rdI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"rdK" = ( +/turf/closed/wall/almayer, +/area/almayer/hull/lower_hull/l_a_s) +"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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"rdX" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "26" + }, +/area/almayer/hallways/hangar) +"rdY" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/port_hallway) +"ren" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/target{ + name = "punching bag" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"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{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"rfb" = ( +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 8; + icon_state = "containment_window_h" + }, +/area/almayer/medical/containment/cell/cl) +"rfg" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_m_s) +"rfI" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"rgy" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"rgA" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"rgJ" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/disposal, +/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 = -1; + pixel_y = 11 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"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{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/auxiliary_officer_office) +"rgW" = ( +/turf/open/floor/almayer{ + icon_state = "emeraldcorner" + }, +/area/almayer/living/briefing) +"rhO" = ( +/obj/structure/machinery/vending/cola/research{ + pixel_x = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"rhQ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/port_emb) +"ril" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"riA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"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{ + dir = 9; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"riJ" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"riM" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"riP" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/rewire{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"riQ" = ( +/obj/item/device/multitool, +/obj/structure/platform_decoration, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"rjn" = ( +/obj/structure/machinery/light, +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"rjw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"rjG" = ( +/obj/structure/pipes/standard/tank/oxygen, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"rjH" = ( +/obj/structure/surface/rack, +/obj/item/storage/beer_pack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/corporateliason) +"rjV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + dir = 8; + layer = 3.2; + pixel_x = -3; + pixel_y = 6 + }, +/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 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "blue" + }, +/area/almayer/living/port_emb) +"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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"rkh" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 8; + id = "Perma 1L"; + name = "\improper cell shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Isolation Cell" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/perma) +"rku" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"rkz" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"rkK" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/execution) +"rkL" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 2; + id = "Warden Office Shutters"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/main_office) +"rlf" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/synthcloset) +"rlh" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/starboard_point_defense) +"rll" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"rlz" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"rlQ" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"rlZ" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"rmf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering/starboard) +"rmv" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/main_office) +"rmD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"rmN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"rna" = ( +/turf/closed/wall/almayer/white, +/area/almayer/command/airoom) +"rne" = ( +/turf/open/floor/carpet, +/area/almayer/command/corporateliason) +"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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"rnM" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"rnN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"rob" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/starboard) +"rod" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_f_s) +"rou" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/bravo) +"roG" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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) +"rpd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"rph" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/stern_hallway) +"rpK" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cichallway) +"rpW" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"rqb" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"rqj" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"rqw" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"rqE" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"rra" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 8; + id = "Perma 2L"; + name = "\improper cell shutter" + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + name = "\improper Isolation Cell" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/perma) +"rri" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/offices/flight) +"rrq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"rrB" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/reinforced{ + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/bridgebunks) +"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) +"rrV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"rsm" = ( +/obj/structure/shuttle/part/dropship2/nose_front_right, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"rsx" = ( +/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{ + icon_state = "cargo" + }, +/area/almayer/hull/lower_hull/l_f_s) +"rsK" = ( +/obj/structure/sign/safety/hvac_old, +/turf/closed/wall/almayer, +/area/almayer/squads/req) +"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) +"rsW" = ( +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering/port) +"rsY" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"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) +"rtj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"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, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8 + }, +/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) +"rux" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"ruz" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/hangar) +"rvo" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/shipboard/brig/evidence_storage) +"rvA" = ( +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) +"rvT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"rwb" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"rwv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"rwS" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"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) +"rxk" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"rxG" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"rxK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/navigation) +"rxV" = ( +/obj/structure/barricade/handrail, +/obj/structure/largecrate/supply/generator, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"ryt" = ( +/obj/structure/pipes/standard/manifold/visible, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"ryG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"ryR" = ( +/obj/structure/machinery/cm_vending/clothing/staff_officer_armory, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/command/cic) +"rzj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + access_modified = 1; + name = "\improper Brig"; + req_access = null; + req_one_access_txt = "1;3" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/main_office) +"rzN" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/containment) +"rzP" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_a_s) +"rAb" = ( +/turf/open/floor/almayer{ + icon_state = "bluecorner" + }, +/area/almayer/living/briefing) +"rAv" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/door/window/tinted{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/cells) +"rAx" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/prison{ + icon_state = "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{ + icon_state = "red" + }, +/area/almayer/shipboard/weapon_room) +"rAN" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/alpha) +"rAP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"rBa" = ( +/obj/structure/machinery/cm_vending/clothing/synth, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"rBk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/port_umbilical) +"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{ + icon_state = "bluefull" + }, +/area/almayer/command/cichallway) +"rBH" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"rBV" = ( +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"rCi" = ( +/obj/structure/machinery/camera/autoname/almayer/containment/ares{ + dir = 8 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"rCp" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"rCw" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 97; + vector_y = -65 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"rCD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"rCK" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"rCL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"rCO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"rCU" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"rDb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"rDd" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"rDe" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/kepler_crisps{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/toy/deck{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = 33 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "green" + }, +/area/almayer/squads/req) +"rDi" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"rDr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 1; + icon_state = "green" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"rDV" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/medical_science) +"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/surface/table/woodentable/fancy, +/obj/item/spacecash/c500{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/ashtray/bronze{ + pixel_x = -13; + pixel_y = -4 + }, +/turf/open/floor/carpet, +/area/almayer/command/corporateliason) +"rEn" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"rEr" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer3" + }, +/turf/open/floor/almayer_hull{ + icon_state = "outerhull_dir" + }, +/area/space) +"rEu" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"rEY" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"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{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"rFu" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"rFy" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/engineering/upper_engineering/starboard) +"rFB" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_umbilical) +"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{ + dir = 10; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"rFM" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "34" + }, +/area/almayer/hallways/hangar) +"rFY" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"rGg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"rGj" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/squads/alpha) +"rGl" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cichallway) +"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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_medbay) +"rHs" = ( +/obj/item/storage/firstaid, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"rHL" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "30" + }, +/area/almayer/hallways/hangar) +"rHN" = ( +/obj/structure/pipes/vents/pump/on, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_lobby) +"rID" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/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) +"rII" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"rIL" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/almayer/hallways/hangar) +"rIO" = ( +/obj/structure/machinery/vending/snack, +/obj/item/clothing/head/cmcap/boonie/tan{ + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"rIW" = ( +/obj/structure/machinery/cm_vending/gear/synth, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/synthcloset) +"rJb" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"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{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"rJu" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/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{ + icon_state = "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{ + dir = 5 + }, +/area/almayer/command/cic) +"rKn" = ( +/obj/structure/machinery/door_control{ + id = "agentshuttle"; + indestructible = 1; + name = "Shutters"; + pixel_y = 25; + req_one_access_txt = "201"; + use_power = 0 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/powered/agent) +"rKs" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_m_s) +"rKy" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"rKA" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/item/bedsheet/brown{ + layer = 3.1 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"rLe" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "29" + }, +/area/almayer/hallways/hangar) +"rLk" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"rLv" = ( +/turf/closed/wall/almayer/research/containment/wall/purple{ + dir = 4; + icon_state = "containment_window_h" + }, +/area/almayer/medical/containment/cell/cl) +"rLU" = ( +/turf/open/floor/almayer/research/containment/floor2{ + dir = 8 + }, +/area/almayer/medical/containment/cell/cl) +"rNF" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"rOc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"rOj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/port_hallway) +"rOs" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard, +/obj/item/device/binoculars, +/obj/item/storage/bible, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"rOC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"rOJ" = ( +/obj/structure/barricade/handrail, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"rPh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"rPt" = ( +/turf/open/floor/wood/ship, +/area/almayer/engineering/ce_room) +"rPC" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"rPD" = ( +/obj/effect/attach_point/fuel/dropship2{ + pixel_x = -32 + }, +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "33" + }, +/area/almayer/hallways/hangar) +"rPE" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"rPO" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"rQj" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"rQt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"rQy" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/hydroponics) +"rQA" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/delta) +"rQU" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"rQW" = ( +/obj/item/tool/screwdriver, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"rQY" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 3"; + pixel_x = 24 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/shipboard/brig/cells) +"rRq" = ( +/turf/closed/wall/almayer, +/area/almayer/lifeboat_pumps/south2) +"rRz" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"rRQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"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{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"rSj" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/squads/alpha_bravo_shared) +"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/structure/machinery/power/apc{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/shipboard/brig/lobby) +"rSK" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"rTk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"rTt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/chief_mp_office) +"rTJ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"rTV" = ( +/obj/structure/sign/safety/security{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"rTZ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"rUh" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"rUk" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"rUy" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"rUB" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/item/tool/soap, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/cells) +"rUU" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"rVo" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"rVN" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/port_missiles) +"rWi" = ( +/obj/structure/shuttle/part/dropship2/transparent/left_outer_inner_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"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) +"rWL" = ( +/obj/structure/barricade/metal, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "cargo" + }, +/area/almayer/living/cryo_cells) +"rXv" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/gym) +"rXC" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/delta) +"rYi" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"rYj" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"rYJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices/flight) +"rZz" = ( +/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{ + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"rZB" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_medbay) +"rZF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"rZP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/starboard_point_defense) +"rZR" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"sah" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"saB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"saW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"sbq" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/notunnel) +"sbJ" = ( +/turf/closed/wall/almayer/white/hull, +/area/almayer/powered/agent) +"sbM" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/squads/req) +"scg" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"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) +"scu" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"scy" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/delta) +"scz" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer5" + }, +/turf/open/floor/almayer_hull{ + icon_state = "outerhull_dir" + }, +/area/space) +"scD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"scH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) +"scI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"scS" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101; + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"sdl" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 + }, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"sdn" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/almayer{ + icon_state = "sterile" + }, +/area/almayer/medical/upper_medical) +"sdq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_x = -8 + }, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/brig/chief_mp_office) +"sdu" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"sdw" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_a_p) +"sdC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/squads/delta) +"sdF" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"sdO" = ( +/obj/structure/ladder{ + height = 1; + id = "med1" + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"sed" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"seO" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"sfU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/lower_engineering) +"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{ + icon_state = "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{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lockerroom) +"sgw" = ( +/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{ + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"sgy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_f_s) +"sgM" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"sgR" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"shb" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop) +"shh" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"shp" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/obj/structure/machinery/flasher{ + id = "briefing_flash"; + range = 12 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/uscm/directional{ + dir = 8 + }, +/area/almayer/living/briefing) +"shs" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south2) +"sht" = ( +/turf/open/floor/almayer, +/area/almayer/living/pilotbunks) +"shw" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"sip" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/main_office) +"siz" = ( +/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 = "Dropship Remote Control Console"; + pixel_y = 12; + shuttleId = "dropship_alamo"; + disabled = 1 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/offices/flight) +"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{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"sjc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) +"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{ + dir = 1; + icon_state = "orange" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/command/lifeboat) +"skg" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"skl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/upper_medical) +"skn" = ( +/turf/open/floor/almayer{ + icon_state = "plating_striped" + }, +/area/almayer/shipboard/sea_office) +"skF" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/squads/charlie_delta_shared) +"sld" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lower_medical_lobby) +"slP" = ( +/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/hull/lower_hull/l_f_s) +"smi" = ( +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"smn" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"smr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/engineering_workshop) +"snb" = ( +/obj/structure/ladder{ + height = 1; + id = "cicladder3" + }, +/turf/open/floor/plating/almayer, +/area/almayer/living/briefing) +"sni" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/command/cic) +"snm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"snw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"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{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/port) +"snM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/squads/req) +"snR" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/squads/delta) +"soa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/cells) +"soq" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/synthcloset) +"sos" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/port_hallway) +"sou" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"sow" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"soA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"soD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"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{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"soP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"soQ" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"soS" = ( +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_f_s) +"soX" = ( +/obj/structure/window/reinforced/toughened, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"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) +"spK" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"spS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"spT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"sqa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"sqf" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/upper_medical) +"sqo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"sqW" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/tomatoseed, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/shipboard/brig/cells) +"srV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/paper_bin/uscm{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/tool/pen{ + pixel_x = -6 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"ssa" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/repair_bay) +"ssD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"ssE" = ( +/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{ + icon_state = "greencorner" + }, +/area/almayer/hallways/port_hallway) +"ssU" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"ssW" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/ammo_magazine/shotgun/buckshot, +/turf/open/floor/almayer{ + icon_state = "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) +"sti" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"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{ + allow_construction = 0 + }, +/area/almayer/stair_clone/upper) +"stY" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"suk" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"suy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/command/computerlab) +"suT" = ( +/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/hull/lower_hull/l_m_p) +"suV" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"svd" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"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{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"svp" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"swn" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/surgery) +"swo" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"swt" = ( +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/living/grunt_rnr) +"swE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"swM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 10; + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering) +"sxe" = ( +/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/hull/lower_hull/l_m_s) +"sxu" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"sxD" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Officer's Bunk" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"syy" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "67" + }, +/area/almayer/hallways/hangar) +"syH" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/delta) +"syM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"syP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"szm" = ( +/obj/structure/machinery/power/fusion_engine{ + name = "\improper S-52 fusion reactor 10"; + buildstate = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"szy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/main_office) +"szE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/offices) +"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{ + dir = 6; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"szO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"szU" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/numbertwobunks) +"szX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/hull/upper_hull/u_a_s) +"sAc" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/squads/delta) +"sAj" = ( +/obj/structure/phone_base{ + dir = 8; + name = "RO Office Telephone"; + phone_category = "Offices"; + phone_id = "RO Office"; + pixel_x = 16 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/squads/req) +"sAm" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"sAA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"sAC" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/ce_room) +"sBF" = ( +/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{ + access_modified = 1; + dir = 1; + id_tag = "CO-Office"; + name = "\improper Commanding Officer's Office"; + req_access = null; + req_access_txt = "31" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/commandbunks) +"sBH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/execution) +"sBL" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"sCA" = ( +/obj/structure/bed/chair/comfy/delta{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/briefing) +"sCC" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"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 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"sCI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/living/pilotbunks) +"sCQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"sDu" = ( +/obj/item/clothing/under/marine/dress, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/engineering/laundry) +"sDy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"sDC" = ( +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 26 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"sDD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/port_missiles) +"sDM" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"sEa" = ( +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/chief_mp_office) +"sEd" = ( +/obj/structure/machinery/cryopod/right, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/bravo) +"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{ + dir = 9; + icon_state = "green" + }, +/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{ + icon_state = "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{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"sEK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "tcomms" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"sFf" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/shipboard/starboard_missiles) +"sFh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"sFC" = ( +/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/main_office) +"sFF" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"sFR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_p) +"sFZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"sGe" = ( +/obj/structure/ladder{ + height = 2; + id = "ForePortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"sGh" = ( +/turf/open/floor/almayer/uscm/directional, +/area/almayer/command/lifeboat) +"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{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/port) +"sGU" = ( +/obj/structure/mirror, +/turf/closed/wall/almayer, +/area/almayer/living/gym) +"sGZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/command/airoom) +"sHg" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"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) +"sHM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/pilotbunks) +"sHY" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/squads/alpha) +"sIf" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 97; + vector_y = -65 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"sIk" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"sIw" = ( +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/shipboard/brig/evidence_storage) +"sIx" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"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{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/engineering/port_atmos) +"sIT" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hull/lower_hull/l_f_s) +"sIU" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"sIV" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"sIY" = ( +/obj/structure/machinery/brig_cell/perma_1{ + pixel_x = -32; + pixel_y = 4 + }, +/obj/structure/machinery/door_control{ + id = "Perma 1L"; + name = "Perma 1 Lockdown"; + pixel_x = -24; + pixel_y = -12; + req_access_txt = "3" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/perma) +"sJC" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/briefing) +"sJI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"sJY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/living/port_emb) +"sKa" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/morgue) +"sKY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"sLo" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"sLE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"sMs" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_m_s) +"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{ + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"sNz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/floor2{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"sNI" = ( +/obj/structure/bed/chair/comfy/delta, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/briefing) +"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) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cic) +"sOm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/starboard_hallway) +"sOt" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"sOw" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/basketball) +"sOx" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/storage/hazardvest/yellow, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering) +"sOy" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south1) +"sOZ" = ( +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/ammo_magazine/pistol, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/item/weapon/gun/pistol/m4a3, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/sign/safety/ammunition{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/medical/upper_medical) +"sPc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"sPA" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"sPJ" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"sQF" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/port_missiles) +"sQL" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"sQO" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"sQS" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/stamp{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/device/taperecorder, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"sQU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"sRI" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters/clippers, +/obj/item/handcuffs/zip, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"sRP" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "80" + }, +/area/almayer/hallways/hangar) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"sSc" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/shipboard/weapon_room) +"sSe" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"sSl" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"sSm" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"sSC" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"sSR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/aft_hallway) +"sSY" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/port_umbilical) +"sTd" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/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{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"sTw" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"sTB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"sTV" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/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{ + icon_state = "silverfull" + }, +/area/almayer/shipboard/brig/cic_hallway) +"sUj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/squads/delta) +"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{ + icon_state = "bluefull" + }, +/area/almayer/command/cichallway) +"sUF" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/stern_hallway) +"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{ + icon_state = "blue" + }, +/area/almayer/squads/delta) +"sVc" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/orangeseed, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/shipboard/brig/cells) +"sVf" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"sVi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"sVy" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cryo) +"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{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"sXd" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/containment) +"sXs" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"sXt" = ( +/obj/structure/machinery/cm_vending/clothing/tl/alpha{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"sXE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Auxiliary Support Officer's Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/auxiliary_officer_office) +"sXK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"sXQ" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/appleseed, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/shipboard/brig/cells) +"sXV" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"sYh" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"sYw" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 10; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south2) +"sYB" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/brig/armory) +"sYC" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_p) +"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{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"sYP" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/port_point_defense) +"sYT" = ( +/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) +"sZq" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"sZF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"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{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/living/port_emb) +"tab" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/flashbangs{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/handcuffs, +/obj/item/storage/firstaid/regular, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"tak" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"tal" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/aft_hallway) +"tat" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/living/port_emb) +"taA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/starboard_hallway) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/containment/cell) +"tbD" = ( +/obj/structure/ladder{ + height = 2; + id = "AftPortMaint" + }, +/turf/open/floor/plating/almayer, +/area/almayer/hull/upper_hull/u_a_p) +"tbK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"tce" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"tcP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + name = "\improper Perma Cells" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/perma) +"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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"tdv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"tdx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/engineering/engine_core) +"tdE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha_bravo_shared) +"tdI" = ( +/turf/open/floor/almayer{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"tdK" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_umbilical) +"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{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"teo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"teu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/weapon/gun/shotgun/pump{ + starting_attachment_types = list(/obj/item/attachable/stock/shotgun) + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"tez" = ( +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/almayer, +/area/almayer/living/cryo_cells) +"teB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"teH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/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/starboard_hallway) +"teY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"tfb" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"tfl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"tfw" = ( +/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{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"tfH" = ( +/obj/structure/machinery/light/containment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/research/containment/floor2{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"tfO" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/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, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/brig/armory) +"tgK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"tgS" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"tgV" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"thv" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/telecomms) +"thA" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha_bravo_shared) +"thL" = ( +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"thN" = ( +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/hydroponics) +"thP" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"thT" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"thV" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"tig" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 14; + pixel_y = 20 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"tim" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"tit" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"tiw" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" + }, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"tiE" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/squads/req) +"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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"tiK" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"tiM" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_m_s) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/weapon_room) +"tiW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"tjj" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"tjl" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/squads/req) +"tjn" = ( +/turf/open/floor/almayer{ + icon_state = "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) +"tjU" = ( +/obj/structure/bed/chair/wood/normal, +/obj/item/bedsheet/brown, +/obj/item/toy/farwadoll, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"tki" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"tkq" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/weapon_room) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/alpha_bravo_shared) +"tkV" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"tld" = ( +/obj/structure/machinery/prop/almayer/computer{ + dir = 8; + pixel_x = 16 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/pilotbunks) +"tly" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"tlA" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docdecal2" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"tlI" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"tmy" = ( +/obj/structure/surface/table/almayer, +/obj/item/handcuffs{ + pixel_y = 12 + }, +/obj/item/handcuffs{ + pixel_y = 6 + }, +/obj/item/handcuffs, +/obj/item/weapon/baton{ + pixel_x = -12 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"tmA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"tmB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"tmI" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"tmK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + req_one_access = null; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"tnb" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/shipboard/port_missiles) +"tng" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"tni" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_three) +"tnl" = ( +/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/aft_hallway) +"tnm" = ( +/obj/structure/machinery/atm{ + name = "Weyland-Yutani Automatic Teller Machine"; + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/fancy/cigar, +/turf/open/floor/almayer, +/area/almayer/command/corporateliason) +"tnY" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/alpha) +"tou" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/living/offices) +"tov" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/shipboard/brig/cells) +"toE" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"tpa" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"tpg" = ( +/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/hull/lower_hull/l_f_s) +"tpn" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/evidence_storage) +"tps" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_m_s) +"tpu" = ( +/obj/item/device/radio/intercom/normandy{ + pixel_y = 24 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin5" + }, +/area/almayer/hallways/hangar) +"tpD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/bridgebunks) +"tpK" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"tqe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/surgery) +"tqg" = ( +/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/rappel_harness{ + pixel_y = 8 + }, +/obj/item/rappel_harness, +/obj/item/rappel_harness{ + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/hallways/repair_bay) +"tqk" = ( +/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/hull/lower_hull/l_m_p) +"tqB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"tqV" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 26 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"trb" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/lifeboat_pumps/south1) +"trB" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"trD" = ( +/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/hull/lower_hull/l_m_p) +"trF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/surface/table/almayer, +/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 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/medical_science) +"trW" = ( +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"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) +"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{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/port) +"tsv" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/lifeboat_pumps/north1) +"tsy" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/command/cichallway) +"tsC" = ( +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/structure/surface/table/almayer, +/obj/structure/sign/poster{ + icon_state = "poster8"; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/upper_medical) +"tsH" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/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{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"tte" = ( +/obj/structure/pipes/vents/pump/no_boom{ + welded = 1 + }, +/turf/open/floor/plating, +/area/almayer/powered/agent) +"ttM" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"ttS" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"tuf" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"tuo" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"tuA" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/shipboard/port_missiles) +"tuN" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"tuZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/weapon_room) +"tvw" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"tvA" = ( +/obj/structure/machinery/sleep_console{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/surgery) +"tvM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/squads/delta) +"tvQ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"twq" = ( +/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 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"twz" = ( +/obj/structure/shuttle/part/dropship2/transparent/middle_left_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"twB" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer2" + }, +/turf/open/floor/almayer_hull{ + icon_state = "outerhull_dir" + }, +/area/space) +"twT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"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) +"txe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"txi" = ( +/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/port_hallway) +"txO" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"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) +"tyz" = ( +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hull/upper_hull/u_a_p) +"tyD" = ( +/turf/open/floor/almayer/research/containment/corner_var1{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"tyK" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/shipboard/starboard_missiles) +"tzf" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"tzi" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"tzj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"tzx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) +"tzz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"tzL" = ( +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/medical/hydroponics) +"tzP" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"tAh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"tAi" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"tAL" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"tAR" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"tAU" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/medical/lower_medical_medbay) +"tAV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_s) +"tBq" = ( +/obj/item/tool/crowbar, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"tBz" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"tBF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"tBL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"tBP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"tCb" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/device/radio, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"tCN" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/starboard_hallway) +"tCT" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"tDx" = ( +/obj/item/tool/wet_sign, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"tDA" = ( +/obj/item/tool/weldpack{ + pixel_y = 15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"tDZ" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/bravo) +"tEi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door_control{ + dir = 1; + id = "Research Armory"; + name = "Research Armory"; + pixel_x = 27; + req_one_access_txt = "4;28" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/medical/upper_medical) +"tEB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) +"tEO" = ( +/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/open{ + id = "ARES Emergency"; + name = "ARES Emergency Lockdown"; + open_layer = 1.9; + plane = -7 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"tFv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/general_equipment) +"tFS" = ( +/obj/structure/machinery/computer/supplycomp, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/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{ + icon_state = "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{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"tGf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"tGg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/main_office) +"tGh" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_lobby) +"tGi" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south2) +"tGq" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"tGG" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/briefing) +"tGO" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"tHh" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"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{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"tHu" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/command/airoom) +"tHv" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/living/briefing) +"tHB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 + }, +/obj/structure/machinery/recharger{ + layer = 3.1; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"tHS" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/cells) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/port_emb) +"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) +"tIQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"tIS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"tIU" = ( +/obj/structure/platform, +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"tJi" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/bridgebunks) +"tJo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"tJp" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/crowbar/red, +/obj/item/clipboard{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"tJy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/main_office) +"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{ + dir = 4; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"tKf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/lifeboat) +"tKn" = ( +/obj/effect/attach_point/electronics/dropship2{ + dir = 1 + }, +/obj/structure/shuttle/part/dropship2/transparent/inner_left_weapons, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"tKr" = ( +/obj/structure/machinery/cryopod/right{ + dir = 2 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/bridgebunks) +"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{ + dir = 1; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"tLy" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/engineering/engine_core) +"tLM" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"tMa" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "27" + }, +/area/almayer/hallways/hangar) +"tMf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"tMn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"tMW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"tNj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"tNF" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "CMP Office Shutters"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/chief_mp_office) +"tNP" = ( +/obj/structure/sign/safety/debark_lounge{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"tNT" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"tOd" = ( +/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/aft_hallway) +"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{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/hydroponics) +"tOC" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/engineering/laundry) +"tOW" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"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/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"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) +"tQo" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"tQE" = ( +/obj/item/clothing/head/welding, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"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) +"tRc" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/item/bedsheet/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"tRd" = ( +/obj/structure/shuttle/part/dropship2/bottom_left_wall, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"tRA" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"tRD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "bluecorner" + }, +/area/almayer/living/basketball) +"tRT" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "76" + }, +/area/almayer/hallways/hangar) +"tRV" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"tRX" = ( +/turf/closed/wall/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"tSc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"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) +"tSr" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"tSw" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/stern_hallway) +"tSB" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/living/briefing) +"tTp" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/living/briefing) +"tTu" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"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{ + icon_state = "kitchen" + }, +/area/almayer/living/captain_mess) +"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) +"tUI" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"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{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"tVf" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"tVh" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/bridgebunks) +"tVq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha) +"tVB" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"tWg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/general_equipment) +"tWi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering/port) +"tWY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/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/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/upper_medical) +"tXb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/bed/chair/comfy/charlie{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/living/briefing) +"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, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"tXs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/cryo) +"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{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"tXW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"tYi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"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{ + dir = 5; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"tYB" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"tYW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/crew/alt, +/obj/structure/phone_base/rotary/no_dnd{ + name = "Brig Cells Telephone"; + phone_category = "Almayer"; + phone_id = "Brig Cells"; + pixel_x = 15 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"tYX" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/bridgebunks) +"tZc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/port_point_defense) +"tZe" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"tZm" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"tZB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"tZF" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_p) +"tZP" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/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{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/port) +"uaa" = ( +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_m_p) +"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) +"uah" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "sterile_green_side" + }, +/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{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"uay" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"uaI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/processor{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"uaZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"ubd" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"ubA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"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) +"udi" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lower_medical_lobby) +"udx" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/command/cichallway) +"udF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"udG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"udV" = ( +/obj/structure/machinery/firealarm{ + pixel_y = -28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/port_point_defense) +"ueh" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"ueo" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Evidence Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/evidence_storage) +"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{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"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{ + icon_state = "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) +"ufp" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"ufx" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"ufJ" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"ugs" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/marine_law{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/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{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/lobby) +"ugu" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"ugJ" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"ugT" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"ugV" = ( +/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/hull/lower_hull/l_m_s) +"uhg" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "89" + }, +/area/almayer/hallways/hangar) +"uhl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "cargo_arrow" + }, +/area/almayer/living/offices) +"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{ + icon_state = "cargo_arrow" + }, +/area/almayer/living/offices) +"uia" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"uig" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"uim" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"uiG" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"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{ + dir = 8; + icon_state = "outerhull_dir" + }, +/area/almayer/engineering/upper_engineering/starboard) +"uiT" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cichallway) +"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{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"ujA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/closed/wall/almayer, +/area/almayer/hull/lower_hull/l_m_p) +"ujV" = ( +/obj/structure/machinery/vending/dinnerware, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"ukh" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"ukt" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"uku" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/turf/open/floor/plating, +/area/almayer/engineering/engineering_workshop/hangar) +"ukA" = ( +/obj/structure/platform, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"ukS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"ukU" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"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) +"ula" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Evidence Room" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/evidence_storage) +"uli" = ( +/turf/open/floor/grass, +/area/almayer/living/starboard_garden) +"uly" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) +"ulZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/living/offices) +"umh" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south2) +"umm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/small, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/powered/agent) +"umv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_m_s) +"umy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"umC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) +"umR" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"umS" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/living/pilotbunks) +"umT" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_p) +"umY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"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{ + icon_state = "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{ + dir = 9; + icon_state = "green" + }, +/area/almayer/shipboard/brig/cells) +"unJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"unU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"uoi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/apc, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/containment) +"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{ + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"uoS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_s) +"uoY" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"upe" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"upt" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"upM" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/upper_medical) +"upO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"uqa" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"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{ + icon_state = "sterile_green" + }, +/area/almayer/medical/containment) +"uqo" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/armory) +"uqA" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"uqB" = ( +/obj/structure/machinery/firealarm{ + pixel_x = 6; + pixel_y = 28 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/obj/structure/phone_base{ + name = "CE Office Telephone"; + phone_category = "Offices"; + phone_id = "CE Office"; + pixel_x = -8; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/ce_room) +"uqH" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"uqI" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"urM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/engineering/upper_engineering) +"ush" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/chief_mp_office) +"usi" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"usm" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/waterhazard{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"uso" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"usr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"usw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/engineering/engine_core) +"usy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"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{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering) +"utx" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/squads/req) +"utK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_p) +"uue" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + dir = 1; + name = "\improper Cryogenics Bay" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/cryo) +"uuj" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 5 + }, +/obj/item/reagent_container/food/condiment/hotsauce/cholula{ + pixel_x = -8; + pixel_y = 22 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"uuq" = ( +/obj/structure/bed, +/obj/structure/machinery/flasher{ + id = "Cell 4"; + pixel_x = 24 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/shipboard/brig/cells) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"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) +"uvk" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"uvs" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/machinery/recycler, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/hull/lower_hull/l_m_p) +"uvt" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/squads/bravo) +"uvy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/brig/armory) +"uvG" = ( +/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{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hull/lower_hull/l_a_s) +"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{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"uvS" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/attachable/flashlight/grip, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"uvY" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/cells) +"uvZ" = ( +/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 = 1; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = 9; + pixel_y = 16 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + pixel_x = -7; + pixel_y = 16 + }, +/obj/item/clothing/mask/cigarette/pipe{ + pixel_y = 5 + }, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"uws" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/shipboard/port_missiles) +"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{ + dir = 1 + }, +/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) +"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 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"uxZ" = ( +/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{ + icon_state = "greencorner" + }, +/area/almayer/hallways/port_hallway) +"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) +"uyJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/chemistry, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/chemistry) +"uzg" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"uzm" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_s) +"uzx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/cryo) +"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) +"uzP" = ( +/obj/item/bedsheet/blue{ + layer = 3.2 + }, +/obj/item/bedsheet/blue{ + pixel_y = 13 + }, +/obj/item/toy/farwadoll{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + icon_state = "therapyred"; + 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{ + icon_state = "blue" + }, +/area/almayer/living/port_emb) +"uzU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 10; + pixel_y = 15 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/main_office) +"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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/port_missiles) +"uAs" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"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{ + icon_state = "emerald" + }, +/area/almayer/living/port_emb) +"uAW" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"uBn" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/vehiclehangar) +"uBw" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/starboard_hallway) +"uBz" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/stern_hallway) +"uBM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/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{ + dir = 6; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"uCl" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_side" + }, +/area/almayer/shipboard/brig/surgery) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/charlie) +"uCW" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cichallway) +"uDn" = ( +/obj/structure/ladder{ + height = 1; + id = "bridge2" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/navigation) +"uDp" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"uDA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lockerroom) +"uDB" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"uDW" = ( +/obj/structure/machinery/cm_vending/clothing/tl/delta{ + density = 0; + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/squads/delta) +"uEc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/engine_core) +"uEv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"uEK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 + }, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/phone_base{ + dir = 1; + name = "Brig Warden's Office Telephone"; + phone_category = "Offices"; + phone_id = "Brig Warden's Office"; + pixel_x = -16 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) +"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{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"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" + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lockerroom) +"uFp" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"uFt" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"uFH" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"uFL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/repair_bay) +"uFM" = ( +/obj/structure/machinery/camera/autoname/almayer/dropship_two{ + dir = 8; + pixel_x = 16 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle{ + pixel_x = -8 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"uFP" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/port_hallway) +"uGa" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"uGo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/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/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"uGt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"uGw" = ( +/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/hull/lower_hull/l_m_s) +"uGz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"uGQ" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"uId" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"uIp" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull) +"uIv" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"uII" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"uIJ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/squads/alpha) +"uIT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/alpha_bravo_shared) +"uJk" = ( +/obj/structure/prop/almayer/name_stencil{ + icon_state = "almayer4" + }, +/turf/open/floor/almayer_hull{ + icon_state = "outerhull_dir" + }, +/area/space) +"uJl" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"uJo" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"uJs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/main_office) +"uJB" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hull/lower_hull/l_m_s) +"uJU" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/alpha) +"uKd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"uKk" = ( +/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/hull/lower_hull/l_f_p) +"uKv" = ( +/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_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha_bravo_shared) +"uKA" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/starboard_hallway) +"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) +"uLu" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/stern_hallway) +"uLv" = ( +/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/starboard_hallway) +"uLJ" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = -7 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/shipboard/brig/execution) +"uLN" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"uLW" = ( +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/item/reagent_container/glass/bucket, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"uMc" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/starboard) +"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{ + icon_state = "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{ + icon_state = "redfull" + }, +/area/almayer/squads/alpha) +"uMn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "emerald" + }, +/area/almayer/living/port_emb) +"uMS" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/squads/delta) +"uNe" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"uNg" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/bridgebunks) +"uNl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/chief_mp_office) +"uNB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"uNF" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"uNL" = ( +/turf/closed/wall/almayer, +/area/almayer/hull/lower_hull/l_f_s) +"uNM" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emeraldcorner" + }, +/area/almayer/living/briefing) +"uNN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/living/basketball) +"uNV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"uNW" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"uOc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"uOi" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/lifeboat_pumps/south2) +"uOJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/living/pilotbunks) +"uPd" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"uPr" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/living/basketball) +"uPI" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/stern_hallway) +"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) +"uQm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"uQn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"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) +"uQU" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/port_hallway) +"uRo" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_y = 7 + }, +/turf/open/floor/almayer, +/area/almayer/squads/alpha) +"uRr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/engineering_materials, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"uRt" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"uRG" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/cameras/dropship/two, +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"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) +"uRQ" = ( +/obj/item/storage/firstaid/fire, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"uSq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"uSH" = ( +/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/phone_base/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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"uSL" = ( +/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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"uSS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/lockerroom) +"uTv" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"uTN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/living/pilotbunks) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/command/cic) +"uTY" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"uTZ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/port) +"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{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"uUs" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/perma) +"uUt" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/starboard_point_defense) +"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) +"uUO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control{ + id = "courtyard_cells"; + name = "\improper Courtyard Lockdown Shutters"; + pixel_x = 16; + req_access_txt = "3" + }, +/obj/structure/machinery/recharger, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"uUV" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/tinted{ + dir = 2 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering/port) +"uVb" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/hull/lower_hull/l_m_s) +"uVd" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"uVh" = ( +/obj/structure/filingcabinet/seeds, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"uVv" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"uVA" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"uVD" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/almayer/living/cryo_cells) +"uVF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/perma) +"uVR" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"uVX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/cargo_guns/pilot_officer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/pilotbunks) +"uWc" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/living/briefing) +"uWC" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/stern_hallway) +"uWI" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = -9; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/squads/req) +"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{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_medbay) +"uXj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/research/containment/floor2{ + dir = 8 + }, +/area/almayer/medical/containment/cell) +"uXu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"uXL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/engineering/upper_engineering/starboard) +"uYa" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"uYg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"uZo" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "emerald" + }, +/area/almayer/living/port_emb) +"uZH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"uZQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/repair_bay) +"uZY" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/brig/armory) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/basketball) +"vak" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/closed/wall/almayer, +/area/almayer/hallways/starboard_umbilical) +"vbf" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"vbB" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"vbI" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "37" + }, +/area/almayer/hallways/hangar) +"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{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"vbS" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"vbV" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"vce" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_m_p) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_lobby) +"vcE" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south2) +"vcG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/item/device/flash, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"vcJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/phone_base{ + dir = 4; + name = "Port Railgun Control Telephone"; + phone_category = "Command"; + phone_id = "Port Railgun Control"; + pixel_x = -26 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/shipboard/port_missiles) +"vcK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"vdJ" = ( +/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{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"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{ + dir = 8; + icon_state = "silver" + }, +/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{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"vdW" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"ven" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"veu" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/living/briefing) +"vez" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"vfa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"vfe" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "56" + }, +/area/almayer/hallways/hangar) +"vfo" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + dir = 2; + name = "\improper Evacuation Airlock PL-2"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/powered) +"vfv" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/execution) +"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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/squads/bravo) +"vfB" = ( +/turf/open/floor/almayer/no_build{ + dir = 4 + }, +/area/almayer/command/airoom) +"vfJ" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"vfP" = ( +/turf/open/floor/almayer/research/containment/corner{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"vgk" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/port_hallway) +"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{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/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{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"vgC" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/starboard_hallway) +"vgD" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/command/lifeboat) +"vgF" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/starboard_hallway) +"vgO" = ( +/turf/closed/wall/almayer/research/containment/wall/east, +/area/almayer/medical/containment/cell) +"vgQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"vhq" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"vht" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"vhw" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/almayer, +/area/almayer/living/offices/flight) +"vhI" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_p) +"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{ + dir = 10; + icon_state = "emerald" + }, +/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) +"vhY" = ( +/obj/structure/sign/goldenplaque, +/turf/closed/wall/almayer, +/area/almayer/living/gym) +"vif" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/chapel) +"vih" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/candle_box, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"vim" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"vit" = ( +/turf/open/floor/almayer{ + icon_state = "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) +"viB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk{ + allow_construction = 0 + }, +/area/almayer/command/airoom) +"viJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/gym) +"viN" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/command/securestorage) +"viO" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 5 + }, +/area/almayer/living/briefing) +"vjb" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"vjg" = ( +/obj/structure/prop/almayer/missile_tube{ + icon_state = "missiletubesouth" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/port_missiles) +"vjx" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"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{ + dir = 1; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"vjD" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"vjK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_missiles) +"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{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"vkp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"vkD" = ( +/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/hull/upper_hull/u_m_s) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/general_equipment) +"vkR" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"vli" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass/reinforced{ + amount = 50 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/shipboard/brig/processing) +"vln" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"vly" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/shipboard/port_missiles) +"vlR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"vlX" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/alpha_bravo_shared) +"vma" = ( +/turf/open/shuttle/dropship{ + icon_state = "rasputin15" + }, +/area/almayer/hallways/hangar) +"vme" = ( +/obj/structure/bed/chair, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/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{ + icon_state = "cargo" + }, +/area/almayer/hallways/hangar) +"vmK" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"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{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"vmW" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/shipboard/port_missiles) +"vnD" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"vnV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"vnY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"vot" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"vox" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"voA" = ( +/obj/structure/platform_decoration, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"voQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_m_p) +"vpn" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"vpt" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/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/stack/folding_barricade, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"vpV" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "emerald" + }, +/area/almayer/command/cic) +"vpW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"vqK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"vqL" = ( +/obj/item/clothing/under/shorts/black, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/engineering/laundry) +"vqO" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"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{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"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) +"vrB" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"vrI" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -18 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/offices) +"vrM" = ( +/obj/structure/closet/secure_closet{ + name = "secure evidence locker"; + req_access_txt = "3" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/shipboard/brig/evidence_storage) +"vrQ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "perma_exit"; + name = "\improper Exit Shutters" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "perma_lockdown"; + name = "\improper Perma Lockdown Shutter" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/perma) +"vrW" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "bluecorner" + }, +/area/almayer/living/briefing) +"vse" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/offices) +"vsh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"vsI" = ( +/obj/structure/closet/secure_closet/guncabinet/riot_control, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/brig/armory) +"vsJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + name = "\improper Power Control Room"; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;6" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/processing) +"vsV" = ( +/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/hull/lower_hull/l_a_s) +"vta" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"vti" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/medical_science) +"vtr" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/almayer/powered/agent) +"vtx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/upper_medical) +"vtB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/port_hallway) +"vtT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"vub" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/sea_office) +"vuv" = ( +/turf/closed/wall/almayer, +/area/almayer/hull/upper_hull/u_a_p) +"vuA" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/briefing) +"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{ + icon_state = "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{ + icon_state = "blue" + }, +/area/almayer/squads/delta) +"vuR" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"vuZ" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/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) +"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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"vwF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/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) +"vwN" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"vwO" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/general_equipment) +"vwP" = ( +/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{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/hallways/repair_bay) +"vwV" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/command/cic) +"vxb" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/hangar) +"vxC" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/general_equipment) +"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) +"vyg" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"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{ + icon_state = "cargo" + }, +/area/almayer/living/offices) +"vyu" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"vyE" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/lobby) +"vyI" = ( +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"vyU" = ( +/obj/structure/bed/chair/comfy/charlie, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/living/briefing) +"vzl" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"vzp" = ( +/turf/open/floor/almayer/research/containment/entrance, +/area/almayer/medical/containment/cell/cl) +"vzq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"vzu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"vzz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Hydroponics Garden" + }, +/turf/open/floor/almayer{ + icon_state = "greenfull" + }, +/area/almayer/shipboard/brig/cells) +"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" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"vAq" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/hangar) +"vAE" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/alpha) +"vAG" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"vAQ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagent_analyzer{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"vAU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/scrubber/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer/no_build{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"vBm" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/main_office) +"vBp" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/window/reinforced/ultra{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/living/briefing) +"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{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/chief_mp_office) +"vBU" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"vCk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/hydroponics) +"vCx" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"vCy" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera"; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/shipboard/brig/cells) +"vCG" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/chief_mp_office) +"vDa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/hydroponics) +"vEf" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) +"vEn" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/item/stack/sheet/mineral/uranium{ + layer = 2.99 + }, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"vEr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/upper_medical) +"vEH" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"vFb" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"vFv" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"vFw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"vGk" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"vGr" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"vGy" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"vGA" = ( +/obj/structure/bed/sofa/south/grey/right, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"vGG" = ( +/obj/structure/bed/chair/comfy/bravo, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"vGI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/living/numbertwobunks) +"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) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"vHs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/starboard_hallway) +"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{ + icon_state = "containment_corner_variant_2" + }, +/area/almayer/medical/containment/cell) +"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{ + icon_state = "redfull" + }, +/area/almayer/command/cic) +"vIf" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/upper_medical) +"vIm" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"vIu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cichallway) +"vIA" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"vIN" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/intercom{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"vJg" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/securestorage) +"vJo" = ( +/obj/structure/machinery/computer/cameras/almayer_network{ + dir = 1 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/shipboard/navigation) +"vJy" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"vJM" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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{ + icon_state = "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{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/containment) +"vKe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"vKf" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"vKF" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/aft_hallway) +"vLh" = ( +/obj/item/roller, +/obj/structure/surface/rack, +/obj/item/roller, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/upper_medical) +"vLv" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"vLA" = ( +/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{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/charlie) +"vMn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"vMo" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_four) +"vMx" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"vME" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/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{ + icon_state = "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{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"vND" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie) +"vNF" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"vNW" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 9 + }, +/area/almayer/command/cic) +"vOd" = ( +/obj/structure/machinery/optable, +/obj/structure/sign/safety/medical{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/shipboard/brig/surgery) +"vOh" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north2) +"vOy" = ( +/turf/closed/wall/almayer/white/reinforced, +/area/almayer/medical/medical_science) +"vOP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/upper_medical) +"vPj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp{ + pixel_y = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/device/flash, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) +"vPm" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/lifeboat_pumps/south1) +"vPr" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"vPv" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"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{ + allow_construction = 0 + }, +/area/almayer/stair_clone/upper) +"vQf" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silvercorner" + }, +/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/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" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/cells) +"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{ + desc = "This metal floor has been painted to look like one made of wood. Unfortunately, wood and high pressure internal atmosphere don't mix well. Wood is a major fire hazard don't'cha know."; + icon = 'icons/turf/floors/floors.dmi'; + icon_state = "wood" + }, +/area/almayer/shipboard/sea_office) +"vRb" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 10 + }, +/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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"vRz" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hull/lower_hull/l_f_p) +"vRX" = ( +/obj/structure/surface/table/almayer, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/item/device/megaphone, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/upper_medical) +"vSg" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"vSl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"vSn" = ( +/obj/structure/barricade/handrail/medical{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"vSp" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"vSE" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"vSG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/medical/chemistry) +"vSH" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"vSK" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/USCMtray{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/briefing) +"vSN" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"vSW" = ( +/obj/structure/machinery/cryopod/right, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/delta) +"vTt" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"vTu" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering) +"vTK" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hull/lower_hull/l_a_p) +"vTS" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"vUe" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/living/briefing) +"vUh" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/command/lifeboat) +"vUi" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"vUI" = ( +/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/hull/upper_hull/u_f_p) +"vUL" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flash, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"vUU" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/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{ + dir = 4; + icon_state = "emerald" + }, +/area/almayer/hallways/port_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{ + dir = 8; + icon_state = "red" + }, +/area/almayer/squads/alpha) +"vVd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/briefing) +"vVh" = ( +/obj/item/weapon/dart/green, +/obj/structure/dartboard{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"vVs" = ( +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/containment) +"vVw" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"vVW" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright" + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"vWc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/normandy{ + layer = 3.5 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/offices/flight) +"vWo" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/evidence_storage) +"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{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"vWx" = ( +/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/hull/upper_hull/u_f_s) +"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) +"vWJ" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"vWK" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"vXd" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + density = 0; + id = "engidorm"; + name = "\improper Privacy Shutters" + }, +/turf/open/floor/plating, +/area/almayer/engineering/upper_engineering/port) +"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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"vXx" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "64" + }, +/area/almayer/hallways/hangar) +"vXQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/perma) +"vXX" = ( +/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/hull/lower_hull/l_m_p) +"vXY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"vYi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/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{ + icon_state = "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{ + icon_state = "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{ + icon_state = "cargo" + }, +/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) +"vZA" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull) +"wan" = ( +/obj/structure/surface/table/almayer, +/obj/item/facepaint/brown, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/living/offices) +"waD" = ( +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_one) +"wba" = ( +/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/aft_hallway) +"wbe" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/spacejam_tickets{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/prop/helmetgarb/spacejam_tickets{ + pixel_x = -8; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"wbh" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/starboard_hallway) +"wbj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/aft_hallway) +"wbu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/living/pilotbunks) +"wbx" = ( +/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/hull/lower_hull/l_f_p) +"wbC" = ( +/obj/structure/machinery/atm{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/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{ + icon_state = "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{ + icon_state = "bluefull" + }, +/area/almayer/living/pilotbunks) +"wbP" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 125 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/operating_room_four) +"wbX" = ( +/obj/structure/closet/secure_closet/cmdcabinet{ + pixel_y = 24 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/command/cic) +"wcN" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"wdb" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/starboard_hallway) +"wdf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/living/auxiliary_officer_office) +"wdo" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + 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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/medical_science) +"wdr" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"wdF" = ( +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/processing) +"wdI" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/starboard_missiles) +"wdJ" = ( +/obj/structure/surface/rack, +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"wei" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/hydroponics) +"wex" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = 8; + pixel_y = -25 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "cargo" + }, +/area/almayer/living/offices) +"weU" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"wft" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"wfE" = ( +/turf/closed/wall/almayer, +/area/almayer/living/gym) +"wfL" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/shipboard/brig/execution) +"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{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/living/briefing) +"wgd" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"wgi" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/main_office) +"wgk" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"wgo" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_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{ + icon_state = "plate" + }, +/area/almayer/shipboard/port_point_defense) +"wgU" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"whc" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"whm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/ares_console{ + pixel_x = 9 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "plating" + }, +/area/almayer/command/airoom) +"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{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/command/cichallway) +"whZ" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"wie" = ( +/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/engineering_workshop) +"wir" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/lobby) +"wiz" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"wiW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "orangefull" + }, +/area/almayer/engineering/upper_engineering) +"wjz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/medical/upper_medical) +"wjC" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/port_point_defense) +"wka" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/condiment/hotsauce/sriracha{ + pixel_x = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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" + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lockerroom) +"wky" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/medical_science) +"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{ + icon_state = "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/white/open{ + closed_layer = 3.2; + id = "ARES Emergency"; + layer = 3.2; + name = "ARES Emergency Lockdown"; + needs_power = 0; + open_layer = 1.9; + plane = -7 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "test_floor4" + }, +/area/almayer/command/airoom) +"wkV" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "22" + }, +/area/almayer/hallways/hangar) +"wkX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"wlj" = ( +/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{ + icon_state = "cargo" + }, +/area/almayer/engineering/engine_core) +"wlp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"wly" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/chief_mp_office) +"wlE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/cic) +"wlF" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"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) +"wlL" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"wmg" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/starboard_missiles) +"wmz" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"wmE" = ( +/obj/structure/machinery/door/window/brigdoor/southright{ + id = "Cell 4"; + name = "Cell 4" + }, +/obj/structure/sign/safety/four{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"wmK" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/command/computerlab) +"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{ + icon_state = "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{ + icon_state = "cargo" + }, +/area/almayer/living/bridgebunks) +"wnh" = ( +/obj/structure/window/framed/almayer/white/hull, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"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{ + dir = 4; + icon_state = "green" + }, +/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 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/charlie) +"woy" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"woG" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_p) +"woM" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"wpg" = ( +/obj/structure/machinery/blackbox_recorder, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/almayer/powered/agent) +"wpw" = ( +/obj/structure/bed/chair/comfy/ares{ + dir = 1 + }, +/obj/structure/pipes/vents/pump/no_boom{ + desc = "Has a valve and pump attached to it, connected to multiple gas tanks."; + name = "Security Vent" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "plating" + }, +/area/almayer/command/airoom) +"wpz" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/closet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"wpI" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"wqc" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"wqh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"wqq" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/stern_hallway) +"wqu" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/lobby) +"wqA" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"wqE" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_p) +"wqW" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/upper_medical) +"wra" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "36" + }, +/area/almayer/hallways/hangar) +"wrC" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/living/gym) +"wrQ" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/living/starboard_garden) +"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{ + icon_state = "cargo" + }, +/area/almayer/hallways/hangar) +"wse" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/containment) +"wst" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"wsx" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/phone_base/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 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/medical_science) +"wsD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cic_hallway) +"wsP" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = -10; + pixel_y = 1 + }, +/obj/item/prop/helmetgarb/gunoil{ + layer = 4.2; + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/weapon/broken_bottle{ + pixel_x = 11; + pixel_y = -2 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"wsR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/bravo) +"wta" = ( +/obj/structure/closet/crate, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"wtd" = ( +/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/hull/lower_hull/l_f_p) +"wty" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/squads/delta) +"wtM" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"wuc" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + 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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/surgery) +"wul" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_s) +"wun" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/engineering/lower_engineering) +"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{ + icon_state = "cargo" + }, +/area/almayer/squads/bravo) +"wuH" = ( +/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/hull/lower_hull/l_m_p) +"wvb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/captain_mess) +"wvj" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"wvI" = ( +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/obj/structure/surface/table/reinforced/black, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/perma) +"wvT" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/processing) +"wvU" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/living/synthcloset) +"wwk" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/item/stack/folding_barricade, +/obj/item/stack/sheet/mineral/uranium{ + layer = 2.99 + }, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"wwr" = ( +/obj/structure/machinery/cryopod{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/charlie) +"wwu" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/port_hallway) +"wwD" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"wwJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8 + }, +/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{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"wxj" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/starboard) +"wxq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/lower_medical_medbay) +"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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"wya" = ( +/obj/structure/platform, +/obj/structure/largecrate/random/case/double{ + layer = 2.98 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"wyt" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave{ + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/command/cichallway) +"wyv" = ( +/obj/structure/machinery/door_control{ + id = "ARES JoeCryo"; + name = "Working Joe Cryogenics Lockdown"; + pixel_x = -24; + pixel_y = -8; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"wyO" = ( +/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/hull/lower_hull/l_m_s) +"wyQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "ARES Emergency"; + indestructible = 1; + name = "ARES Emergency Lockdown"; + req_one_access_txt = "91;92" + }, +/turf/open/floor/almayer/no_build{ + icon_state = "plating" + }, +/area/almayer/command/airoom) +"wzg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"wzx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_s) +"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{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lower_medical_medbay) +"wAR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/port_hallway) +"wAU" = ( +/obj/structure/bed/chair/comfy/delta, +/obj/structure/sign/poster/music{ + pixel_x = -27 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/briefing) +"wBV" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "77" + }, +/area/almayer/hallways/hangar) +"wBY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_s) +"wCh" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"wCs" = ( +/obj/structure/machinery/vending/security, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"wCI" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/living/briefing) +"wCM" = ( +/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{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"wCT" = ( +/obj/effect/step_trigger/teleporter_vector{ + name = "Almayer_AresDown"; + vector_x = 97; + vector_y = -65 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"wDl" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/south1) +"wDm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"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{ + icon_state = "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) +"wDH" = ( +/obj/structure/morgue, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/morgue) +"wDJ" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "emerald" + }, +/area/almayer/squads/charlie_delta_shared) +"wDK" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/bravo) +"wDR" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_a_s) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/alpha) +"wEg" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "agentshuttle"; + indestructible = 1; + unacidable = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/shuttle/dropship{ + icon_state = "rasputin3" + }, +/area/almayer/powered/agent) +"wEl" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "50" + }, +/area/almayer/hallways/hangar) +"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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"wEO" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south2) +"wFb" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"wFm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_s) +"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{ + icon_state = "redfull" + }, +/area/almayer/command/cic) +"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) +"wFR" = ( +/turf/open/floor/almayer, +/area/almayer/living/gym) +"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{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"wGi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"wGA" = ( +/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/starboard_hallway) +"wGE" = ( +/obj/structure/disposalpipe/segment, +/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{ + dir = 9; + icon_state = "emerald" + }, +/area/almayer/living/port_emb) +"wHo" = ( +/turf/open/floor/almayer{ + icon_state = "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) +"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{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"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{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"wIQ" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/shipboard/brig/cic_hallway) +"wJb" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/lower_medical_medbay) +"wJo" = ( +/obj/structure/machinery/door/airlock/almayer/research/reinforced{ + access_modified = 1; + dir = 1; + name = "\improper CMO's Bedroom"; + req_one_access_txt = "1;5" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/upper_medical) +"wJw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/computer/supplycomp/vehicle, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/vehiclehangar) +"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 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emerald" + }, +/area/almayer/squads/charlie) +"wJH" = ( +/turf/closed/wall/almayer/research/containment/wall/east, +/area/almayer/medical/containment/cell/cl) +"wKn" = ( +/obj/structure/surface/rack, +/obj/item/facepaint/sniper, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"wKF" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) +"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) +"wLk" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"wLm" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/living/cryo_cells) +"wLu" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/south2) +"wLy" = ( +/obj/structure/pipes/vents/pump/no_boom{ + name = "Secure Reinforced Air Vent"; + welded = 1 + }, +/turf/open/floor/almayer/research/containment/floor2{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"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{ + dir = 6; + icon_state = "blue" + }, +/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{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"wLN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/containment) +"wLV" = ( +/obj/structure/bed/chair/comfy/charlie, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/living/briefing) +"wMm" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"wMG" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/alpha) +"wMO" = ( +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/living/port_emb) +"wNm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull) +"wNT" = ( +/obj/structure/platform, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"wNU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = list(2,34,30) + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_p) +"wOh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/stern_hallway) +"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{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"wPf" = ( +/obj/structure/sign/safety/reception{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"wPk" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/execution) +"wPz" = ( +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "cargo_arrow" + }, +/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{ + icon_state = "bluefull" + }, +/area/almayer/command/cichallway) +"wQg" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/aft_hallway) +"wQk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/machinery/status_display{ + pixel_y = -32 + }, +/obj/structure/machinery/vending/coffee, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"wQv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"wQx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hull/upper_hull/u_a_s) +"wRm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"wRN" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"wSk" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/stern_hallway) +"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{ + icon_state = "dark_sterile" + }, +/area/almayer/engineering/laundry) +"wSR" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"wSX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"wTd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "silver" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"wTm" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/living/briefing) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie_delta_shared) +"wTy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/lifeboat_pumps/south1) +"wTJ" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/largecrate/random, +/turf/open/floor/almayer, +/area/almayer/engineering/upper_engineering/port) +"wTM" = ( +/turf/closed/wall/almayer/research/containment/wall/south, +/area/almayer/medical/containment/cell) +"wTN" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/auxiliary_officer_office) +"wUd" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/medical/morgue) +"wUz" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/aft_hallway) +"wUN" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"wUO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_f_s) +"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{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/living/pilotbunks) +"wUS" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"wVb" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hull/lower_hull/l_a_s) +"wVw" = ( +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/item/vehicle_clamp, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/ammo_magazine/smg/m39, +/obj/item/weapon/gun/smg/m39, +/obj/item/weapon/gun/smg/m39, +/turf/open/floor/plating/almayer, +/area/almayer/shipboard/brig/armory) +"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{ + icon_state = "plate" + }, +/area/almayer/squads/charlie_delta_shared) +"wVz" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"wVB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "bluefull" + }, +/area/almayer/living/bridgebunks) +"wVD" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/tool/shovel/snow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"wVP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"wVV" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/shipboard/brig/cryo) +"wVW" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/command/cic) +"wVY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/lobby) +"wWf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"wWg" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/living/chapel) +"wWk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"wWm" = ( +/turf/open/floor/almayer/research/containment/corner_var1{ + icon_state = "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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"wWz" = ( +/turf/closed/wall/almayer/research/containment/wall/north, +/area/almayer/medical/containment/cell) +"wWC" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "blue" + }, +/area/almayer/living/pilotbunks) +"wWJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/living/port_emb) +"wWL" = ( +/obj/item/tool/screwdriver, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"wWP" = ( +/obj/structure/prop/cash_register/broken, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/squads/req) +"wWQ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/port_hallway) +"wWR" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + dir = 8 + }, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"wWT" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_p) +"wXh" = ( +/obj/structure/machinery/floodlight/landing{ + name = "bolted floodlight" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"wXH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"wXI" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/living/grunt_rnr) +"wXT" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Engineering Storage" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/hangar) +"wYj" = ( +/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{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/hull/upper_hull/u_m_p) +"wYA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/lifeboat_pumps/north1) +"wYK" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 10; + icon_state = "sterile_green_side" + }, +/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) +"wZa" = ( +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/general_equipment) +"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{ + dir = 4; + icon_state = "outerhull_dir" + }, +/area/almayer/engineering/upper_engineering/port) +"wZy" = ( +/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/engineering_workshop/hangar) +"wZE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_four) +"wZH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_s) +"wZM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"wZT" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"wZX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/command/lifeboat) +"xad" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/port_point_defense) +"xae" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/lungs/prosthetic, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"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) +"xaF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"xaS" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 5 + }, +/area/almayer/command/lifeboat) +"xba" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/living/cryo_cells) +"xbd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/briefing) +"xbk" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"xbN" = ( +/obj/structure/surface/rack{ + density = 0; + pixel_y = 16 + }, +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/plating, +/area/almayer/command/airoom) +"xcp" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"xct" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"xcP" = ( +/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/phone_base/rotary{ + name = "Flight Deck Telephone"; + phone_category = "Almayer"; + phone_id = "Flight Deck"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/repair_bay) +"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{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"xeG" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_m_p) +"xfc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull) +"xfh" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"xfi" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "tcomms" + }, +/area/almayer/engineering/engine_core) +"xfm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/living/cafeteria_officer) +"xfw" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/squads/req) +"xfO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/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{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/operating_room_one) +"xgh" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lower_medical_lobby) +"xgm" = ( +/obj/structure/reagent_dispensers/oxygentank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"xgn" = ( +/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/hull/lower_hull/l_f_p) +"xgr" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliason) +"xgx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/vehiclehangar) +"xgJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) +"xgL" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"xgS" = ( +/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/structure/sign/arcturianstopsign{ + pixel_y = 32 + }, +/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{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"xhn" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "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) +"xhE" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/main_office) +"xhM" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + 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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_f_s) +"xhQ" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"xhU" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hull/upper_hull/u_a_p) +"xhZ" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/almayer/command/cichallway) +"xiz" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"xiC" = ( +/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/engine_core) +"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{ + icon_state = "kitchen" + }, +/area/almayer/living/grunt_rnr) +"xjw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering/port) +"xjz" = ( +/turf/open/floor/almayer{ + icon_state = "plating_striped" + }, +/area/almayer/command/lifeboat) +"xjC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"xjD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north1) +"xjG" = ( +/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{ + dir = 5; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"xjK" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "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) +"xkd" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/brig/cells) +"xkC" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emerald" + }, +/area/almayer/hallways/port_hallway) +"xlk" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer, +/area/almayer/squads/bravo) +"xlC" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/engineering/ce_room) +"xlD" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"xlX" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"xlY" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/engineering_workshop) +"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{ + icon_state = "silverfull" + }, +/area/almayer/shipboard/brig/cic_hallway) +"xmv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"xmJ" = ( +/obj/structure/closet, +/obj/structure/sign/safety/bathunisex{ + pixel_x = -16; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/port_emb) +"xmT" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/medical/lower_medical_medbay) +"xne" = ( +/obj/structure/machinery/door/poddoor/almayer/blended{ + id = "RoomDivider"; + layer = 3.1; + name = "\improper Room Divider" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/corporateliason) +"xnl" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Exterior Airlock"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/lower_hull/l_a_p) +"xnR" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Engineering Storage" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering) +"xnY" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"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{ + dir = 8; + icon_state = "bluecorner" + }, +/area/almayer/squads/delta) +"xoh" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"xoJ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/port_point_defense) +"xoO" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"xoS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/closet/secure_closet/guncabinet/red, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/weapon/gun/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/item/ammo_magazine/rifle/m4ra, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -30 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/brig/armory) +"xpd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"xpf" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"xpo" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"xps" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ + access_modified = 1; + name = "\improper Brig"; + req_access = null; + req_one_access_txt = "1;3" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/brig/lobby) +"xpt" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"xpI" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/starboard_hallway) +"xpT" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"xqp" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 8; + layer = 3.1 + }, +/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 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"xqv" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "sterile_green_side" + }, +/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) +"xqM" = ( +/obj/structure/platform, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"xqS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"xro" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/perma) +"xrr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/stern_hallway) +"xrN" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hull/upper_hull/u_a_p) +"xrP" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/plating, +/area/almayer/shipboard/brig/evidence_storage) +"xsl" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering) +"xsw" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"xsz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/medical/upper_medical) +"xsW" = ( +/obj/structure/machinery/cm_vending/gear/vehicle_crew, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/vehiclehangar) +"xtD" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hull/upper_hull/u_a_s) +"xtM" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_lobby) +"xtW" = ( +/obj/structure/machinery/door_control{ + id = "dropship_normandy"; + name = "Dropship Lockdown"; + normaldoorcontrol = 3; + pixel_y = -19; + req_one_access_txt = "3;22"; + throw_range = 15 + }, +/turf/open/shuttle/dropship{ + icon_state = "floor8" + }, +/area/almayer/hallways/hangar) +"xuc" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"xuB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/medical/containment/cell) +"xuI" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"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) +"xuU" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank/custom, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/engineering/engine_core) +"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{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"xvh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/aft_hallway) +"xvr" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"xvw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/charlie) +"xvM" = ( +/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/no_build{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/command/airoom) +"xvX" = ( +/obj/structure/machinery/cm_vending/gear/leader, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/bravo) +"xwl" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 80 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/squads/alpha_bravo_shared) +"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{ + icon_state = "plate" + }, +/area/almayer/living/grunt_rnr) +"xwq" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"xwG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/aft_hallway) +"xxe" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"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) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"xxJ" = ( +/obj/structure/platform, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"xxT" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_s) +"xxZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "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) +"xys" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/brig/main_office) +"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{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"xyw" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"xyz" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer, +/area/almayer/hull/upper_hull/u_f_p) +"xyA" = ( +/obj/structure/shuttle/part/dropship2/transparent/right_inner_bottom_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"xyE" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"xyY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/squads/req) +"xzf" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "blue" + }, +/area/almayer/living/basketball) +"xzo" = ( +/obj/item/stack/catwalk, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/hull/upper_hull/u_a_p) +"xzp" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"xzu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/cells) +"xAe" = ( +/turf/closed/wall/almayer/research/containment/wall/corner, +/area/almayer/medical/containment/cell) +"xAj" = ( +/obj/structure/bed/chair/bolted{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"xAt" = ( +/obj/structure/bed/chair/comfy/charlie{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "emeraldfull" + }, +/area/almayer/living/briefing) +"xAB" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/uscm, +/obj/item/clipboard, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/squads/req) +"xAC" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering/port) +"xAI" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 5; + layer = 3.51 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/port) +"xBQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) +"xBV" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) +"xCd" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/shipboard/brig/processing) +"xCj" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_f_p) +"xCm" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"xCu" = ( +/turf/closed/shuttle/dropship2/transparent{ + icon_state = "39" + }, +/area/almayer/hallways/hangar) +"xCN" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"xCR" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_f_s) +"xCX" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_m_p) +"xDn" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"xDp" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_s) +"xDs" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "68" + }, +/area/almayer/hallways/hangar) +"xDC" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"xDH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = 15 + }, +/obj/structure/machinery/light, +/obj/structure/phone_base/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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"xDQ" = ( +/obj/structure/platform, +/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 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"xEc" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"xEe" = ( +/obj/structure/bed, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/perma) +"xEz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/book/manual/surgery, +/obj/structure/sign/safety/biohazard{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/operating_room_two) +"xEF" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hull/upper_hull/u_f_p) +"xEO" = ( +/turf/open/floor/prison{ + icon_state = "kitchen" + }, +/area/almayer/engineering/upper_engineering) +"xEX" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/offices) +"xFs" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/handcuffs{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/device/flash{ + pixel_y = -8 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"xFw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/hallways/aft_hallway) +"xFD" = ( +/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/hull/lower_hull/l_f_s) +"xFP" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/shipboard/starboard_missiles) +"xFZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/living/gym) +"xGh" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/goldappleseed, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/shipboard/brig/cells) +"xGk" = ( +/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/aft_hallway) +"xGo" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "test_floor4" + }, +/area/almayer/squads/bravo) +"xGJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_x = -13 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/living/briefing) +"xHe" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) +"xHp" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/squads/alpha_bravo_shared) +"xHG" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"xHM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/sentencing, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"xHW" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hull/upper_hull/u_f_p) +"xIb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_p) +"xId" = ( +/obj/structure/surface/rack, +/obj/item/mortar_shell/he, +/obj/item/mortar_shell/he, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/req) +"xIi" = ( +/obj/item/stool{ + pixel_x = 15; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/almayer/hull/lower_hull/l_f_p) +"xIj" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"xIk" = ( +/obj/structure/machinery/cryopod/right{ + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/medical/lower_medical_medbay) +"xIo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/overwatch_console{ + dir = 8; + layer = 3.2; + pixel_x = -17; + pixel_y = -17 + }, +/obj/structure/phone_base/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{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"xIw" = ( +/obj/structure/machinery/brig_cell/cell_2{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/shipboard/brig/processing) +"xIQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/living/offices) +"xJe" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "greencorner" + }, +/area/almayer/shipboard/brig/cells) +"xJh" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/analyzer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"xJi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"xJn" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"xJC" = ( +/obj/structure/machinery/door/airlock/almayer/generic/corporate{ + name = "Corporate Liaison's Closet" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/command/corporateliason) +"xJH" = ( +/turf/open/floor/almayer{ + icon_state = "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) +"xJX" = ( +/obj/structure/shuttle/part/dropship2/right_inner_wing_connector, +/turf/open/space/basic, +/area/almayer/hallways/hangar) +"xKM" = ( +/obj/structure/machinery/status_display{ + pixel_x = 16; + pixel_y = -30 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) +"xKT" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/living/synthcloset) +"xKW" = ( +/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/hull/upper_hull/u_f_p) +"xLI" = ( +/turf/closed/shuttle/dropship2{ + icon_state = "63" + }, +/area/almayer/hallways/hangar) +"xMb" = ( +/obj/structure/shuttle/part/dropship2/transparent/upper_right_wing, +/turf/open/floor/plating, +/area/almayer/hallways/hangar) +"xMf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/port_point_defense) +"xMh" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_p) +"xMj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) +"xMk" = ( +/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{ + allow_construction = 0 + }, +/area/almayer/hallways/aft_hallway) +"xMs" = ( +/turf/closed/wall/almayer/white, +/area/almayer/medical/operating_room_two) +"xMA" = ( +/obj/structure/machinery/computer/med_data, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/cic) +"xMB" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 6 + }, +/area/almayer/command/cic) +"xML" = ( +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/living/grunt_rnr) +"xMQ" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"xNj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access_txt = "7;23;27" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/hangar) +"xNu" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "sterile" + }, +/area/almayer/medical/upper_medical) +"xNv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/living/auxiliary_officer_office) +"xNB" = ( +/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/starboard_hallway) +"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) +"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{ + dir = 4 + }, +/area/almayer/medical/containment/cell) +"xPE" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"xPR" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/living/briefing) +"xPZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"xQa" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/command/cic) +"xQg" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "bluecorner" + }, +/area/almayer/living/pilotbunks) +"xQm" = ( +/turf/open/floor/almayer/research/containment/floor2{ + dir = 1 + }, +/area/almayer/medical/containment/cell) +"xQD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/obj/item/paper_bin/uscm{ + pixel_y = 7 + }, +/obj/item/tool/pen, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/brig/perma) +"xQV" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"xRc" = ( +/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/hull/lower_hull/l_f_p) +"xRh" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + density = 0; + pixel_y = 30 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) +"xRj" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/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{ + icon_state = "emeraldcorner" + }, +/area/almayer/squads/charlie) +"xRw" = ( +/turf/open/floor/almayer/uscm/directional{ + dir = 1 + }, +/area/almayer/living/briefing) +"xRE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"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{ + icon_state = "tcomms" + }, +/area/almayer/command/telecomms) +"xRJ" = ( +/obj/structure/bed/chair/comfy/bravo{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "orangefull" + }, +/area/almayer/living/briefing) +"xRU" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"xSb" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_p) +"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) +"xSz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"xSA" = ( +/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/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/shipboard/brig/lobby) +"xSI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/repair_bay) +"xSM" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/effect/landmark/ert_spawns/distress_cryo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"xSW" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/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{ + dir = 1; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/containment) +"xTp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/shipboard/brig/processing) +"xTt" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/stern_hallway) +"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{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/living/port_emb) +"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{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering/starboard) +"xUB" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/command/cic) +"xUI" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_m_s) +"xUV" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/combat_correspondent) +"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/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"xVj" = ( +/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/hull/lower_hull/l_f_p) +"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{ + dir = 10; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/north1) +"xVO" = ( +/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{ + icon_state = "redfull" + }, +/area/almayer/engineering/engineering_workshop/hangar) +"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) +"xWd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "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{ + icon_state = "plate" + }, +/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) +"xWF" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"xWO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "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{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/engineering/upper_engineering/port) +"xXh" = ( +/turf/closed/wall/almayer/research/containment/wall/west, +/area/almayer/medical/containment/cell) +"xXr" = ( +/obj/item/reagent_container/glass/beaker/bluespace, +/obj/structure/machinery/chem_dispenser/research, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"xYf" = ( +/obj/structure/machinery/cm_vending/clothing/sea, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/sea_office) +"xYj" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/shipboard/brig/cells) +"xYB" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/starboard_point_defense) +"xYN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_f_s) +"xYP" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/cryo_cells) +"xYQ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "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/plating/plating_catwalk, +/area/almayer/engineering/upper_engineering) +"xZz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/uscm/command/capt, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"xZI" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"xZK" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"xZU" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/squads/charlie) +"yac" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"yal" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/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{ + icon_state = "test_floor4" + }, +/area/almayer/living/officer_study) +"yaG" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"yaQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply/no_boom{ + dir = 9 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"yaZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"ybb" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/ids{ + pixel_x = -4; + pixel_y = 14 + }, +/obj/item/device/flash{ + pixel_y = -8 + }, +/obj/structure/machinery/faxmachine/uscm/brig, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"ybf" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/aft_hallway) +"ybr" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"ybO" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_a_p) +"ybS" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_a_s) +"ycd" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"ycj" = ( +/obj/structure/machinery/medical_pod/sleeper{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/medical_science) +"ycm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cells) +"ycp" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/plating, +/area/almayer/squads/req) +"ycr" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/secure_data, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/processing) +"ycV" = ( +/obj/structure/curtain/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/lower_hull/l_m_s) +"ycZ" = ( +/obj/structure/sign/poster{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/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{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) +"ydx" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_a_p) +"ydz" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/lifeboat_pumps/north2) +"ydE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/hydroponics) +"ydI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/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{ + icon_state = "cargo" + }, +/area/almayer/living/cryo_cells) +"ydU" = ( +/obj/structure/window/framed/almayer/hull/hijack_bustable, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 8; + id = "Perma 2"; + name = "\improper isolation shutter" + }, +/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/perma) +"ydY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"yeo" = ( +/obj/structure/machinery/cm_vending/clothing/dress{ + req_access = list(1) + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"yev" = ( +/obj/item/device/flashlight/lamp/green, +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/carpet, +/area/almayer/living/commandbunks) +"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{ + icon_state = "plate" + }, +/area/almayer/hallways/hangar) +"yeP" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_a_s) +"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) +"yfv" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/aft_hallway) +"yfw" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/starboard_hallway) +"yfy" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"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{ + icon_state = "plate" + }, +/area/almayer/command/lifeboat) +"ygs" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Bathroom" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/captain_mess) +"ygy" = ( +/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/hull/lower_hull/l_f_p) +"ygK" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/lower_hull/l_m_s) +"yhI" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south1) +"yhQ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hull/lower_hull/l_m_p) +"yiq" = ( +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/starboard_hallway) +"yit" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump/no_boom{ + dir = 1 + }, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"yiC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hull/upper_hull/u_f_p) +"yiE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/engineering/engineering_workshop/hangar) +"yiW" = ( +/obj/structure/machinery/cryopod/right{ + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "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/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/morgue) +"yji" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hull/upper_hull/u_m_p) +"yjq" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + icon_state = "almayer_pdoor"; + id = "n_engi_ext" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/upper_engineering/notunnel) +"yjM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/living/pilotbunks) +"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{ + icon_state = "test_floor4" + }, +/area/almayer/living/grunt_rnr) +"yky" = ( +/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{ + icon_state = "cargo" + }, +/area/almayer/hull/lower_hull/l_m_s) +"ykF" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hull/lower_hull/l_m_s) +"ykP" = ( +/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{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/main_office) +"ylc" = ( +/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{ + dir = 8; + name = "\improper Containment Airlock" + }, +/obj/structure/machinery/door/poddoor/almayer/biohazard/white{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/containment) +"ylg" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/almayer/no_build{ + icon_state = "ai_floors" + }, +/area/almayer/command/airoom) +"ylJ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/stern_hallway) +"ylY" = ( +/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/hull/lower_hull/l_m_s) +"ymi" = ( +/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{ + icon_state = "test_floor4" + }, +/area/almayer/hull/upper_hull/u_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 +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 +"} +(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 +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 +"} +(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 +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 +"} +(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 +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 +"} +(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 +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 +"} +(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 +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 +"} +(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 +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 +"} +(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 +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 +"} +(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 +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 +"} +(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 +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 +"} +(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 +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 +"} +(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 +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 +"} +(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 +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 +"} +(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 +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 +"} +(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 +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 +"} +(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 +aaa +aaa +aaa +aaa +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 +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 +"} +(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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +cZs +cZs +iZG +iZG +iZG +cZs +cZs +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 +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 +"} +(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 +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aaf +aaf +aag +cZs +cWN +dgx +dgx +dgx +sdq +cZs +aag +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 +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 +"} +(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 +aaa +aaa +aaa +aaa +aaa +aad +cZs +cZs +cZs +cZs +cZs +cZs +dfp +sEa +vBJ +uNl +oxn +cZs +xEF +xEF +xEF +xEF +xEF +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 +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 +"} +(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 +cZs +yeR +aTg +kyI +aTg +pdG +vAG +dOL +qzH +hwS +wly +wIC +dtN +syM +irr +dAb +xEF +aag +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 +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 +pCi +pCi +cZs +osJ +aTg +xvr +bZN +wIC +dWk +fYX +ush +rTt +vAG +wIC +fGN +uNF +uNF +shw +xEF +xEF +xEF +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 +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 +"} +(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 +pCi +pCi +myT +wIC +lcW +pbC +xvr +vCG +wIC +tNF +tNF +wIC +hzx +wIC +wIC +vBm +vBm +bIi +mnm +kPo +cFX +xEF +xEF +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 +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 +pCi +pCi +pCi +pCi +pCi +pCi +pCi +pCi +cpf +cos +wIC +wIC +wIC +wIC +wIC +wIC +cNY +tak +sip +mLJ +ntm +hND +kif +hND +mnm +wVz +uNF +dDQ +sGe +xEF +xEF +xEF +xEF +xEF +xEF +xEF +xEF +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 +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 +pCi +mUQ +rPC +hUg +hUg +xhM +hUg +tng +hGD +wzx +vBm +paq +uoY +vUL +vez +xys +swo +eRL +eRL +mLJ +bua +vBm +xkd +xkd +xkd +xkd +uNF +iYi +gSs +eyd +uNF +kQz +mnm +uNF +uNF +flP +xEF +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 +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 +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 +pCi +rPC +hUg +rPC +vWx +age +dPY +rTV +hUg +tYB +vBm +qfR +tak +tak +bvx +xys +ldu +eRL +eRL +mLJ +eiO +xFs +xkd +eiH +aTV +xkd +xkd +xkd +mnm +mnm +iqx +qFl +vUI +mnm +mnm +uNF +xEF +aag +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 +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 +pCi +pCi +rPC +hUg +vBm +vBm +vBm +vBm +vBm +qmC +vBm +vBm +ouV +bTw +sjc +dci +rzj +tGg +sjc +sjc +iqn +eRL +tmy +xkd +rUB +dSn +soa +xzu +xkd +xkd +xkd +xkd +xkd +xkd +xkd +uNF +mnm +xEF +xEF +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 +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 +aaa +bdH +bdH +aad +aag +pCi +ext +rPC +mUQ +vBm +rBV +oPk +mqo +vBm +eRL +rag +qqN +lzx +mLJ +bua +gcT +dSc +qre +eRL +eOR +aJz +dXy +nHg +xkd +ghX +rAv +xkd +eTo +iHG +dCe +moB +uns +vCy +eyV +xkd +dAb +mnm +uNF +xEF +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 +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 +aaa +aaa +bdH +bdH +aad +aag +pCi +oCL +hUg +fuB +vBm +ldu +wgi +wgi +ckS +eRL +bua +gcT +gcT +tJy +fnC +tpn +tpn +tpn +ula +tpn +wvT +luw +sgi +xkd +xkd +xkd +xkd +kmd +tUx +ebd +tHS +xGh +jVa +wDs +xkd +ukt +mnm +uNF +xEF +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 +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 +aaa +bdH +bdH +aad +aag +pCi +hUg +rPC +vBm +vBm +sFC +sFC +sFC +vBm +pcQ +xHe +gqW +gqW +lCM +ugT +tpn +vrM +kta +vWo +xrP +xTp +pyj +pwt +xkd +uvY +oBq +xkd +rPh +iOD +iOD +tHS +sqW +tUx +wRN +xkd +xkd +uNF +mnm +xEF +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 +nXP +nXP +nXP +nXP +aag +dqw +uwv +uwv +dqw +aag +aag +aag +aag +aag +aag +aag +aag +aag +dqw +uwv +uwv +dqw +aag +aag +aag +vRz +vRz +vRz +vRz +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 +aaa +bdH +bdH +aad +aag +ahE +hUg +rPC +vBm +ykP +xAj +xhE +xhE +vBm +hKq +cdk +soD +tdv +szy +wdr +tpn +aeo +sIw +eni +xrP +xTp +pyj +hTt +kMH +tUx +iTI +hzJ +cyZ +jVa +jVa +tHS +sVc +tUx +xJe +qLt +xkd +uNF +mnm +ils +aag +etE +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 +nXP +xFD +ntA +bAs +bAs +bAs +bDF +bDF +bAs +bTT +bTT +bAs +aag +aag +aag +aag +aag +bAs +bAs +bDF +bDF +bAs +bTT +bTT +bTT +bAs +vIA +xgn +vRz +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 +aaa +bdH +bdH +aad +aag +ahE +rPC +hUg +vBm +ykP +xjG +ssD +gcT +rmv +eRL +mLJ +bua +nNQ +gcT +ciF +tpn +vrM +eBW +eOh +xrP +xTp +pyj +kfN +xkd +qFu +xkd +xkd +qJZ +jVa +jVa +tHS +xGh +ycm +qCo +pWr +xkd +uqa +mnm +ils +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 +nXP +xYN +jup +bBA +bAK +bCY +bDO +bDO +bDO +bHI +bJS +bAs +aag +aag +aag +aag +aag +bAs +bHP +sSc +sSc +bDO +acr +bPG +acN +bBA +qXM +gUv +vRz +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 +aaa +bdH +bdH +aad +aag +ahE +nBc +hUg +vBm +vBm +vBm +vBm +vBm +vBm +pEt +mLJ +fkn +gaJ +gaJ +gaJ +gaJ +tpn +tpn +ueo +tpn +wCM +pyj +opN +xkd +uvY +duT +xkd +vdM +jVa +wtM +moB +sXQ +cyZ +jVa +fJT +xkd +ipT +uNF +ils +aag +eSU +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 +nXP +ewT +sIT +bBA +hWJ +bCY +bDO +bDO +bDO +bHP +bJT +bAs +bAs +bAs +bAs +bAs +bAs +bAs +bNl +sSc +sSc +bDO +bHP +bPG +hpk +bBA +fTu +umT +vRz +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 +aaa +bdH +bdH +aad +aag +pCi +mUQ +aou +vBm +tJp +ybb +tHB +aEk +nSM +ldu +mLJ +pYF +gaJ +wVV +wVV +wVV +gaJ +aOY +wdF +sdF +kNi +pyj +xIw +kVZ +tUx +iTI +nXm +eZH +jVa +jVa +moB +moB +dfk +vzz +moB +xkd +lmk +uNF +xEF +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 +nXP +thT +mGL +gol +akb +bCY +bDO +bDO +bDO +abU +bHP +avw +bKn +bLk +bLw +bKn +bLk +avw +bHP +sSc +sSc +bDO +bPn +bPG +ald +gol +nqU +pch +vRz +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 +aaa +bdH +bdH +aad +aag +pCi +hKi +rPC +vBm +sQS +xEc +grl +egR +tak +lzx +mLJ +ugT +fso +bRH +bRH +bRH +cuk +tkV +jFR +oRk +kxM +jSw +vBm +vBm +qof +vBm +vBm +wRm +tUx +vrx +tUx +gSV +eZH +tUx +cXi +xkd +irr +uNF +xEF +aag +twB +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 +nXP +mGL +fEV +bBA +bAN +bCY +bDO +bDO +bOq +bPo +bHP +avw +akb +axk +bLH +vuZ +ald +avw +bHP +sSc +sSc +bOq +bPo +bPG +acs +bBA +lZB +nqU +vRz +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 +ahE +nnF +rPC +vBm +ikM +pzc +jjM +eRL +eRL +eRL +mLJ +ugT +qvf +bRH +bRH +bRH +qvf +wdF +lMc +ycr +kge +kDA +rkL +eZj +efh +mGn +jkS +cyZ +thL +thL +thL +thL +nYd +thL +jVa +fgR +hPT +mnm +ils +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 +nXP +tRV +hJp +bBA +bAO +bCZ +bDW +fya +ohA +ohA +ohA +bKb +akf +jbX +kNY +jbX +tuZ +bKb +ohA +ohA +ohA +cFh +bDW +bPJ +iuz +bBA +vhq +orv +vRz +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 +ahE +hUg +hUg +vBm +gqW +buX +mLJ +eRL +eRL +eRL +mLJ +pWG +gaJ +eyg +gCI +eyg +gaJ +heQ +lMc +eOW +cMl +lMc +nxq +ldu +kJK +bja +jkS +eZH +ohJ +thL +thL +tjU +liZ +rUk +jVa +fgR +evl +uNF +ils +aag +rEr +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 +nXP +hJp +mGL +bBA +bAP +aqu +aqu +bEF +bNm +bNm +bNm +avw +bKp +bLl +bLJ +bMS +bNe +avw +bNm +bNm +bNm +bOs +aqu +aqu +bQz +bBA +nqU +cEY +vRz +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 +ahE +rPC +hUg +vBm +jCa +cFO +lNs +srV +uzU +nJo +inN +wQk +gaJ +gaJ +gaJ +gaJ +gaJ +tRA +lMc +tYW +cMl +oeB +rkL +ldu +eRL +uEK +vBm +qJZ +ohJ +thL +thL +ezX +uaU +rUk +xaM +fgR +fQk +uNF +ils +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 +nXP +fNg +hJp +bBA +bBu +amg +amg +bFa +alU +alU +alU +alU +alU +alU +alU +alU +alU +alU +alU +alU +alU +bOM +amg +amg +rAD +bBA +nqU +vhq +vRz +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 +pCi +hUg +hUg +lrq +lrq +bVC +lrq +lrq +lut +eRL +eRL +enz +swn +vOd +uCl +dls +eGr +gbX +rCL +xHM +jxK +hyz +ltX +pbh +rRQ +rRQ +iyq +inG +omt +omt +omt +omt +uxa +iZU +nhG +xkd +mnm +hgH +xEF +aag +uJk +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 +nXP +gjv +mGL +bBA +bBu +amg +amg +bFj +alU +bId +bJU +bKd +alU +bLm +bTG +bMT +alU +bNi +bNn +bNq +alU +bON +amg +amg +rAD +bBA +rpW +kAs +vRz +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 +pCi +rPC +rwS +lrq +kTc +uqo +wVw +cqn +gTx +eRL +eRL +igt +swn +daj +qbt +exr +kHa +luH +lMc +ycr +bju +goD +vBm +vBm +qof +vBm +vBm +sSm +thL +thL +thL +thL +tov +thL +sUs +xkd +mnm +uNF +xEF +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 +nXP +oZd +mGL +bBA +bBv +aqu +tkq +bFa +alU +neO +aoi +avB +bKq +ayw +aoi +avB +bKq +ayw +aoi +azA +alU +bOO +tkq +aqu +bQG +bBA +vht +vhq +vRz +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 +ahE +rPC +nfI +lrq +omu +uqo +sYB +cqn +ldu +eRL +eRL +cWs +swn +dcP +tvA +dQv +swn +xTp +lMc +gSi +bju +wSm +jox +lrV +tUx +ntu +nYP +tUx +thL +oXp +thL +thL +tov +thL +xhx +fgR +mnm +uNF +ils +aag +scz +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 +nXP +lAP +mGL +bBA +bBx +amg +bEw +bFk +bHq +let +bJX +bJX +bKs +bLo +bMO +bMU +bNf +bJX +bJX +let +bHq +bFk +bPq +amg +rAD +bBA +nqU +rSK +vRz +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 +ahE +rPC +heV +lrq +frJ +uqo +ktn +cqn +nBb +mdS +eRL +uJs +swn +dfO +doj +dQv +swn +fYn +qZg +iXt +gBi +wSm +opN +xkd +nlH +rQY +xkd +xMQ +ezX +pqF +rUk +thL +iFc +thL +tUx +fgR +inC +fQk +ils +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 +aac +aag +aag +nXP +tpg +vmK +bBA +bBy +amg +aoa +ald +alU +bIn +bJY +aoi +bLh +bLp +bMP +bNa +bLh +aoi +bNo +bNt +alU +akb +aoa +amg +bQE +bBA +bVL +nqU +vRz +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 +ahE +hUg +nBc +lrq +vsI +uqo +xoS +lrq +mAT +lrq +cxA +plZ +kHa +qPO +qPO +wuc +qPO +oRZ +wdF +xCd +bqp +wSm +kfN +xkd +qFu +xkd +xkd +jVa +ezX +prY +rUk +thL +thL +thL +tUx +fgR +uNF +mKf +ils +aag +okD +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 +aad +aag +nXP +nXP +mGL +mGL +bBA +bBz +aqu +bEx +bQt +alU +bIw +bJY +sta +rxK +amX +bLh +azA +pfa +iLq +bNo +bNS +alU +bPg +bEx +aqu +bQI +bBA +ueh +nqU +vRz +vRz +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 +pCi +hUg +hUg +lrq +mAr +uqo +fsT +jnA +fDn +lrq +tqV +nBo +maa +swn +plI +tqe +qPO +wvT +luw +emp +uUO +wSm +jZm +wmE +tUx +ntu +vQN +jVa +rjw +tUx +lnJ +rjw +tUx +jVa +oEE +xkd +uNF +hFW +xEF +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 +aad +aag +nXP +tRV +hJp +mmC +bBA +lsV +amg +ddz +ald +alU +bIx +bJZ +kyN +bLi +bLq +bMR +bNb +bNg +mTm +gjt +vJo +alU +bPh +bPC +amg +pyL +bBA +jNq +nqU +rSK +vRz +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 +pCi +oCL +hUg +lrq +uZY +uqo +uqo +uqo +iOh +lrq +gdo +nBo +jJq +swn +dHv +qQM +qPO +xTp +lMc +jcf +qUb +wSm +jSw +xkd +nlH +uuq +xkd +naB +naB +pFg +naB +naB +naB +ydU +naB +naB +uNF +mnm +xEF +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 +aac +aaf +aaf +aaf +aag +nXP +nXP +hJp +mGL +fmS +bBA +bBA +tiR +bBA +bBA +alU +bIy +alU +alU +alU +cmI +alU +cmJ +alU +alU +alU +jAi +jAi +jAi +jAi +aib +jAi +jAi +nrz +vhq +nqU +vRz +vRz +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 +pCi +rPC +aou +lrq +mAr +uqo +uvy +tfO +fsz +lrq +irJ +nBo +pJi +swn +jAG +tqe +qPO +xTp +lMc +jcf +eUU +wSm +cqM +xkd +xkd +xkd +xkd +naB +eoP +fgl +xEe +naB +xEe +fgl +deb +naB +lmk +uNF +xEF +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 +aad +aag +nXP +nXP +nXP +nXP +hJp +hJp +uNL +uNL +uNL +tVf +mGL +oxp +kcp +bWJ +nar +alU +bXo +oCi +bLs +mZM +aoi +grG +bXY +alU +xsW +uBn +wJw +bEz +bzA +dRw +bzy +bzy +bzy +vhq +nqU +vRz +vRz +vRz +vRz +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 +pCi +pCi +hUg +tYB +lrq +noo +noo +noo +lrq +lrq +lrq +fNA +nBo +cQv +qPO +qPO +wuc +qPO +wvT +luw +emp +dGD +wSm +lfW +emp +vli +rSH +xYj +naB +aSS +pHp +poZ +naB +jkV +pHp +kOi +naB +xCj +uNF +xEF +xEF +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 +aad +aag +nXP +jpN +hJp +mGL +hJp +mGL +uNL +hJp +mGL +poR +mGL +pNp +kcp +bTS +bIA +alU +uDn +bKf +bLs +bLj +aoi +bNk +ecZ +alU +bNW +uBn +fut +pqQ +pqQ +pqQ +bzA +rEu +bzy +vhq +nqU +vhq +ioj +mjR +vRz +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 +pCi +msV +rPC +naf +cQv +vcG +lYZ +olv +dxm +nMu +uFp +ePB +nBo +tsX +xSA +ugs +wVY +lEv +iQg +jpQ +tsX +jOu +wSm +pyj +vsJ +kjN +rvo +oIc +naB +xro +fgl +wvI +naB +wvI +fgl +qmX +naB +lTK +mnm +uNF +xEF +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 +aad +aag +nXP +bwF +hJp +mGL +hJp +oPI +uNL +hJp +kcp +kcp +iqp +kcp +kcp +jgl +kcp +alU +alU +alU +mBp +alU +cmJ +alU +alU +alU +bOe +nrt +qyF +ecR +uOc +uOc +uOc +bPj +bzy +piO +vhq +nqU +nqU +rSK +vRz +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 +pCi +dSA +rPC +cQv +cQv +geX +tFv +pGT +vkM +jvc +ajj +ajj +nBo +xps +jpQ +jpQ +wVY +eOk +pFa +ctn +wqu +eeN +cMl +fHS +naB +naB +naB +naB +naB +naB +rkh +lvZ +naB +fuX +rra +naB +naB +naB +mnm +uNF +xEF +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 +aad +aag +nXP +mGL +mGL +hJp +mGL +dqd +uNL +hJp +kcp +nYS +bTS +bTS +lxo +qcy +kcp +bAg +edM +egq +bLt +bXX +bKh +egq +bKh +bNp +fsd +bKj +jjs +jjs +jjs +jjs +jjs +jYd +bSv +bSv +bSv +bSv +bSv +nqU +vRz +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 +aaa +aaa +aaa +bdH +bdH +aad +pCi +hUg +rPC +cQv +eaf +bEv +tWg +rZR +cqJ +isH +vwO +scD +rXC +vyE +nwz +nwz +mkk +wir +jnT +qNv +wqu +eeN +cMW +qEy +ooR +xvw +nBu +tcP +lFs +sIY +qyd +uDp +tNj +uDp +qyd +icX +xQD +naB +uNF +lre +xEF +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 +aad +aag +nXP +hJp +hJp +mGL +pzZ +ijp +uNL +mGL +kcp +bTR +iEg +oQM +aqI +aqI +kcp +bzA +bBB +bBB +bLu +bBB +bBB +bBB +bBB +bNp +mYY +nka +afz +afz +afz +afz +afz +iDd +qih +bTH +foN +cDZ +bSv +pch +vRz +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 +pCi +mNR +hUg +cQv +eaf +bEv +fLn +rXd +dvT +qSl +ajj +ukS +wZa +tsX +ezU +dxT +jpQ +iQg +bRm +ecq +tsX +tkV +pyj +pyj +luC +elq +qmE +luC +uVF +uQm +qPD +qPD +qPD +qPD +qPD +bND +jaP +naB +uNF +rQU +xEF +aag +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 +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 +nXP +thT +hJp +uNL +uNL +uNL +uNL +mGL +kcp +lxW +hPh +wGX +bFr +ppe +kcp +bzA +bKh +bKh +hcs +kCS +kCS +kCS +kCS +hHJ +iWL +bkD +afz +afz +afz +afz +afz +iDd +bSv +tjw +bTH +bTV +bSv +nqU +vRz +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 +pCi +tCb +aou +cQv +eaf +bEv +fLn +avz +dvT +nHV +ajj +iKX +cQv +tsX +tsX +tsX +epu +oLF +tsX +tsX +tsX +vyi +vyi +vyi +naB +naB +naB +naB +dqV +mdJ +vXQ +vXQ +uNe +uUs +nqZ +ekg +usr +naB +inC +mKf +xEF +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 +nXP +mGL +hJp +uNL +qDv +aLk +uNL +xCR +kcp +wTN +kZN +rgK +hbu +iYe +bJl +bKa +bKa +bKa +gCl +bzA +bzA +bzA +bzA +bNp +pqQ +nka +afz +afz +afC +afz +afz +bRx +bSv +ifb +bTH +bSv +xVT +kAs +vRz +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 +pCi +oCL +hUg +cQv +eaf +bEv +qRo +rXd +dvT +bAM +wZa +cQv +cQv +tHr +mqg +eiK +vka +uwN +fbv +xuZ +mSs +xuZ +xuZ +xuZ +rCU +rEY +gxU +naB +kyP +qPD +qPD +qPD +uQm +pIH +naB +nOe +nOe +naB +bIi +fQk +xEF +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 +nXP +tRV +mGL +uNL +kmM +eqk +uNL +hJp +kcp +oMi +bAZ +bTS +bTS +niR +kcp +bzA +bKh +bKh +bLt +bzA +bKh +bKh +bKh +bNp +pqQ +fti +afz +afz +afz +afz +afz +iDd +bSv +aIX +aIX +bSv +oES +eXo +vRz +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 +pCi +hUg +rPC +cQv +bop +jeK +mWe +rXd +dvT +ieo +vxC +ldD +ceZ +jnD +hUW +hiM +rWs +qNR +hiM +hiM +hiM +hiM +rWs +rWs +rQt +cgT +xuc +naB +pZV +gMf +ekg +ekg +uQm +nnz +vrQ +mLI +qyd +vrQ +mnm +sIk +xEF +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 +nXP +hJp +mGL +hKe +hJp +hJp +uNL +hJp +kcp +kcp +kcp +sXE +kcp +kcp +kcp +bzA +bBB +bBB +bLt +bzA +bKh +bBB +bBB +bNp +xgx +nka +afz +afz +afz +afz +afz +iDd +bSv +cop +cop +bSv +vhq +nqU +vRz +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 +pCi +hUg +rPC +cQv +cQv +cQv +cQv +cQv +dvT +ieo +vxC +ldD +vGA +hUW +dHd +vka +lnt +uVA +uVA +uVA +uVA +uVA +gde +uVA +wIQ +xWv +aQb +naB +naB +mtl +hwQ +hwQ +okM +mtl +mtl +naB +naB +naB +mnm +hPT +xEF +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 +nXP +hJp +mGL +uNL +aSY +hJp +uNL +hJp +dqd +kcp +bTU +gZK +bTS +lyX +kcp +bAr +bKh +bBB +bLt +bzA +bKh +bBB +bKh +bNp +fsd +bKj +eGg +eGg +eGg +eGg +eGg +jYd +bSv +kBY +bTn +bSv +vhq +vhq +vRz +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 +pCi +hKi +hUg +aFN +hUg +cXZ +jIV +vxM +gaJ +uzx +uue +vxM +iuE +uwN +vka +pRO +kqy +awz +awz +cZh +cZh +cZh +awz +awz +jfK +wIQ +mPj +omy +xpo +mtl +pGG +qRT +djm +hgF +mtl +uNF +hUc +wNU +mnm +sIk +xEF +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 +nXP +nXP +nXP +nXP +nXP +lgY +uNL +uNL +uNL +lgY +uNL +mGL +hJp +kcp +onY +wdf +bTS +kcp +kcp +bzy +bKh +bBB +bLt +bzA +bKh +bBB +bKh +bzy +tBz +fBD +ntt +jXk +hdh +hdh +hdh +bRD +bSv +bSv +bSv +bSv +mzo +qOU +vRz +vRz +vRz +vRz +vRz +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 +gqq +iCz +aFN +rPC +rPC +kDb +vxM +wVV +mKh +mVi +vxM +udK +mwA +lnt +cgO +awz +awz +nID +wPF +eHx +uKd +oER +awz +awz +mgj +wIQ +jHh +jUY +fbY +qVF +oog +qaJ +czB +mtl +mnm +uNF +wNU +uNF +mrB +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 +nXP +hJp +dPU +hJp +mGL +mGL +khS +hJp +crc +hJp +qee +mGL +hzM +kcp +xNz +utK +rKA +kcp +kcp +bzy +bXs +bBB +bLt +bzA +bKh +bBB +bXZ +bzy +bAg +bBB +qJN +jjZ +bzH +bBB +bzA +cBl +bRU +vhq +eJh +nqU +rcH +vhq +vhq +nqU +jTu +nqU +vRz +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 +cVJ +rPC +jvJ +vxM +sVy +mKh +mVi +vxM +bmz +wSR +mMV +awz +awz +aJp +jgJ +jgJ +jgJ +jgJ +jgJ +mZb +awz +awz +woy +laO +nRH +fbY +qVF +oog +kHK +wfL +mtl +mnm +dGc +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 +aPy +aPY +aQv +aQv +aQv +aQv +aQv +aQv +aQv +aQv +bcm +bcm +kcp +kcp +kcp +kcp +kcp +kcp +kcp +bzy +bZL +cat +caC +caD +bZL +cat +bZL +bzy +bzy +bzy +bzy +bzy +bzy +bzy +bzy +bzy +bzy +bJh +bJh +cmH +bJh +bJh +bJh +bJh +bJh +ces +bSg +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 +cRc +rPC +hUg +vxM +eyg +giZ +gTl +vxM +pZS +pEB +jUY +qwp +aVI +jmY +rHc +xhZ +xhZ +xhZ +rHc +qyo +udx +qwp +pZS +jHh +jUY +fbY +uLJ +oog +sBH +vfv +mtl +mnm +dGc +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 +aPy +dhZ +aQv +bbn +bmu +bot +bpU +rFB +bmu +aQv +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 +bJh +cax +cet +cfx +cgG +cex +dfc +bJh +bJO +bSg +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 +oCL +rPC +hUg +vxM +vxM +tXs +oCX +vxM +vkR +wsD +jUY +qwp +eei +jmY +iwW +sTm +oSq +sTm +tdT +qyo +itX +qwp +vGA +uwN +uVd +mtl +mtl +qYH +mtl +mtl +mtl +uNF +uNF +kCi +uAj +qfa +btD +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 +bhh +aPZ +bhh +bjL +bmw +kIm +bmw +brO +bmx +bvT +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 +cdb +cdw +bGp +cfy +rBk +cfy +cim +cjl +bRz +cjm +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 +dDC +rPC +hUg +vxM +wVV +erx +dsw +vxM +kfE +wsD +jUY +qwp +rBx +jmY +iwW +sTm +gwR +sTm +tdT +qyo +pbW +qwp +cDn +uwN +jUY +mtl +lNF +rkK +cIK +mtl +tzj +uNF +bbR +kCi +eqI +ssZ +btD +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 +bhh +aPZ +bhh +bjM +bmx +eBC +aZB +qld +kyZ +bvT +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 +cdc +jdk +mLu +erS +pZo +cdx +cin +cjm +bRA +cjm +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 +maH +ayq +cfE +cfE +pvP +adu +aHZ +akC +eKM +ake +rPC +vxM +dFC +bRH +bRH +vxM +xDn +pEB +jUY +awz +wkH +hmS +mWV +jZu +sco +fqO +lIp +hWO +fqc +awz +gGr +jHh +sCQ +mtl +pJE +wPk +hRy +mtl +tzj +uNF +bVT +kCi +nwW +btD +btD +rVN +rVN +vly +vcJ +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 +bhh +aPZ +bhh +bjM +bmx +bmx +bmx +brP +qTZ +bvT +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 +cdc +nEs +cev +cdx +cdx +cdx +cin +cjm +bRA +cjm +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 +akC +tRX +uzm +vxM +eyg +eyg +oWI +vxM +nNv +pEB +jUY +qwp +wyt +jmY +iwW +dCr +gwR +sTm +tdT +qyo +tsy +qwp +ora +laO +rKQ +mtl +qHF +fnl +mtl +mtl +utZ +pUJ +pUJ +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 +bhh +aPZ +bhh +bjN +bmy +pAR +hHR +brQ +btp +bvV +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 +cdd +cdy +cew +cfz +sSY +kZA +cio +cjm +bRA +cjm +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 +fvu +qkn +hUg +vxM +vxM +vxM +vxM +vxM +xSz +pEB +jUY +qwp +sUE +jmY +iwW +dCr +oSq +sTm +tdT +qyo +tsy +qwp +pZS +jHh +vCx +mtl +mtl +mtl +mtl +qFl +mnm +xyz +gpe +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 +aPy +hhe +aQv +bjO +bmu +bou +bpW +rFB +bmu +aQv +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 +bJh +cdz +aTq +cfA +cgH +cex +dfc +bJh +tdK +bSg +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 +agU +dIl +xpd +mlp +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 +dVm +qkb +vnY +vnY +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 +aPy +aPY +aQv +aQv +aQv +aQv +aQv +aQv +vak +ovP +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 +mzo +mzo +mzo +mzo +mzo +mzo +mzo +cjK +bSg +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 +fRN +avl +lFb +ail +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 +wWT +xuB +vcK +czJ +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 +nXP +ndx +uNL +nDd +soS +sgy +nsu +iyQ +rod +psy +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 +tlI +jEs +kCT +lsb +fcG +ufp +mzo +qQP +vRz +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 +ail +lGG +age +age +kzy +wIQ +jHh +vka +lnt +ciN +sUg +qwp +vYM +fJm +aAq +iah +mGe +dCx +rpK +qwp +xmg +ggt +wIQ +vka +jHh +lnt +ckP +qFl +qFl +lIV +gsH +qFl +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 +nXP +hJp +uNL +gka +bwQ +oNf +uNL +aNw +kXJ +kVX +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 +dqH +kCT +kCT +kCT +kCT +kCT +bLb +dQH +vRz +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 +fcF +avl +lFb +fvu +age +age +vSN +jHh +lnt +dUE +awz +awz +awz +jKF +awz +rGE +awz +lsp +awz +jKF +awz +awz +awz +sTo +wIQ +jHh +jUY +qFl +qFl +gpe +xuB +vcK +mBA +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 +nXP +hJp +sIT +sIT +sIT +sIT +sIT +aNj +xmv +kVX +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 +vVh +kCT +kCT +kCT +kCT +wgU +mzo +kWY +vRz +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 +puK +avl +dUI +avl +avl +lFb +fvu +xDp +age +xDn +uwN +wiN +awz +awz +awz +awz +aGb +qVS +aUe +gAl +aVG +aGj +aVR +awz +awz +awz +awz +oWg +uwN +jUY +qFl +rnM +gpe +sDy +ukU +bfP +fvv +vcK +sJI +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 +nXP +tRV +sIT +jNt +iNZ +lQj +sIT +obG +kdt +kVX +xyw +bHB +aZO +baI +baI +baI +baI +baI +plk +twz +gdO +baI +baI +baI +baI +baI +fXM +rFM +nBt +wkV +oft +baI +baI +baI +bGF +bHB +aYt +bcm +iQx +kCT +iuu +fHc +kpY +hTu +mzo +bRF +vRz +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 +pCi +avl +nMc +ayP +iJf +iJf +sFZ +avl +tCb +age +pNa +iCu +awz +awz +agb +azC +awz +nne +aGj +oSw +vIu +aVH +aGj +iQj +awz +oQs +nFm +awz +ceE +eMP +faX +qFl +rEn +mnm +mYs +mnm +sDy +cUv +cNe +pLZ +xEF +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 +nXP +hJp +sIT +vLh +mGL +qHb +sIT +hdR +hdR +hJz +hmy +bHB +aZP +baI +baI +baI +keG +kMt +raU +syy +pDJ +ojz +ojz +okE +wEl +ivb +oFU +qgP +rLe +qBy +eOd +baI +baI +lMA +bGG +bHB +btO +bcm +lyi +kCT +kCT +kCT +kCT +kCT +mzo +dQH +vRz +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 +pCi +dRV +bZg +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 +sDy +cNe +xEF +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 +nXP +mfe +sIT +eNx +mGL +mGL +vKf +mGL +mGL +rII +xyw +bHB +aZQ +baI +baI +baI +tKn +tRT +iAI +kep +iAI +vma +vma +iAI +ofB +cnG +glk +wra +rHL +dnr +oAD +tRd +baI +rWi +bGH +bHB +btO +bcm +ksP +gdi +piX +kCT +kCT +kCT +mzo +dQH +vRz +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 +pCi +pCi +pCi +pCi +lFb +avl +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 +gpe +xuB +xEF +xEF +xEF +xEF +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 +nXP +hJp +sIT +mIB +mGL +fGY +wUO +gYB +pXQ +kYa +xyw +bHB +aZR +bmT +kAa +lmn +cve +wBV +iGd +rIL +rIL +rIL +rIL +rIL +fYO +iAI +ltR +iAI +ofB +iAI +ofB +kHc +kBC +kAr +bGI +bHB +xyw +bcm +fAt +kCT +kCT +kCT +kCT +iRS +mzo +wWf +bIO +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 +pCi +fqu +kTM +puK +lFb +avl +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 +qCy +qCy +qCy +jxB +gpe +xuB +gpe +gpe +gpe +xEF +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 +nXP +mGL +sIT +sIT +rUU +sIT +sIT +uNL +uNL +uNL +xyw +bHB +aZO +bAC +kOA +uRG +iph +ind +eJu +iAI +ofB +iAI +ofB +iAI +eJu +rIL +rIL +rIL +rIL +rIL +rIL +dQc +baI +baI +bGF +bHB +eEc +mzo +mzo +kCT +xVj +vox +kCT +hTu +mzo +wWf +vRz +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 +pCi +huX +unJ +iJf +mBk +nUy +kcH +rBa +nPs +nPs +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 +qCy +qCy +qCy +qCy +jxB +gpe +gDq +tJo +bGr +hnV +xEF +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 +nXP +rxk +uNL +aqc +hJp +qbd +cQF +hqs +jFh +uNL +wlb +bHB +aZP +bAC +cKK +eTN +lyQ +neP +xtW +xDs +xLI +igh +vfe +bFJ +tpu +rIL +ftf +rIL +ftf +rIL +ftf +vma +baI +baI +bGG +bHB +bGK +meN +xRc +qPg +oas +mni +kCT +fIf +mzo +wWf +vRz +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 +pCi +nMc +tGf +avl +avl +qtS +kcH +rIW +oGx +wvU +yiX +lIa +hyQ +aic +aov +wVW +wVW +sEp +wVW +wVW +wVW +swH +xDH +wVW +gcI +sEM +wVW +wVW +wVW +osz +wVW +wVW +aKn +aKz +pQy +jhW +mWD +wmT +jhW +mWD +jxB +fGN +dtN +gpe +xuB +gpe +xEF +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 +nXP +mGL +qee +hJp +mGL +qaZ +mGL +hJp +mGL +mBb +wqh +bHB +aZQ +bAC +ehg +hof +ivY +sRP +eJu +iAI +ofB +iAI +ofB +iAI +eJu +rIL +rIL +rIL +rIL +rIL +rIL +vma +baI +baI +bGH +bHB +cuy +meN +dNe +pzO +kCT +kCT +kCT +eKg +pcD +lZO +vRz +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 +aai +aai +pCi +lFb +avl +avl +agj +agj +agj +agj +agj +agj +kcN +kcN +agj +akL +aov +wVW +apo +fHh +wVW +lZs +mmG +sni +ayz +dAX +aQg +vpV +xIo +aGp +wVW +aDv +aHK +wVW +aKn +aKy +mKq +aES +aES +aES +aES +aES +aES +aES +aES +gpe +uEv +gpe +xEF +xEF +xEF +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 +nXP +hJp +uNL +afd +hJp +slP +rsx +jFh +cQF +uNL +pyC +bHB +aZR +eir +rsm +hpw +uhg +ovu +niK +rIL +rIL +rIL +rIL +rIL +axz +iAI +jKJ +uFM +ofB +iAI +ofB +njX +xJX +pIj +bGI +bHB +kwQ +meN +dNe +pzO +wtd +kCT +nLa +wgU +mzo +dQH +vRz +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 +ahE +iuT +naf +lFb +avl +agj +agj +aew +bCO +hvH +hvH +hvH +kcN +cod +oqA +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 +mtE +gpe +cEg +hgm +ils +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 +nXP +nXP +tRV +uNL +uNL +agi +uNL +uNL +uNL +uNL +uNL +cCE +bHB +aZO +baI +baI +baI +fGH +mGP +iAI +ofB +iAI +vma +vma +iAI +ofB +idu +jor +vbI +iDQ +nvi +iNc +qVT +baI +xyA +bGF +bHB +iAw +mzo +mzo +kCT +kCT +kCT +dlp +hTu +mzo +vot +vRz +aKQ +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 +ahE +afc +avl +lFb +avl +agj +yeo +agc +bIz +agc +hvH +lQq +kcN +cod +oqA +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 +kwz +gpe +gpe +gAd +ils +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 +nXP +mGL +hJp +uNL +aas +alI +agw +anB +ajp +vdJ +bJo +amo +bHB +aZP +baI +baI +baI +nyZ +pBU +mMp +gNr +vXx +mpR +mpR +cKN +jAq +bhr +fXM +goO +ixY +rdX +oft +baI +baI +ppQ +bGG +bHB +btO +xjW +gks +kCT +kCT +kCT +mQW +kCT +mzo +gJd +mjR +aKQ +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 +ahE +aiV +wBY +hJJ +qCi +agj +eBo +agc +agc +agc +ahY +mXj +kcN +kcN +agj +amI +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 +gxk +hiQ +wVP +sed +ils +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 +nXP +mGL +hJp +uNL +aga +alQ +amR +adg +cdF +sgw +bJo +gRP +bHB +aZQ +baI +baI +baI +baI +baI +xMb +hLy +hCc +baI +baI +baI +baI +baI +oFU +xCu +rPD +tMa +eOd +baI +baI +baI +bGH +bHB +btO +bcm +hit +kCT +kCT +fjO +kCT +vGy +mzo +dQH +nnc +vRz +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 +pCi +kwS +avl +avl +lIh +agj +oMM +agc +agc +glU +rDd +mXj +akk +alb +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 +nSU +xuB +lrb +hnV +xEF +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 +nXP +nun +mzb +uNL +aav +amj +agG +anD +adg +ajB +bJo +xjK +rgy +bvf +anS +aog +bdU +bfV +baM +bkd +bdU +bfV +baM +bkd +bdU +bfV +baM +vbf +vbf +vbf +yeN +gzn +iGQ +bED +baM +bcb +bHB +aYt +bcm +uKk +kCT +kCT +kCT +kCT +xwq +mzo +dQH +gMx +vRz +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 +ahE +avr +avl +hCo +lIh +agj +kFk +hvH +hvH +hvH +ahZ +mXj +akl +alc +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 +fxO +xuB +cKt +mnm +ils +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 +nXP +mGL +pGP +uNL +aay +adg +amU +anK +ccJ +ajL +bJo +bwl +bHB +xyw +puI +aol +aYt +aYt +puI +aYt +pcl +gHZ +pcl +gHZ +bHD +api +aYt +sIU +gdp +lcV +lcV +hWq +hif +jKz +xyw +bcc +bHB +xyw +bcm +oqD +kCT +kCT +ePk +kCT +hTu +mzo +wWf +vhq +vRz +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 +ahE +aOg +avl +hMI +lFb +agj +mXj +mXj +aoZ +aha +mXj +mXj +akm +mXj +agj +aox +aoA +wVW +teY +eVj +aqN +alX +asc +abk +azV +aAB +aBZ +avY +awk +alX +alX +mPn +xMA +wVW +aKo +aKz +mKq +ceK +gUL +hHl +uvt +aES +aES +aES +aES +aES +gKJ +uEv +ofZ +mnm +ils +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 +nXP +mGL +lqI +uNL +aaD +ahB +ahB +anL +ajz +aBC +cfM +wqh +bHB +vpW +eXq +rri +aho +aho +eXq +kqv +pcl +bpj +pcl +gHZ +pcl +fgE +btO +btO +btO +btO +btO +neE +mNm +bEE +rOc +fVz +bHB +vpW +bcm +hEt +kCT +xIi +kCT +kCT +eNL +mzo +wWf +nqU +vRz +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 +ahE +bEo +avl +iDT +tDx +agj +mXj +tZB +hvH +hvH +hvH +adv +hvH +alj +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 +rlz +xuB +iVo +mnm +ils +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 +nXP +hJp +hJp +uNL +aaK +cfN +afe +adg +ajz +aBC +cfM +wqh +bHB +xyw +aho +vWc +geg +aEj +aho +aYt +pcl +gHZ +pcl +gHZ +pcl +fNi +aYt +xyw +vAq +hYG +aYt +gGs +aYt +aYt +aYt +jSo +bHB +xyw +bcm +rdr +kCT +poq +kCT +kCT +gks +mzo +wWf +nqU +vRz +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 +pCi +bVF +dTt +jgM +lFb +agj +eYC +agc +fNb +pDL +agc +agc +hvH +alo +agj +aic +aov +wVW +wVW +wVW +wVW +wVW +rOC +soX +azX +uSH +aCb +aDv +aEC +wVW +wVW +wVW +wVW +wVW +aKn +aKz +mKq +ceK +lcy +iTw +ceK +aES +tJi +ivf +bpe +aES +lGu +xuB +yiC +sXs +xEF +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 +nXP +fpd +mGL +uNL +ceQ +ceU +aff +adg +ajz +aBC +cfM +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 +sti +kCT +iTN +kCT +kOk +fIf +mzo +wWf +pch +vRz +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 +ahE +fHO +avl +jpJ +lzH +agj +uvZ +agc +agc +juN +pxG +agc +ocs +agc +agj +aic +aov +wVW +asQ +awG +ayI +wVW +wbX +avY +avY +aAE +avY +wlE +gvq +wVW +lrW +qDN +vHW +wVW +ccg +aKz +mKq +ceK +rFs +gek +uvt +aES +aES +aES +aES +aES +xpt +xuB +xHW +qJF +ils +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 +nXP +dUF +mGL +uNL +ceR +ceU +aff +agy +ajx +tqg +bJo +mVE +bHB +xyw +anU +aeJ +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 +mzo +sYC +mzo +gJd +eXo +vRz +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 +ahE +cjh +avl +llM +lGL +agj +geW +erZ +tMn +iVZ +aiW +aiW +akn +xyk +sBF +amY +vtT +wVW +abQ +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 +izx +mQV +hRi +gpe +ils +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 +nXP +fQF +mGL +uNL +abd +adk +afu +anT +eLz +uFL +ssa +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 +wbx +vhq +vhq +wWf +vhq +vRz +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 +ahE +cJB +avl +avl +mrc +agj +cCd +agc +agc +nwv +pxG +agc +ako +agc +agj +aic +aov +wVW +atx +qEk +ajm +wVW +arP +alX +azZ +aAF +azZ +aIf +hkG +wVW +fvB +qEk +auR +wVW +aKn +aKz +mKq +oKx +tVh +psa +ceK +aES +mhm +brS +bpe +aES +mnm +uEv +nLK +nLK +ils +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 +nXP +wVD +mGL +uNL +uZQ +uZQ +bJo +aoH +aoF +aBC +cfM +wqh +bHB +xyw +aho +dkj +siz +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 +wgo +nqU +vhq +dQH +xpf +vRz +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 +pCi +pCi +pCi +jTi +nRq +agj +bYd +agc +qck +yev +agc +agc +akp +hGB +agj +aic +aov +wVW +atx +qEk +ato +wVW +aKF +alX +hxm +deD +tUo +aIf +aEB +wVW +fvB +qEk +auR +wVW +aKn +aKz +mKq +aWk +aWW +aGr +uvt +aES +aES +aES +aES +aES +dYh +uEv +xEF +xEF +xEF +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 +nXP +mNf +hJp +uNL +xcP +xSI +uZQ +aoH +aoF +aBC +cfM +wqh +bHB +vpW +eXq +rri +aho +aho +eXq +kqv +pcl +gHZ +pcl +gpi +pcl +oJp +bvf +kRP +bvf +bvf +bvf +egp +ptv +qXZ +vsF +bGJ +hBF +vxb +bcm +mhd +aYt +tuN +fPn +nqU +nqU +vhq +dQH +hYc +vRz +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 +pCi +avl +myn +agj +mXj +tZB +hvH +ahv +aiF +aiF +akr +xZz +agj +aic +aov +wVW +ssW +qEk +hrm +wVW +rOC +aqN +tCT +tCT +tCT +aDv +aEC +wVW +dNZ +qEk +mtX +wVW +aKn +aKz +mKq +aWq +aXb +aGr +ceK +sxD +bhJ +bHG +cWy +aES +gpe +xuB +xEF +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 +nXP +bvO +hJp +ahd +adg +amp +uZQ +aoH +gds +aky +bJo +vPM +bHB +xyw +anW +aol +aYt +aYt +anW +aYt +pcl +gHZ +pcl +gHZ +pcl +brY +aYt +cSx +nPB +hYG +ggh +gRd +hif +jRS +xyw +bGK +bHB +btO +cdA +omP +aYt +bOC +bcm +vhq +nqU +vhq +dQH +jhA +vRz +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 +pCi +cnX +lIh +agj +mXj +afo +lue +ahw +aiG +aiG +aks +alu +agj +aic +aoA +wVW +atx +jvX +ato +wVW +vTu +alX +alX +avY +alX +aIf +aED +wVW +ryR +jvX +auR +wVW +aKn +aKy +mKq +aWt +ceK +ceK +eua +aES +eBd +brS +cpj +aES +fgx +dEV +xEF +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 +nXP +dNB +hJp +uNL +hSL +agn +afx +agX +ajy +vwP +bJo +kCm +rgy +bvf +aof +aoN +bea +bfZ +baS +bkh +bea +bfZ +baS +bkh +bea +bfZ +baS +bkh +ohE +vWJ +qUL +txO +mwQ +bEK +baS +bGL +bHB +aYt +cdA +ivg +llO +kSv +bcm +mzo +puR +aKI +dQH +nqU +vRz +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 +pCi +anI +lIh +agj +agj +agj +agj +agj +agj +agj +agj +agj +agj +fEk +hlU +wVW +wVW +wVW +wVW +wVW +aCf +ayt +aCf +wVW +aCf +hzL +aCf +wVW +wVW +wVW +wVW +wVW +fDU +uiZ +mKq +mKq +kqt +aVX +aES +aES +aES +aES +aES +aES +gaO +vnV +xEF +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 +nXP +mGL +mGL +uNL +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 +mzo +mzo +wWf +nqU +vRz +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 +pCi +ifR +jMt +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 +xuB +gpe +xEF +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 +nXP +mGL +mGL +uNL +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 +kGt +wWf +pch +vRz +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 +pCi +avl +lIh +gpY +uac +vFw +ajf +ajf +ajf +ajf +oAO +oEf +aVW +vta +aBH +aKv +aKv +aKv +aKv +bYY +aCj +ayK +aAd +aAP +mCF +ayu +aCj +bYY +aKv +aKv +aKv +aTa +aTk +mtM +rmD +aWz +aZC +aZz +aZz +aZz +aZz +wUP +lrF +pgD +uEv +gpe +xEF +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 +nXP +rbv +hJp +uNL +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 +cQN +wWf +eXo +vRz +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 +pCi +ail +gwY +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 +lIV +gsH +xEF +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 +nXP +mGL +pwK +pJW +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 +uSq +dQH +vhq +vRz +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 +ygs +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 +nXP +mGL +fJX +uNL +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 +mzo +mxL +kAs +vRz +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 +aAl +jnX +dum +wVW +wVW +wVW +lgK +aGZ +awF +cST +aTz +aUl +aET +aWA +jgu +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 +nXP +tpg +vJM +uNL +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 +mzo +xSb +vhq +dQH +mjR +vRz +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 +awY +awY +awY +awY +kOB +awZ +aiX +jnw +aBq +pRL +awF +aEM +aGV +rvA +aKE +awF +cST +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 +nXP +hJp +dpy +uNL +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 +ioj +nqU +vhq +dQH +fIH +vRz +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 +asj +aAW +aCl +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 +nXP +hJp +fkW +uNL +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 +ygy +nqU +vhq +wWf +qUj +vRz +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 +add +add +add +add +oMQ +evX +afr +akc +buc +weD +jMm +pcG +iFn +qnD +amh +kWT +wUR +wUR +wWC +auZ +aiX +aiX +asl +amO +aGO +awF +aFj +aGY +rvA +aKO +awF +aRx +aRx +aUo +aVi +pbp +pMj +awS +lWr +csI +goL +sgU +baw +aJU +aJU +aJU +wDl +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 +nXP +fpd +nVS +uNL +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 +mjR +nqU +vhq +dQH +gWR +vRz +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 +aFJ +aTf +aTf +aTf +iZP +add +add +ajI +add +add +gqP +aiX +aiX +aiX +aiX +aiX +oqw +lvA +osT +cZV +pQV +apq +ana +aiX +asp +amO +avj +awF +aFo +aGY +rvA +aqm +awF +dOl +aTA +aUp +qVC +aUw +jmP +awS +xhn +aJU +aJU +tiW +aJU +qQp +xAI +kiT +kiT +kiT +gjq +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 +nXP +hJp +dnX +uNL +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 +mzo +jhA +jhA +dQH +wlL +vRz +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 +jWH +ajI +add +fsU +aHU +aTm +awW +aTm +jgF +fsU +add +ajI +add +add +add +gzI +fdE +mLz +iFn +alw +amh +dGr +rtY +fJy +xQg +wWC +szO +aiX +atU +amO +qLj +awF +awF +aEW +aHX +aEW +awF +aRB +qVC +wvb +eem +aUw +aUw +awS +nJs +aJU +aJU +tiW +aJU +gBW +ouQ +iun +baw +vPm +qys +gBW +aJU +tiW +pUe +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 +nXP +mGL +dnX +uNL +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 +mzo +sYC +mzo +mzo +mzo +mzo +mzo +gJd +vhq +vRz +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 +adQ +awW +acW +awW +auK +aIr +aTm +bvd +aTm +juX +scu +awW +acW +aeZ +aka +aoI +gzI +nwL +mfQ +nPx +aiX +amd +dXY +fmB +umS +yjM +qbO +aqw +fMW +bYe +amO +wZM +aPm +awF +aHk +vGI +aLp +awF +jss +aTB +aUq +aVk +ldC +vkb +aET +eFM +yhI +tTu +sgU +baw +lRE +tuf +vbB +rBH +vbB +mlz +sOy +baw +sgU +baw +svp +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 +nXP +mGL +fJX +uNL +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 +mzo +vhq +eJh +eFp +qUH +mzo +qUj +dQH +vhq +vRz +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 +adZ +awW +acW +awW +avc +aIv +aTm +kJL +cbM +jzZ +sLo +awW +acW +afr +akc +xVI +gzI +aku +eGH +qnl +aiX +apt +sCI +pWN +uTN +aqy +nBE +pOD +bZa +ahM +aEf +wZM +ejp +awF +aHn +szU +aLt +awF +aRC +aUw +aUw +aUw +aUw +jmP +aET +dSp +csI +goL +sgU +baw +hJk +yac +vbB +kUQ +vbB +fDS +iLd +baw +sgU +baw +uvk +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 +nXP +tRV +dnX +uNL +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 +mzo +xIj +nqU +nqU +vhq +gsL +nqU +wWf +eXo +vRz +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 +add +ajI +add +fsU +aHU +aTm +awW +aTm +jgF +fsU +add +ajI +add +add +vmN +aiX +aiX +aiX +aiX +aiX +awq +lvA +pQV +mHO +aiX +aiX +aiX +aiX +atV +amO +oXd +qFl +qFl +qFl +qFl +qFl +qFl +aRE +qVC +qVC +prE +aUw +aUw +awS +nJs +aJU +aJU +tiW +aJU +gBW +ouQ +vbB +baw +tBq +qys +gBW +aJU +tiW +aJU +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 +nXP +nun +vJM +uNL +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 +mzo +gwm +pEy +nqU +sRI +mzo +fdA +wWf +nqU +vRz +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 +aIw +aUa +aUa +aUa +jAz +add +add +ajI +add +add +add +rwY +fdE +feS +iFn +alw +kFe +mJL +qbO +wbu +aiX +aKG +amb +aiX +ayT +amO +avj +qFl +aFp +aHo +bZH +aQs +qFl +aSq +aTE +aTE +aTE +aTE +jLs +awS +nJs +aJU +aJU +tiW +aJU +aJU +gLE +pNM +pNM +pNM +hHr +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 +nXP +hJp +qNG +uNL +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 +mzo +pVu +eOr +dFV +iVO +mzo +nqU +wWf +pch +vRz +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 +add +add +add +add +awW +acW +aeZ +aka +aoI +rwY +nwL +amh +nPx +aiX +aiX +uOJ +pqc +pqc +aqz +aKH +and +aiX +lzj +amO +bYe +aTR +gpe +gpe +aIa +ayh +qFl +aSt +aTE +aTE +aTE +aTE +qdA +awS +tvQ +yhI +tTu +sgU +baw +aJU +aJU +aJU +aJU +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 +nXP +nXP +nXP +nXP +nXP +nXP +nXP +mGL +kKG +uNL +aRu +aRu +aRu +aRu +aRu +aRu +bcm +xyw +bHB +xyw +bkA +bnj +kPx +bgk +biq +dvg +bgG +bnI +qjN +qjN +rdS +qjN +qjN +tGh +gfW +sgj +bDv +bDv +bDv +bEP +gfW +bGQ +bHB +qnd +cmp +cmp +cmp +cmp +cmp +cmp +cmp +vwN +wWf +nqU +vRz +vRz +vRz +vRz +vRz +vRz +vRz +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 +ukh +amO +nxK +qFl +aFq +aHB +aIb +aRr +qFl +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 +nXP +sAm +mGL +aLl +hJp +hJp +mGL +mGL +eKO +uNL +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 +cmp +bTz +apV +are +apV +djM +cmp +mjR +wWf +nqU +vhq +vhq +rcH +vhq +wqE +kwq +vRz +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 +ayU +amO +avm +qFl +qFl +aeD +qFl +qFl +qFl +pUJ +mSP +pUJ +pUJ +pUJ +pUJ +pUJ +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 +nXP +hJp +hJp +mGL +mGL +pwK +cmk +xJi +cIi +uNL +aRu +aRu +aRu +aRu +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 +cmp +apM +eGs +bWM +bWM +bWS +cmp +mjR +bVR +oeo +oeo +gdd +oeo +oeo +bgc +qUj +vRz +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 +mQH +amT +ioX +pUJ +inC +anX +aht +gvC +pTc +bsO +bsO +aal +xKW +aht +aht +gcc +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 +nXP +xYN +xYN +uNL +bdi +kKG +hJp +pda +lpS +wfE +wfE +wfE +wfE +wfE +wfE +wfE +wfE +bsk +sxu +cBI +bkA +bcB +bej +arX +vSG +iag +nvM +bek +qjN +gGJ +ham +qjN +qjN +oWf +gfW +xgJ +fdZ +bnS +fdZ +tzx +gfW +bLT +cbQ +ccq +cmp +apO +bWM +bWM +bWM +gQl +asE +asE +asE +asE +asE +asE +asE +asE +clO +gUv +vRz +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 +dWJ +aiX +aiX +aiX +aiX +nVe +akV +bRs +pUJ +pUJ +abA +pUJ +pUJ +pUJ +pUJ +pUJ +pUJ +pUJ +pUJ +pUJ +ymi +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 +nXP +aMr +aMr +wfE +wfE +rXv +wfE +wfE +wfE +wfE +sGU +vhY +wfE +bqm +bsD +btr +wfE +owH +stY +owH +bkA +bcC +bej +uyJ +fVG +qpQ +nvM +bek +qjN +sld +ham +ham +qjN +oDY +omo +fvJ +fdZ +ixj +fdZ +bET +gfW +bGT +bHH +bGT +cmp +apP +hKQ +bWM +bWM +fps +asE +asB +atA +bWM +aur +auI +auY +asE +caE +pdk +vRz +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 +aar +aar +aar +aar +aar +aar +oGC +awW +acW +awW +awW +awW +fSm +atW +apl +bbL +bbL +kij +bbL +bYe +bYe +yfv +bbL +aWl +bbL +bbL +bax +bbL +bbL +aWl +afv +yfv +bbL +bbL +bbL +bbL +kij +bbL +xRU +pEY +jsP +baw +fGg +baw +sgU +baw +baw +qVM +qVM +qVM +qVM +qVM +qVM +hXV +yhI +rRz +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 +aKW +bdn +bdn +wfE +mcL +jOo +wrC +mHx +pqX +pqX +xbk +wFR +bmF +wFR +wFR +xbk +aWw +bys +bxd +vgC +bkA +eUn +bcD +qpx +bet +bgu +nvM +bek +qjN +gGJ +ham +qjN +qjN +qyD +omo +blZ +bqN +nbb +bqN +bwR +gfW +bUe +cbR +ccr +hcC +lEW +aqd +bWM +bWM +ask +asE +asE +asE +atJ +aus +aus +ava +asE +clP +ovF +yhQ +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 +apr +apr +aoV +aar +aIZ +aIZ +aIZ +bWK +aar +aea +oGC +xjD +ajf +ajf +ajf +oAO +heH +aod +qgG +amC +amC +amC +fXB +amC +amC +hyc +all +all +amC +bYh +amC +fXB +fXB +fBL +bYc +bYc +suV +bYc +bYc +bYc +qgG +dqN +tFW +dGC +aZz +aZz +aZz +nsc +baw +cxk +qVM +iBt +iBt +iBt +vce +qVM +wTy +wTy +wTy +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 +aKW +uJo +aLf +wfE +dgl +jOo +xbk +mub +mub +mub +xbk +rkz +esM +esM +uUi +xbk +aWw +aNO +sLE +qLo +bkA +nvM +bgG +bcK +bgG +nvM +bkA +vwF +nEJ +ben +qjN +qjN +qjN +hpN +gfW +omo +wkc +gfW +uFo +omo +gfW +iRx +iEb +bHa +apm +jUn +avT +bWM +bWM +aso +asv +xVO +asE +bWM +auw +auM +avb +asE +scI +oed +yhQ +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 +aub +akc +euO +aar +aIZ +aIZ +aIZ +aIZ +aar +oGC +sHp +oGC +awW +awW +awW +aSJ +tsv +dtM +aii +mce +avn +mTb +avn +avn +gyy +avn +avn +avn +avn +mRl +avn +gyy +avn +avn +avn +avn +avn +mTb +avn +nFr +aii +ajC +dCD +aXe +baw +baw +baw +mnA +baw +baw +qVM +iBt +iBt +iBt +iBt +qVM +crh +csI +nqG +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 +aKW +ebD +aLf +wfE +krp +jOo +aGn +oDv +wFR +gxO +vnD +wFR +wFR +wFR +soA +xbk +wfE +kEb +sLE +aLG +bCd +iey +baf +kws +vSn +vSn +mvI +lqF +qjN +gGJ +qjN +qjN +qjN +pjw +qdz +bmb +bsj +bPk +bsj +byb +bCd +buH +iEb +buH +app +uku +aqD +bWM +arE +ast +pjP +atd +uku +bWM +aux +aus +ava +asE +suT +ftl +yhQ +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 +aIZ +aIZ +aIZ +aIZ +aar +rKs +aar +aar +aar +aar +aar +aar +aar +dtM +aii +ajC +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aoe +aEI +aii +aik +qVM +qVM +qVM +qVM +qVM +qVM +xeG +qVM +qVM +iBt +iBt +iBt +iBt +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 +aKW +bPW +aLf +wfE +eiP +qOp +rOJ +vYm +vYm +vYm +fsp +qtv +qtv +qtv +xFZ +btx +naV +bxk +aYI +aLG +bCd +tmg +qjN +qjN +qjN +qjN +qjN +qjN +qjN +gGJ +qjN +qjN +qjN +qjN +tzP +tzP +qjN +qjN +tzP +wYK +bCd +buH +iEb +buH +app +uku +aqT +bWM +gwW +dvF +bWM +ate +uku +bWM +auC +auN +dxL +asE +tqk +iBG +yhQ +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 +aar +aIZ +aIZ +aIZ +aIZ +aar +uLW +tZe +oQo +dCh +adt +xUI +aOD +aar +mOL +aii +ajC +aoe +aoh +jHQ +jkl +jkl +jkl +wDH +dSJ +hQU +pjF +mcW +vih +aoe +imp +fYb +cnV +isN +cnZ +aoe +dtM +aii +ajC +qVM +gKS +gKS +csz +xCX +csz +vGk +vGk +qVM +iBt +iBt +iBt +iBt +qVM +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 +aKW +bPT +aLf +wfE +fHz +opD +aGn +nTZ +wFR +lah +vnD +iRy +esM +esM +jpt +xbk +aWw +aLG +aZi +cOM +baZ +bep +qjN +qjN +qjN +cle +qjN +qjN +qjN +gGJ +qjN +qjN +qjN +qjN +qjN +cle +qjN +qjN +qjN +imo +baZ +oLv +iEb +buH +app +uku +aqW +bWM +arZ +mkh +bWM +ath +asE +atZ +auE +auP +wZy +asE +iTz +vfJ +yhQ +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 +aar +aIZ +aIZ +aIZ +aIZ +aar +aao +aap +ijU +vkD +ijU +aap +aao +sMs +bYe +akU +ajC +aoe +vbS +arb +aoq +aoq +aoq +aoq +arb +ccs +aoq +aoq +aoq +aor +aEi +aEi +cnW +aEi +coa +aoe +ahr +akU +bYe +xCX +csz +vGk +vGk +qVM +bDe +csz +csz +qVM +iBt +iBt +iBt +iBt +qVM +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 +aKW +aLf +aSm +wfE +iYx +opD +xbk +msZ +msZ +msZ +xbk +wFR +ldt +nEF +tXi +pcE +aWw +aLG +aZi +aLG +hqW +qjN +qjN +hDX +bei +xgh +mlH +cAF +eEk +kDR +maI +ujz +ljO +kdB +bmO +xgh +mlH +hDX +qjN +qjN +jpp +buH +iEb +buH +eDG +cmp +ard +bWM +gwW +saB +bWM +ati +atE +aua +gwW +xqS +yiE +avk +wlp +vXX +yhQ +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 +aar +aar +aar +aar +aar +lYA +lYA +lYA +lYA +lYA +lYA +lYA +lYA +lYA +ahr +akU +ajC +aoe +qQc +fXg +dfa +dfa +dfa +dfa +dfa +gzK +arb +arb +arb +aor +sKa +sKa +jBy +aEi +fFh +aoe +dtM +akU +ajC +czu +czu +czu +czu +czu +czu +czu +czu +czu +qVM +qVM +qVM +qVM +qVM +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 +aKW +aLf +aSm +wfE +gww +opD +wFR +wFR +aqn +arT +xbk +jfZ +kqK +ljf +maL +uKe +aWw +aLG +avX +tzf +vcq +qPS +qPS +qim +qPS +vln +mKw +rcx +kan +ojZ +jjn +ojZ +kan +leY +tYi +uYa +bqL +iaF +bqL +bqL +ocf +bFu +mKY +hvp +mWw +apT +apA +arC +nbm +cSN +asy +atw +atF +aud +auF +ati +cUb +asE +luu +gNx +yhQ +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 +aWm +aka +kyY +aar +cit +ina +nuY +nuY +lYA +aax +aax +aax +dkO +aps +aps +aps +lYA +vIm +aii +ajC +aoe +vbS +koB +asU +asU +asU +asU +arb +fEC +aoe +aoe +aCw +aoe +aoe +aoe +aoe +hFF +aoe +aoe +dtM +aii +ajC +czu +aiJ +aiJ +aiJ +qYr +atj +atj +atj +czu +foR +usi +vGk +foR +qVM +rQW +yhI +tmI +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 +aKW +rJb +aSm +wfE +rYi +opD +wFR +wFR +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aLG +aZi +cOM +baZ +eyQ +qjN +qjN +qjN +qjN +gGJ +bqR +vhX +gls +cAm +bwH +vhX +xqv +gGJ +qjN +qjN +qjN +qjN +xtM +baZ +oLv +hop +vMx +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +auh +gwW +ati +lBY +asE +wlp +sIx +yhQ +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 +apr +apr +apr +aar +aJL +aYr +aao +aao +lYA +aax +aax +aax +vQe +aps +aps +aps +lYA +ahq +akU +ajC +aoe +aop +koB +jkl +jkl +jkl +jkl +arb +ayW +aoe +lFn +imp +kEp +aoe +tsC +uRt +aQz +aRJ +ajl +dtM +akU +ajC +czu +aiJ +aiJ +aiJ +str +atj +atj +atj +czu +usi +vGk +vGk +vLv +qVM +wTy +wTy +wTy +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 +aKW +aLf +aSm +wfE +cVK +opD +oRO +ren +aKW +aeL +aeL +aeL +aqM +arO +arO +arO +aKW +beB +byI +beB +bCd +mlH +bqR +cle +tYw +tlA +nyj +vVW +vhX +unU +rlZ +twq +vhX +jCK +nyj +tlA +bwT +cle +bCe +sdO +bCd +bJz +rrV +bJz +yhQ +aue +aue +aue +txi +azy +azy +azy +yhQ +aup +gwW +kiF +ave +asE +scI +sIx +yhQ +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 +acf +aet +afB +akW +apu +aar +aar +aao +aap +pDm +lYA +acV +acV +acV +vQe +aps +aps +aps +lYA +dtM +nmx +cpw +hSI +pMp +gzK +aoq +aoq +aoq +aoq +aoq +aoq +aAG +aBd +aEi +aGW +aRF +akx +akw +aQz +aRK +ajl +aDk +akU +ajC +czu +aiJ +aiJ +aiJ +str +atl +atl +atl +czu +dQE +vGk +csz +qVM +qVM +crh +csI +qhb +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 +aKW +aLf +aMs +wfE +wfE +viJ +wfE +wfE +aKW +aeL +aeL +aeL +kHj +arO +arO +arO +aKW +aLG +aZi +aLG +bCd +bmn +knH +kan +kan +oKv +rHo +kan +kan +kan +jXf +kan +kan +kan +cbu +quT +kan +kan +iXW +iLs +bCd +buH +hop +buH +yhQ +aue +aue +aue +tGO +azy +azy +azy +yhQ +uRr +bWw +bWM +avi +asE +suT +oed +yhQ +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 +acv +aez +boL +akY +boL +aiH +aiv +aap +uoS +pDm +lYA +adb +adb +adb +lYA +asm +asm +asm +lYA +dtM +ajt +pvt +aoe +pjF +wUd +asU +asU +asU +fFO +mrL +mrL +aoe +yjb +aEN +aGX +aoe +aLS +akw +fOL +aRS +ajl +ahq +aii +ajC +czu +alW +alW +alW +czu +atI +atI +atI +czu +usi +foR +csz +xCX +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 +aSm +aLf +vXY +aLf +aLf +jiX +aLf +aKW +aeL +aeL +aeL +kHj +nLg +nLg +nLg +aKW +aLG +aZi +bad +kan +kan +kan +kan +xdx +rlZ +egc +thP +beW +bTu +rlZ +fqZ +beW +bgP +psK +rlZ +cFP +kan +kan +kan +kan +bGe +bHL +buH +yhQ +auk +auk +auk +tGO +azy +azy +azy +yhQ +pGN +bWM +bWM +avi +asE +scI +oed +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 +acv +aez +boL +akY +wrQ +aar +aar +aar +aar +aar +lYA +adb +adb +adb +lYA +asm +asm +asm +lYA +dtM +akU +wgd +sqf +sqf +sqf +sqf +sqf +sqf +sqf +ajl +ajl +ajl +aCo +aEO +aHa +aoe +cXW +upM +akw +alD +vEx +bYe +akU +ajC +czu +alW +alW +alW +czu +atI +atI +atI +czu +qVM +qVM +qVM +qVM +qVM +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 +iIY +bCQ +hhw +gxr +bPW +bbx +bPU +aKW +aiR +aiR +aiR +aKW +xpI +xpI +xpI +aKW +aLG +aZi +aLG +kan +bFb +bFb +kan +aYm +rlZ +buu +rlZ +rlZ +rlZ +rlZ +rlZ +rlZ +rlZ +buu +rlZ +dTZ +kan +psO +gjK +kan +buH +bHL +buH +yhQ +aul +aul +aul +yhQ +azD +azD +azD +yhQ +djp +bWM +bWM +avi +asE +nyz +tVB +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 +acf +aet +agS +aiP +aYq +aar +aIZ +aIZ +aIZ +bWK +lYA +adb +adb +adb +lYA +asm +asm +asm +lYA +dtM +akU +ajC +sqf +anp +wjz +fnA +jZY +jZY +sqf +vPj +aot +ajl +ajl +ajl +ajl +ajl +ajl +ajl +onQ +alD +ajl +hon +akU +ajC +czu +alW +alW +alW +czu +atI +atI +atI +czu +iBt +iBt +iBt +vce +qVM +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 +aKW +aiR +aiR +aiR +aKW +xpI +xpI +xpI +aKW +aLG +aZi +aLG +kan +bFb +bFb +kan +aZM +soK +gDW +rlZ +rlZ +pqD +pqD +pqD +rlZ +rlZ +gYl +frl +wFb +wzZ +tdI +vbV +kan +buH +hop +buH +yhQ +aul +aul +aul +yhQ +azD +azD +azD +yhQ +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 +acf +aet +agB +akW +aYs +aar +aIZ +aIZ +aIZ +aIZ +lYA +vKF +adb +adb +lYA +asm +asm +asm +lYA +dtM +aii +ajC +sqf +sOZ +oNJ +eDo +eDo +eDo +sqf +jUG +awM +gXl +ajl +wqW +awj +dDL +aLZ +ajl +aCp +alD +ajl +wqA +aii +ajC +czu +alW +alW +alW +czu +atI +atI +xMk +czu +iBt +iBt +iBt +iBt +qVM +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 +aKW +aiR +aiR +aiR +aKW +xpI +xpI +xpI +aKW +bxD +byI +beB +bst +bst +bst +bst +bst +bst +oou +rlZ +rlZ +tiI +hDR +oZV +rlZ +rlZ +xMj +biA +biA +biA +biA +biA +biA +bJz +bHT +koc +yhQ +aul +aul +aul +yhQ +azD +azD +azD +yhQ +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 +acv +aez +boL +akY +boL +avJ +aIZ +aIZ +aIZ +aIZ +lYA +adb +adb +adb +lYA +asm +asm +asm +lYA +dtM +ajt +aik +sqf +anq +awn +xsz +jTj +jTj +sqf +xRh +umC +dwA +wJo +cyU +eme +skl +nzv +fQu +akx +alD +gWG +dtM +aii +ajC +czu +alW +alW +alW +czu +atI +atI +atI +czu +iBt +iBt +iBt +iBt +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 +aKW +aiR +aiR +aiR +aKW +xpI +xpI +vgF +aKW +jgU +aZi +aLG +bst +bui +bvz +bgC +xfT +bkE +bJw +rlZ +hBc +hzs +hzs +kDj +aZK +rlZ +hYn +cpJ +lQO +bsQ +bmj +caS +biA +buH +bHL +wWQ +yhQ +aun +aul +aul +yhQ +azD +azD +azD +yhQ +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 +acv +aez +boL +akY +aqk +aar +aIZ +aIZ +aIZ +aIZ +lYA +adb +adb +adb +lYA +asm +asm +asm +lYA +dtM +aii +ajC +sqf +anr +awn +tEi +asu +hbI +sqf +ajl +vtx +ajl +ajl +ljL +fbB +cyU +bho +fQu +akx +alD +gWG +dtM +aii +ajC +czu +alW +alW +alW +czu +atI +atI +atI +czu +iBt +iBt +iBt +iBt +qVM +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 +aKW +aiR +aiR +aiR +aKW +xpI +xpI +xpI +aKW +aLG +aZi +aLG +bst +bcR +bev +bgA +eas +bkE +bLr +qni +hQY +qni +qni +qni +hQY +qni +lJG +cpJ +kRd +bCl +bsz +caT +biA +buH +bHL +buH +yhQ +aul +aul +aul +yhQ +azD +azD +azD +yhQ +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 +acf +aet +agS +aiP +aYq +aar +aIZ +aIZ +aIZ +aIZ +lYA +adb +adb +adb +lYA +asm +asm +asm +lYA +aEI +aii +ajC +sqf +sqf +awp +sqf +sqf +sqf +sqf +mNI +sdn +xNu +ajl +vRX +pth +axm +lhv +ajl +hVz +alD +ajl +ahr +aii +ajC +czu +alW +alW +alW +czu +atI +atI +atI +czu +iBt +iBt +iBt +iBt +qVM +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 +aKW +aiR +aiR +aiR +aKW +xpI +xpI +xpI +aKW +aLG +aZi +mzR +bst +bcS +bag +bgz +elE +bgv +bPz +dTZ +qxL +sYh +rlZ +dTZ +qxL +sYh +fFL +bmc +jdG +bCm +bsP +hgZ +biA +buH +bHL +buH +yhQ +aul +aul +aul +yhQ +azD +azD +azD +yhQ +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 +acf +aet +afB +akW +biT +aar +aar +aar +aar +aar +lYA +adc +adc +adc +lYA +lYA +lYA +lYA +lYA +kYU +akU +rxG +ajl +qhx +akw +axl +gKR +fvd +ajl +ajl +ajl +ajl +ajl +sYT +sYT +tWY +sYT +ajl +nMV +vIf +ajl +aEI +akU +gMa +czu +czu +czu +czu +czu +adc +adc +adc +czu +qVM +qVM +qVM +qVM +qVM +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 +aKW +aiR +aiR +aiR +aKW +xpI +xpI +xpI +aKW +aLG +aZi +aLG +bst +buj +bev +dBO +waD +bkE +bQM +rlZ +izY +rlZ +rlZ +rlZ +izY +rlZ +hZN +cpJ +tni +bCn +bsz +hMN +biA +buH +bHL +buH +yhQ +aul +aul +aul +yhQ +azD +azD +azD +yhQ +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 +acv +aez +boL +boL +boL +ahl +cWv +cWv +cWv +cWv +kaj +uId +adH +adH +fMA +atC +bbL +aWl +bbL +wQg +akU +bYe +bVE +aos +akw +akw +akw +alE +ans +ans +asw +ans +ans +ans +ans +axm +ans +ans +aos +alE +bVE +bYe +akU +aGd +aWl +hJu +bbL +atC +aAa +aww +aww +wst +axs +bbL +bbL +bYe +bbL +bit +baw +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 +aKW +aKW +aKW +aKW +aKW +kaF +jWU +jWU +aKW +pGM +aZi +aLG +bst +aYQ +bbd +bcL +bez +bkE +bRP +rlZ +rlZ +xsw +bZn +kFv +rlZ +rlZ +siW +cpJ +bmi +bnT +btX +byc +biA +buH +bHL +bIR +yhQ +cyG +cyG +sos +yhQ +yhQ +yhQ +yhQ +yhQ +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 +acv +aez +boL +asS +boL +ceu +boL +boL +boL +boL +kGL +uTY +azY +azY +azY +atC +abx +abx +abx +abx +tal +ait +aEe +akA +akA +akA +akA +jOG +akA +akA +akA +akA +rnN +akA +akA +maT +akA +akA +oap +aSb +aEe +ait +bjJ +abx +abx +abx +abx +atC +azY +azY +azY +fad +kGL +abg +abg +abg +abg +ajC +baw +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 +iIY +bCQ +hhw +bPU +bPS +cDe +ipD +rmN +buq +lGh +aQt +lDg +lpD +wGA +lpD +hmc +tBF +jWt +aLG +bst +bst +bst +bst +bst +bst +cjW +rlZ +rlZ +hrJ +kan +biy +boX +rlZ +vMG +biA +biA +biA +biA +biA +biA +ghD +vdW +hvp +ayE +azE +ajd +azS +chE +azI +ciT +cjw +cjS +ckl +ckI +cla +cly +voQ +bVi +tVB +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 +acf +acf +boL +ale +bDD +nub +dux +iYr +dux +ado +atC +kHT +avn +avn +mTb +atC +avn +avn +avn +nFr +ajt +ajC +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +wMO +wky +sqf +hon +ajt +mce +avn +avn +avn +atC +mTb +avn +avn +aim +atC +avn +bYe +cre +avn +aim +baw +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 +aSm +aLf +tps +aLf +aLf +xlD +nMz +aSm +hhw +aNn +aNO +asO +apC +apC +apC +aqx +aLG +aYO +aLG +kan +ihw +beW +lkW +biF +vhX +akQ +rlZ +rlZ +pnC +dBH +bky +ryt +rlZ +wYS +vhX +jva +tAU +xmT +tAU +kan +buH +bHL +buH +azB +azT +azT +azT +azG +bHa +ccU +kzP +cjT +ckm +bHa +clb +clz +fiq +gqK +oed +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 +lYA +aet +aet +biV +biV +ekY +aet +ekY +aet +abE +abE +abE +abE +abE +abE +abE +abE +abE +jKK +pjM +aim +vOy +nos +fcy +drT +ipQ +lZZ +vOy +oDL +nEH +vAQ +qIL +ncE +vWt +kNx +vOy +ayX +kXw +pxo +sqf +kHT +pjM +aim +qVM +qVM +qVM +qVM +qVM +qVM +qVM +qVM +qVM +qVM +gMA +qVM +qVM +qVM +qVM +qVM +qVM +czu +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 +aKW +aSm +aLf +hhw +aQF +aQF +aQF +aQF +szE +aQF +bBb +jtJ +asO +asP +uKA +asP +aqx +aLG +aZi +aLG +kan +iMI +rlZ +rlZ +rlZ +qep +cnr +qqK +qqK +ayD +dBH +bky +ryt +rlZ +buu +uXf +wxq +wJb +wJb +bPu +kan +buH +bHL +buH +azB +qKM +rYj +ssE +azG +uxZ +vgk +fiq +fiq +fiq +bTq +fiq +fiq +fiq +sIx +oed +yhQ +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 +ahx +aiH +alf +arp +arp +aiH +aiH +aiH +aet +kPB +aci +aci +aci +aci +gwo +aed +aeG +abE +atL +akV +atL +vOy +oNp +aSn +lYL +pNP +kCj +vOy +nLI +rDV +dwr +rDV +mTd +gQF +xXr +vOy +niL +kXw +pxo +sqf +atL +bkQ +atL +qVM +iBt +iBt +iBt +iBt +iUZ +awE +pQu +kmL +qVM +csz +qVM +nLb +pUi +wLk +bIN +lbb +czu +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 +aKW +uDB +aLf +hhw +weR +aPE +weR +vrI +izk +aQF +aQF +aQF +aQF +aQF +aQF +aQF +aQF +esi +byI +beB +kan +avW +bZn +dXr +uay +vhX +gDW +rlZ +rlZ +pnC +dBH +bky +ryt +rlZ +gYl +vhX +hCS +xIk +cLA +xIk +kan +bJz +bHT +quI +bJt +bJt +bJt +bJt +bJt +bJt +bJt +fiq +uaa +uaa +uaa +uaa +cmX +fiq +sIx +sIx +yhQ +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 +ahx +aiH +alg +bBC +bBC +aIx +aIB +aiH +aet +kPZ +acI +acj +vJZ +wfZ +adF +aef +dWw +agA +ago +snm +cwJ +vOy +anz +vgx +hme +mzq +qJy +vOy +vti +vti +fBO +vti +gGx +vti +lid +lJv +aCC +kXw +pxo +asn +ago +asW +cwJ +qVM +iBt +iBt +iBt +iBt +iBt +awE +jZU +rjH +qVM +vGk +qVM +fdj +qYW +oTz +vGk +xae +czu +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 +aKW +aSm +aVt +hhw +hcZ +hcZ +hcZ +hcZ +izk +aWD +cWr +jSU +lXO +eKT +wan +cTC +aQF +pno +aYO +bad +xMs +xMs +xMs +xMs +xMs +xMs +cjW +rlZ +rlZ +jbO +kan +quv +rZB +rlZ +wxc +vMo +vMo +vMo +vMo +vMo +vMo +bGe +bHL +smn +bJt +xOL +gGI +eeu +nbB +ksA +gAz +fiq +uaa +uaa +uaa +uaa +uaa +fiq +oed +bxX +yhQ +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 +lYA +aet +avx +ahN +uli +uli +uli +bWf +aet +lwC +aTT +acl +xxi +qJj +adF +aef +aef +uZZ +bYe +amO +avj +vOy +awQ +oLU +thN +vDa +vOy +vOy +qfy +inL +oiY +ueJ +ueJ +oDi +trF +lJv +edv +kXw +pxo +asn +ayT +akU +avj +qVM +iBt +iBt +iBt +iBt +iBt +awE +cvj +iiz +qVM +oLw +qVM +qVM +qVM +xeG +qVM +qVM +czu +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 +aKW +bhC +bPT +hhw +jKh +hcZ +rDv +bmW +jWu +aWD +aqo +aRy +aRy +aRy +aRy +nIj +aQF +aWM +aZi +aLG +xMs +aSO +feY +xEz +bgn +bgw +eXb +rlZ +rlZ +thP +beW +bgP +rlZ +rlZ +hAU +xqy +bmk +wZE +iGn +byd +vMo +buH +bHL +buH +lhB +pOY +bDs +jge +bDs +bDs +hLC +fiq +uaa +uaa +uaa +uaa +uaa +fiq +oed +sIx +yhQ +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 +lYA +aet +avV +uli +uli +uli +mov +bWq +aet +lhX +aXc +acl +jlN +qqn +adF +bls +aeH +agq +ahM +kSJ +avj +vOy +hng +dnC +hPN +vCk +qEn +qam +riE +gAS +lMv +dVu +eSo +qmD +wsx +lJv +aCt +kXw +pxo +asn +ayT +aii +avm +qVM +iBt +iBt +iBt +iBt +iBt +awE +aGt +ijn +qVM +vGk +vGk +gYS +weU +csz +eGz +csz +czu +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 +aKW +aSm +xCm +hhw +mTi +lJK +kYV +hhn +aQp +aQG +ulZ +aRA +aRA +bQU +bQU +bjD +dqE +aem +mUa +uLv +xMs +lOH +dUS +bcP +dSX +bgw +fbw +rlZ +rlZ +pqD +pqD +pqD +rlZ +rlZ +rFH +xqy +aGg +bof +vit +dxu +vMo +buH +bHL +buH +lhB +nbB +bDs +bIJ +bDs +bDs +qJS +fiq +uaa +uaa +uaa +uaa +uaa +fiq +oed +oed +yhQ +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 +ahx +aez +uli +aIx +uli +uli +mov +bWq +aet +lhX +eYM +uuR +dHu +qqn +adF +aef +kqN +agA +ayT +ajt +avm +vOy +xyt +wiW +tOr +dBj +wei +kBP +kBP +jsx +tjn +aCC +kXw +pQP +qAT +vOy +vOy +mFq +vqW +sqf +ybf +aii +avj +qVM +awE +awE +awE +nec +awE +awE +xJC +awE +qVM +qVM +qVM +qVM +qVM +qVM +vGk +csz +czu +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 +aKW +aSm +xnY +hhw +aQF +aQF +aPH +xIQ +hcZ +aWD +rrK +aRy +feI +brb +cpp +buv +aWF +aLG +aZi +aLG +xMs +akE +qGF +bcV +bgr +bgy +fxZ +rlZ +aZK +vYt +fDj +eBZ +hBc +rlZ +pKZ +bmd +bnR +ggz +dka +bye +vMo +buH +bHL +buH +lhB +aQW +bDs +bNw +wIG +wLK +hAz +bJt +bJt +bJt +bJt +bJt +bJt +bJt +oed +eHf +yhQ +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 +ahx +aez +uli +uli +uli +uli +uli +aiH +aet +lhX +acl +acl +acl +qqn +aef +aef +tRD +abE +aTL +ajt +avj +vOy +iYf +bIM +wPz +iUo +vOy +xqp +lzA +vkp +tjn +aCC +kXw +vtm +emK +fGu +hPe +sdu +btC +vLj +ahM +kSJ +avj +cGr +awE +fUn +wQv +rne +guC +ecQ +whZ +awE +lEf +gel +gel +gel +fkX +qVM +vGk +ofs +czu +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 +aKW +uDB +aLf +hhw +weR +aPE +izk +xIQ +vse +aQF +blp +aRy +aTn +aTY +iCF +gJP +aQF +qcl +aZi +aLG +xMs +aYR +dUS +mqU +bgs +bgw +icw +qni +klH +tgV +tgV +tgV +klH +qni +uah +xqy +jhn +jZd +vit +bzo +vMo +buH +bHL +buH +lhB +pxD +bDs +gSk +bDs +bDs +bDs +xjb +fbo +duo +iIl +bDs +ujV +bJt +oed +oed +yhQ +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 +lYA +ahy +avZ +ipK +ipK +ipK +uli +bWf +aet +lhX +acl +acl +acl +qqn +adF +aef +afs +agA +ayT +akU +avj +vOy +mTp +wiW +wPz +jeq +rQy +wWR +ycj +vkp +cfT +hec +gNp +hVf +dVu +rmc +lON +dVu +oDR +vOP +bYe +bnD +aWH +aYn +bVB +bXv +bXv +bph +rEm +rne +bYj +xne +rfb +cXF +rLU +dKp +cHu +qVM +vGk +csz +czu +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 +aKW +aSm +gfS +hhw +lHc +hcZ +izk +hds +aQF +aQF +haQ +aRy +boY +qZH +bsN +buB +aWD +aLG +aZi +aLG +xMs +bXw +eiw +bda +bgt +bgw +jxi +rlZ +rlZ +rlZ +rlZ +rlZ +rlZ +rlZ +nrN +xqy +nYD +boh +qDP +wbP +vMo +buH +bHL +vMx +bJt +qom +bDs +rAx +jFE +fuS +jFE +jFE +jFE +jFE +idx +hAz +fhQ +bJt +vhI +oed +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 +lYA +aet +aIx +ipK +ceC +eRR +uli +bWq +aet +loV +acK +acm +acK +esK +adD +sOw +afs +agA +ayT +akU +avj +vOy +axn +dRh +ydE +bST +rQy +vOy +vdO +vkp +aoM +kBo +kBP +naR +vOy +hrn +vOy +aRd +aIo +vOy +qLK +akU +avj +kpl +awE +xgr +bYj +btz +bsc +iaj +bYj +xne +rLv +bHk +vZw +bHk +cHu +qVM +csz +qVM +czu +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 +aKW +aLf +aSm +tps +aNs +aNs +hyw +mzz +aQF +aQF +blj +aRy +bpa +fHF +bml +buB +aWD +beB +byI +beB +xMs +xMs +xMs +xMs +xMs +xMs +jGn +rlZ +ggJ +oXY +bZn +kFv +dut +rlZ +sPJ +vMo +vMo +vMo +vMo +vMo +vMo +bJz +bHT +uFP +bJt +bJt +nFI +qdk +vzP +bJt +hjB +bJt +pxd +bDs +gSk +bDs +pdt +bJt +kTq +oed +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 +lYA +aet +uli +ipK +awe +fwD +uli +oGy +aet +lhX +acl +acl +acl +qqn +adF +aef +afs +agA +ayT +akU +avj +vOy +aAr +pGK +tpa +tpa +tpa +vOy +dHV +vkp +jUM +lou +eBO +pRn +vOy +ayZ +aCD +hFC +qmy +vOy +ayT +akU +avj +awE +awE +bqy +bYj +eUR +bsd +qZF +bYj +xne +cNH +vzp +vZw +erd +cHu +qVM +hoX +qVM +czu +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 +aKW +eWY +aSm +hhw +hcZ +hcZ +izk +uhl +aQF +aQF +blf +aRy +kkt +htL +aUL +buB +aWD +aLG +aZi +aLG +nyw +iXU +hDw +kzb +pha +kan +kan +mwM +wmQ +kan +kan +kan +mwM +eRy +kan +kan +rIO +vEH +uFH +tQd +nyw +buH +bHL +buH +yfS +sEi +dck +quV +doJ +loY +tOW +lkd +dYR +bDs +gSk +reL +wiI +bJt +nnr +eep +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 +lYA +aet +avx +ipK +ipK +ipK +uli +bWq +aet +lhX +acl +acl +acl +qqn +aef +aef +pHG +abE +aTL +aii +avj +vOy +aID +gLc +mKx +iit +kZV +vOy +vOy +oIr +vOy +wdo +vOy +vOy +vOy +qqQ +aoM +aoM +vgB +kgs +ayT +aii +avj +aYp +aWS +bYj +bYj +btz +rne +rne +bYj +xne +rfb +bHk +vZw +bHk +cHu +qVM +csz +qVM +czu +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 +aKW +wyO +lpX +hhw +mTi +lJK +izk +xIQ +vyp +aQF +blw +aRy +aTr +aTZ +aUM +gJP +aQF +lRU +aYO +aLG +nyw +beH +dcd +beH +bqZ +beH +neS +beH +beH +tJR +rRU +oEw +beH +beH +neS +beH +bqZ +beH +beH +beH +nyw +buH +bHL +buH +yfS +hgL +swt +wSX +wpI +ktX +smi +lkd +tsa +bDs +gSk +bDs +vwI +bJt +koz +sIx +yhQ +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 +ahx +aez +uli +uli +uli +uli +uli +oWz +aet +lhX +gsZ +uxO +bTt +qqn +adF +aef +aGS +agA +ayT +aii +avj +vOy +aMd +pGK +pRX +mHD +pRX +vOy +jFf +vkp +jrM +mWs +lmw +vOy +dyb +tsM +prx +fpT +eVT +kgs +ayT +aii +avj +aYp +aZJ +baD +baD +tsH +bqw +bqw +hiB +xne +rLv +pRy +wwW +mRW +cHu +qVM +vGk +csz +czu +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 +aKW +aVt +eZz +hhw +aQF +aQF +sPc +xIQ +hcZ +aWD +olM +aRy +aRy +eXr +iFH +buv +aWE +aLG +avX +aem +aum +emr +emr +emr +uNB +quq +duv +beH +beH +beH +bqZ +beH +beH +beH +fcf +beH +pmH +rCO +rCO +rCO +eVv +bFu +lAO +buH +ykj +rlQ +ven +agH +wxU +tvM +smi +lkd +rBj +bDs +gSk +bDs +oMd +bJt +sIx +uqH +yhQ +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 +ahx +aez +aIB +aKg +uli +uli +mov +bWq +aet +lhX +kNO +acl +jlN +qqn +adF +aef +nIS +uZZ +bYe +aii +avj +vOy +aMg +aSo +pRX +mHD +tzL +vOy +vqZ +vkp +rDr +usy +nDo +vOy +glB +vkp +ger +aoM +aFf +mmN +ayT +aii +avj +aYp +sQL +dpV +bXW +bqo +bse +bvc +djL +awE +qWR +wJH +wJH +wJH +sNR +qVM +vGk +csz +czu +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 +aKW +aLf +aSm +hhw +weR +aPE +izk +uhP +aQq +aQH +upO +pOi +pOi +pOi +pOi +nVF +aWF +aLG +aYO +aLG +nyw +eGZ +ieX +pfM +bqZ +rEf +rWT +emr +emr +usX +vKe +rCO +rCO +rCO +vVd +eBg +wRT +bhq +dcd +eTd +nyw +buH +vdW +qLp +kKk +rDt +gpI +xwp +fLg +tvM +dfC +cEi +bJt +oKb +gSk +bDs +pdt +bJt +sIx +bxX +yhQ +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 +lYA +aet +aJJ +aIB +uli +uli +mov +bWq +aet +lwC +tIK +acl +sNO +qJj +adF +aef +nIS +eWF +bYe +aii +avj +vOy +aQZ +bkT +pRX +mHD +pRX +vOy +foP +sZy +vEr +irU +bVe +vOy +ggl +jjS +qMP +kBP +aSl +vOy +aTL +aii +avm +awE +awE +awE +awE +mZA +awE +awE +awE +awE +awE +qVM +qVM +qVM +qVM +qVM +vGk +ofs +czu +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 +aKW +xxe +aLf +hhw +hcZ +hcZ +uFd +mUq +qwt +aWD +bng +bmX +bmX +tou +tou +jhy +aQF +beB +aYT +jfD +bdd +bdd +bdd +bdd +bdd +qCc +fUA +beH +spF +uBN +bqZ +jMr +eGZ +beH +fUA +qYZ +bdd +bdd +bdd +bdd +bdd +fZx +bHT +bJz +yfS +ape +ven +njJ +kiM +tvM +smi +lkd +kvU +idX +cnu +bDs +knK +bJt +oed +vgQ +yhQ +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 +lYA +aet +avx +ahN +aIB +aKg +uli +bWf +aet +abK +acL +acn +cRK +dXV +adF +aef +kqN +agA +ayT +akU +avj +vOy +dVd +lea +hKl +lDN +kZV +vOy +vOy +eNI +eNI +eNI +vOy +vOy +hRa +vti +vti +vti +aEZ +vOy +ayT +akU +avj +aCv +baa +fqe +bXx +bqo +awE +tnm +dhQ +qyz +awE +vGk +vGk +gYS +vzl +csz +vGk +csz +czu +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 +aKW +dgN +aLf +hhw +hcZ +hcZ +hcZ +hcZ +pQY +aWD +bll +bll +bpo +dVO +bsR +aQr +aQF +aLG +aYO +aLG +tda +ngI +dkq +lRZ +acc +beH +beH +dwl +bdd +bdd +gac +bdd +bdd +aMt +beH +beH +acc +qby +btY +bAJ +huU +buH +bHL +buH +yfS +ape +ven +bWT +fKV +tvM +smi +lkd +qTY +bDs +gSk +ljG +tSp +bJt +oed +sHg +yhQ +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 +ahx +aiH +uli +bLO +bLO +bLO +bLO +aiH +qga +eAU +eAU +eAU +eAU +eAU +fcE +aef +uNN +abE +giB +akU +avj +vOy +vOy +vOy +mSK +mSK +mSK +vOy +vOy +ylc +wKP +ylc +vOy +vOy +rhO +pgM +nPE +oqZ +uaI +vOy +atV +akU +avj +aCv +bac +dWz +bYj +bqo +aRD +aGt +byp +aGt +awE +vGk +qVM +qVM +qVM +qVM +csz +qVM +czu +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 +aKW +bhC +aLf +hhw +mTi +lJK +mTi +lJK +kmp +aQF +bln +xEX +aQF +aQF +aQF +aQF +aQF +ePA +akO +bwd +bdg +vyg +bni +cwX +vuA +nVi +nVi +nVi +vuA +tab +udi +wCs +vuA +nVi +nVi +nVi +vuA +snb +xbd +bAU +bdg +bCi +bCo +ivB +bJt +wbC +lHu +oiL +qBM +wXI +nUd +lkd +oMd +bDs +gSk +oDE +bJt +bJt +oed +sIx +yhQ +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 +ahx +aiH +aiH +bWd +awi +bWd +mOb +aiH +aet +aBD +acU +uPr +sTd +lfH +aeI +eva +xzf +abE +aTL +aii +ali +amD +cwJ +vOy +vOy +vOy +vOy +vOy +vOy +eNI +eNI +eNI +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vIN +aii +avj +aCv +ilv +rne +rne +gEK +eHj +bvl +byq +maq +awE +vGk +qVM +riM +rGl +qVM +hoX +qVM +czu +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 +aKW +efU +aLf +hhw +aQF +aQF +aQF +aQF +aQF +aQF +aQF +aQF +aQF +ktB +gCd +eJg +hhw +aeb +alx +aeb +bdg +apz +dyd +fyD +bdd +dhR +dhR +dhR +vuA +eYu +qaW +wbN +vuA +lVS +lVS +lVS +bdd +vPw +bvr +bBQ +bdg +bCj +bDx +bCj +rde +vjC +iMm +mJi +iMm +iMm +mkc +bJt +xaN +bDs +gSk +luS +bJt +iGg +oed +sIx +yhQ +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 +lYA +aar +tiM +aar +aar +aNi +aNi +bWr +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +atV +aii +abx +abx +avj +vOy +elR +xXh +xXh +xXh +dMK +aCR +aAT +aNY +elR +xXh +xXh +xXh +dMK +vOy +vOy +vOy +ayT +aii +avj +awE +ceo +rne +rne +wft +awE +awE +awE +awE +awE +vGk +xCX +vGk +hoX +qVM +sCC +qVM +czu +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 +aKW +aSm +aSm +hhw +beG +dIR +yky +bfb +baY +hhw +aLF +bPV +yaG +bPU +aSm +bPS +hhw +bwd +auv +bwd +bdg +auj +bbf +ber +vuA +nVi +nVi +nVi +vuA +jkz +ngI +xGJ +vuA +nVi +nVi +nVi +vuA +bpv +tMW +bBY +bCh +bCi +bCo +bCi +ejw +xML +iMm +jSy +wGb +iMm +rjn +bJt +wUX +bDs +gSk +vSp +lHG +qgH +sIx +sIx +yhQ +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 +lYA +aiS +aao +aao +acD +aNi +cYT +aNm +cYT +lEF +beZ +vif +bhx +aOR +bhx +vif +aOR +bsw +ayT +xGk +all +amK +avj +vOy +wWz +vHO +ruc +uvP +wTM +dNq +vVs +aFa +wWz +liY +ruc +xOY +wTM +vOy +nzA +amD +ajr +aii +avm +awE +hfm +rne +rne +fAo +awE +bhM +wQv +bBi +awE +ieH +qVM +tUI +mcV +qVM +vGk +csz +czu +aaf +aaf +aaf +aaf +aaf +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +bdH +bdH +bdH +bdH +aac +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aSm +aLf +hhw +beI +bTQ +tBP +jfm +lYu +maw +fAS +jfm +lzn +eDz +jfm +jfm +bUP +aLG +aYO +aLG +tda +mng +wTm +wCI +acc +beH +beH +beH +acc +mng +wTm +wCI +acc +beH +beH +beH +acc +mng +wTm +wCI +tda +buH +bHL +buH +bJt +swE +wpI +ocm +wpI +wnL +kHd +bJt +hSw +qxE +rui +vSp +bJt +wuH +oed +uqH +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +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 +lYA +aiT +aap +aao +aap +aNi +aZe +aNm +aNm +lRP +beE +bhx +bhx +hMi +aco +aco +dYu +bsw +mQH +hee +aEX +aii +avm +vOy +wWz +anw +wLy +jlG +aqP +kCE +wLN +npt +xuE +hqh +wLy +eiE +wTM +vOy +ayT +akT +amC +bKe +avj +aCv +eYW +rne +rne +wft +emO +bYj +bYj +bYj +awE +csz +qVM +qVM +qVM +qVM +oLw +csz +czu +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 +aKW +aKW +bPU +lLV +aLf +aLf +aLf +jiX +aSm +aSm +aLf +ahU +aLf +fza +kat +uJB +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +teH +mUa +xNB +bdd +vuA +vuA +vuA +bdd +qCc +fUA +qYZ +bdd +vuA +fnx +vuA +bdd +qCc +fUA +qYZ +bdd +vuA +vuA +vuA +bdd +bSj +bHL +bIR +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bJt +cDC +vuF +bJt +bJt +oed +sIx +sIx +sIx +qNy +cLV +sIx +sIx +sIx +yhQ +yhQ +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 +lYA +aiU +aap +aap +aap +aNi +aZr +aNm +aNm +lTE +beE +bhx +bhx +aOR +bhx +bhx +cCa +aNi +aNi +aNi +ybf +ajt +avj +vOy +wWz +ovG +gxP +aPJ +wTM +apS +wse +aFa +wWz +ual +gxP +aOe +wTM +vOy +atU +akU +abg +abg +avj +aCv +aSP +rne +rne +wft +awE +hpf +byY +igp +awE +hoX +qVM +oks +vGk +qVM +vGk +ofs +czu +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 +aKW +bPV +aLf +xlD +aSm +aSm +aSm +aLf +aLf +aLf +aMs +hhw +pgt +ykF +bgH +uVb +bdd +pfe +wsP +izr +aSh +ccF +tGG +tGG +bdg +aLG +awb +aLG +bdg +bqZ +bqZ +bqZ +bCg +beH +fUA +beH +bCg +bqZ +beH +bqZ +bCg +beH +fUA +beH +bCg +bqZ +bqZ +bqZ +bdg +buH +hOR +buH +bdg +sNI +wAU +diw +csG +sNI +wNT +wbe +bdd +qXo +feq +loY +aDU +bJt +oed +sIx +oed +sIx +mOU +sIx +sIx +oed +oed +sIx +yhQ +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 +lYA +aiZ +aap +aao +aap +aNi +aZs +aNm +aNm +mwL +beE +bhx +bhx +aOR +bhx +bhx +qiy +ahR +ahR +egt +ait +ani +avj +vOy +woh +vgO +aoJ +alk +xAe +avH +wse +cXC +woh +pLO +qxm +vgO +xAe +vOy +aOP +aii +aow +hee +ioX +aCv +aLQ +bYj +bYj +wft +awE +awE +awE +awE +awE +csz +iid +csz +hoX +qVM +noV +csz +czu +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 +aKW +aSm +aLf +nsY +nsY +pRT +nsY +nsY +nsY +nsY +nsY +nsY +hhw +hhw +umv +hhw +bdd +bqZ +kbV +tGG +tGG +tGG +tGG +tGG +bdg +aLG +aYO +aLG +bdg +bqZ +beH +beH +beH +beH +fUA +beH +beH +beH +beH +beH +beH +beH +fUA +beH +beH +beH +beH +bqZ +bdg +buH +bHL +buH +bdg +sNI +sNI +sNI +sNI +dkH +cKX +bqZ +bdd +tLc +rsM +iMm +hTT +nsY +nsY +nik +nsY +nsY +nsY +nsY +nsY +nsY +upt +sIx +yhQ +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 +lYA +adf +aao +aao +aao +aNi +jWr +aNm +jWr +mBJ +dtZ +bhx +bhx +wWg +aco +aco +hpY +aOR +aOR +bgK +bYe +ajt +avj +vOy +vOy +vOy +uqd +amk +pYo +avF +coJ +iAz +cQo +aIP +aoK +vOy +vOy +vOy +asp +aii +avj +qVM +qVM +awE +ntr +bYj +bYj +wft +bvU +dTc +lOl +mkx +awE +ieH +qVM +dYK +csz +iid +csz +qVM +czu +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 +aKW +aLf +aSm +nsY +xWT +kxd +jgk +nsY +rSG +wWJ +oqS +nsY +lhu +btk +aSm +eoM +bdd +vTt +kbV +tGG +tGG +tGG +tGG +tGG +bdg +aLG +aYO +aLG +bdg +bqZ +beH +aLJ +bmr +beH +beH +beH +eGB +jMR +ufh +mEE +sTw +beH +beH +beH +rJK +gBo +beH +bqZ +bdg +buH +bHL +buH +bdg +sNI +csG +sNI +sNI +gNi +wNT +cab +bdd +hxZ +rsM +iMm +gzV +nsY +xWT +kxd +viu +nsY +rSG +qkP +oqS +nsY +sIx +sIx +yhQ +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 +lYA +fZF +aWs +aar +tiM +aNi +aNi +aNi +aNi +aNi +aOR +eVQ +aOR +aOR +aOR +eVQ +aOR +aOR +agr +aNi +ayT +amO +avj +vOy +vOy +vOy +vOy +vKb +rzN +avG +jbK +aOd +sXd +aJn +vOy +vOy +vOy +vOy +meJ +amO +avj +qVM +csz +awE +qMe +bYj +bYj +dyF +awE +bzs +gbQ +eKK +awE +oLw +qVM +jmR +vGk +qVM +hoX +qVM +czu +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 +aKW +aLf +aSm +nsY +xWT +kxd +viu +nsY +iIP +nna +dDt +nsY +xiz +aSm +aSm +kOf +bdd +bDQ +kbV +tGG +okB +tGG +crK +tGG +bdg +beB +aYT +beB +bCx +bqZ +beH +bgO +boq +boq +boq +boq +wNT +pVB +hsg +iPv +kbV +uMk +uMk +uMk +uMk +bgO +beH +bqZ +bCx +buH +bHL +buH +bdg +sNI +sNI +sNI +sNI +eCS +xqM +udV +bdd +hTf +rsM +oos +sBL +nsY +xWT +rfT +viu +nsY +dmR +kxd +dDt +nsY +sIx +oed +yhQ +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 +lYA +aar +aar +aar +awJ +aao +fZF +fZF +fZF +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +asp +amO +avj +bPF +aqG +ata +vOy +apR +aqS +mnW +nPf +vYz +awR +uoi +vOy +aMh +biB +alH +aTL +akU +avj +qVM +csz +awE +awE +awE +hIL +awE +awE +awE +awE +awE +awE +vGk +qVM +qVM +qVM +qVM +csz +qVM +czu +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 +aKW +aLa +aSm +nsY +gsg +vHq +vvY +nsY +pPV +umY +npB +nsY +glr +mhl +aSm +ylY +bdd +bqZ +qgw +beH +qMR +vlR +dRT +qin +pmv +tBF +fSK +aLG +nyw +bqZ +beH +bgO +boq +boq +boq +boq +wNT +vBp +kNl +nhi +kbV +uMk +uMk +uMk +uMk +tmB +eBg +vKe +eVv +bFu +omW +bFu +hLS +eBg +eBg +eBg +eBg +fOk +epq +bqZ +bdd +hTf +rKO +wGb +gUf +nsY +gwM +bxC +pJD +nsY +iSm +bxC +jiU +nsY +sIx +oed +yhQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(174,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +lYA +lYA +lYA +lYA +lYA +lYA +lYA +lYA +lYA +lYA +lYA +lYA +aao +aap +aap +aao +aap +aap +ahg +aao +aap +aap +aap +aap +aao +acD +aao +aap +aap +rfg +bYe +amO +bYe +cbg +aqG +atb +vOy +xSY +rzN +lCt +lto +paa +sXd +gVq +vOy +aMi +biB +apI +bYe +akU +bYe +xCX +vGk +vGk +csz +vzl +bvY +vGk +vGk +csz +vzl +csz +vGk +vGk +vGk +gYS +weU +vGk +csz +czu +czu +czu +czu +czu +czu +czu +czu +czu +czu +czu +czu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aac +aaf +aaf +aKW +aLf +aSm +nsY +nsY +qxC +nsY +nsY +nsY +ntx +nsY +nsY +jFe +sxe +xZI +mNZ +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +aLG +awb +aLG +bdg +bqZ +beH +bgO +boq +boq +boq +boq +wNT +vBp +hWs +nhi +kbV +uMk +uMk +uMk +uMk +bgO +beH +bqZ +bdg +buH +hOR +buH +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +tuo +rsM +oos +gUf +nsY +nsY +iFM +nsY +nsY +nsY +gLZ +nsY +nsY +sIx +uqH +yhQ +aaf +aaf +ajY +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(175,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +lYA +dxF +dxF +aaH +aam +aam +aam +aam +aam +aam +aam +lYA +qsd +aap +aar +aar +aar +aar +aar +aar +aar +aar +aar +aar +aar +aar +aej +aej +aej +aej +iiC +amO +tHh +vOy +vOy +vOy +vOy +msi +kDk +kbJ +cJM +jlA +qLi +dEm +vOy +vOy +vOy +vOy +apv +akU +jHG +qVM +qVM +qVM +qVM +qVM +qVM +qVM +qVM +qVM +qVM +qVM +qVM +qVM +qVM +qVM +qVM +vGk +csz +czu +aeT +aeT +aeT +aeT +aeT +aeT +aeT +nnD +aZF +aZF +czu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aad +aKW +aKW +aKW +aSm +aLf +nsY +tUS +bNh +wNl +nGh +fPp +lqN +kjV +nsY +xCN +pOB +hfk +aLf +bdd +bqZ +kKL +aLJ +eBg +dAO +cEG +eBg +dYX +tBF +lBz +aLG +iuy +bqZ +beH +bgO +boq +boq +boq +boq +wNT +pUA +wga +mfM +kbV +uMk +uMk +uMk +uMk +bgO +beH +bqZ +bdg +buH +uXu +bFu +iUk +eBg +gkJ +eBg +eBg +mVZ +kTx +bqZ +bdd +hTf +wRO +iMm +gUf +nsY +aaq +wHj +qdv +uQo +iQt +uZo +xmJ +nsY +oed +sIx +yhQ +yhQ +yhQ +ajZ +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(176,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +lYA +dxF +dxF +aaH +aam +aam +aam +aam +aam +aam +aam +lYA +abe +aap +aar +aIZ +aIZ +aIZ +aIZ +ajQ +aIZ +aIZ +aIZ +aIZ +ajQ +aej +aeO +afG +ags +aej +ayT +amO +avj +vOy +elR +xXh +xXh +apU +taH +aBe +otu +jBO +jNc +ean +xXh +xXh +dMK +vOy +ayT +akU +avj +qVM +nNA +ekO +nNA +qVM +iBt +iBt +iBt +iBt +aJM +iBt +iBt +iBt +iBt +aJM +qVM +vGk +xIb +czu +aeT +aeT +aeT +aeT +aeT +aeT +aeT +nnD +aZF +aZF +czu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aKW +aKW +bPT +jiX +aSm +aLf +nsY +kio +sJY +qJY +qLH +xTW +oGP +cnM +nsY +nEA +lQu +lQu +aSm +bdd +bDQ +iWE +jUo +wmz +wmz +wwk +wmz +bdg +aLG +awb +aLG +bdg +bqZ +bqZ +bgO +beH +beH +duv +beH +htI +cCD +shp +oAB +gyv +beH +duv +beH +beH +bgO +bqZ +bqZ +bdg +buH +hOR +buH +bdg +wLV +nza +wLV +wLV +wLV +ukA +bqZ +bdd +gKB +rsM +oos +gUf +nsY +mKJ +deT +uAC +rhQ +pyc +uMn +ivz +nsY +oed +sIx +oed +oed +yhQ +yhQ +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(177,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +lYA +dxF +dxF +aaH +aam +aam +aam +aam +aam +aam +aam +lYA +ahk +aap +aar +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aej +aeP +agI +aia +yaz +bYe +ajt +avj +vOy +wWz +vHO +uXj +uXj +iwJ +jVt +uyH +vHO +iwJ +uXj +uXj +rdt +wTM +vOy +ayT +aii +avj +ltK +vGk +vGk +vGk +qVM +iBt +iBt +iBt +iBt +iBt +iBt +iBt +iBt +iBt +iBt +qVM +vGk +lSD +czu +aeT +aeT +aeT +aeT +aeT +aeT +aeT +nnD +aZF +aZF +czu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aKW +ygK +aLf +aLf +aLf +aLf +heK +kam +axc +juD +twW +vHh +pvh +rgJ +nsY +hhw +yfy +ugV +vUi +bdd +vTt +kbV +xzp +vEn +wmz +wmz +wmz +bdg +aLG +aYO +bad +bdd +bdd +bDQ +bgO +vGG +vGG +bgO +xRJ +xRJ +xRw +bPO +whA +xAt +xAt +bgO +gAj +gAj +bgO +cab +bdd +bdd +bGe +bHL +buH +bdg +wLV +wLV +wLV +wLV +gKH +ldj +cab +bdd +sOt +cNX +cdI +sBL +nsY +eiN +dVs +tat +kNC +xuQ +uPW +kYv +oDx +tbK +tbK +tbK +lNy +oed +yhQ +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(178,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +lYA +adj +apk +apk +lYA +lYA +lYA +lYA +lYA +lYA +lYA +lYA +abp +ach +aar +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aej +aeQ +agK +agu +eup +bYe +ajt +avj +vOy +wWz +uwZ +wWm +jQt +nwi +sNz +uyH +uwZ +kGQ +jQt +coZ +sNz +wTM +vOy +ayT +aii +avj +ltK +wYj +jhY +fqx +qVM +iBt +iBt +iBt +iBt +iBt +iBt +iBt +iBt +iBt +iBt +qVM +azH +fQK +czu +czu +czu +czu +czu +czu +czu +czu +asM +asM +mwR +czu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aKW +jwD +aLf +uig +hhw +hhw +nsY +wpz +oEX +irT +tyb +xxm +qSK +ieu +nsY +sSe +aLf +qce +aSm +bdd +bqZ +xPR +nIW +wmz +wmz +wmz +wmz +bdg +beB +aYT +beB +beB +bdd +bqZ +bgO +vGG +vGG +bgO +xRJ +xRJ +viO +gMU +ksN +xAt +xAt +bgO +gAj +gAj +bgO +bqZ +bdd +bJz +bJz +bHT +bJz +bdg +wLV +wLV +wLV +wLV +wLV +wNT +udV +bdd +pEl +roU +oos +uVh +nsY +kzK +lFh +uzP +pVA +mzV +pML +ivz +nsY +jZO +sIx +oed +wlp +ndQ +yhQ +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(179,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +lYA +aaG +aaG +aaI +abC +abC +abC +abC +abC +abC +abC +jUW +tgS +ady +aar +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aIZ +aej +aeR +agK +agu +aej +pSL +amT +mIW +vOy +wWz +pEJ +xQm +wLy +eqD +sNz +uyH +sWW +mWW +wLy +xQm +tfH +wTM +vOy +aEK +aSv +ioX +ltK +nXF +vGk +bqG +qVM +iBt +iBt +iBt +iBt +iBt +iBt +iBt +iBt +iBt +iBt +qVM +aCX +tgS +uSL +asx +asx +asx +asx +asx +asx +asx +aLX +bbp +bbp +czu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aKW +cSK +aSm +aSm +bUc +nSN +nsY +xgS +dbn +qvC +tyb +uRM +ipe +ehR +nsY +aLf +aLf +tRc +qEW +bdd +jlj +mLb +wmz +vpt +kQU +wmz +wmz +bdg +aLG +aYO +aLG +aLG +bdg +bqZ +qMR +rwv +rwv +dRT +dqD +dqD +bUb +dRT +eWp +eWp +eWp +dRT +tXb +tXb +fOk +bqZ +bdg +buH +buH +bHL +buH +bdg +gKH +cgz +vyU +wLV +wLV +xDQ +bXc +bdd +pcO +tJV +qoY +uCh +nsY +tXT +jJk +wLG +tyb +sZH +rjV +ivz +nsY +fuY +sZF +vjD +lFF +ndM +yhQ +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(180,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +lYA +aaG +aaG +aaI +abC +abC +abC +abC +abC +abC +abC +acg +bAF +ady +aar +aar +aar +ahi +aar +aar +aar +aar +uux +aar +aar +aej +aej +agO +aid +aej +atL +akV +atL +vOy +wWz +uwZ +tyD +jQt +vfP +sNz +uyH +uwZ +tyD +jQt +vfP +sNz +wTM +vOy +atL +akV +atL +qVM +qVM +nWc +qVM +qVM +qVM +qVM +nNX +qVM +qVM +qVM +qVM +ayo +qVM +qVM +qVM +aEJ +bAF +aKB +asx +asx +asx +asx +asx +asx +asx +aLX +bbp +bbp +czu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aKW +aLf +aLf +xlD +bUc +vrB +nsY +nsY +nsY +nsY +tIp +nsY +nsY +nsY +nsY +hhw +hhw +hhw +hhw +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +hDL +aYO +aNO +aLG +bdg +bqZ +beH +vGG +vGG +beH +xRJ +xRJ +xRJ +beH +xAt +xAt +xAt +beH +gAj +gAj +beH +bqZ +bdg +buH +bHa +bHL +bIR +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bdd +bJt +bJt +bJt +bJt +nsY +nsY +nsY +nsY +goy +nsY +nsY +nsY +nsY +gZG +xMh +ril +kRu +hXS +yhQ +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(181,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +lYA +aaG +aaG +aaI +abC +abC +abC +aaJ +abC +abC +abC +act +ajS +afq +lzW +buk +fgF +bYP +lBi +acH +cwd +bYy +tOd +adT +kqf +aeU +bUE +bYe +bYe +aaO +alp +aio +baB +vOy +wWz +qxP +gxP +gxP +jgg +jZs +uyH +iRN +jgg +gxP +gxP +nMe +wTM +vOy +alp +aio +baB +aEV +bUE +bYe +nBW +bWP +tSc +spT +fHC +dHr +bYQ +cwd +lBi +qmt +ayG +saW +tMf +ajq +ajS +dGw +asx +asx +asx +aKJ +asx +asx +asx +aLX +bbp +bbp +czu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aKW +aLf +aSm +hhw +hhw +hhw +hhw +hhw +aLB +acF +heb +cqa +bBh +aMV +dRG +aMV +yiq +kLp +aMV +bBh +tCN +lDJ +tCN +tCN +yfw +tCN +bBh +aLG +aLG +aYO +aNO +aLG +bdg +bqZ +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +bqZ +bdg +buH +bHa +bHL +buH +buH +cbD +iZH +xkC +njL +njL +njL +njL +cbD +bUM +bUM +mYw +iAT +rdY +bUM +cbD +rGg +qtn +kJV +fiq +fiq +fiq +fiq +fiq +fiq +wlp +sIx +yhQ +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +"} +(182,1,1) = {" +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +lYA +lYA +lYA +lYA +lYA +lYA +lYA +lYA +lYA +lYA +lYA +aey +azY +azY +adi +atC +abx +acC +abx +abx +abx +adi +abx +acC +atC +abg +abg +abg +abg +acC +iWN +amO +dLE +vOy +woh +vgO +vgO +vgO +vgO +vgO +utX +vgO +vgO +vgO +vgO +vgO +xAe +vOy +aIS +alq +wWk +chu +aZE +aZE +aZE +aZE +xwG +chu +aZE +cgI +abt +aZE +aZE +chu +aZE +xwG +cgI +agl +agN +ahH +czu +czu +czu +czu +czu +czu +czu +czu +czu +czu +czu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aKW +aLa +aSm +hhw +nHF +nHF +nHF +cmE +aLB +nyG +iDN +tit +nFV +tBL +tBL +tBL +tBL +tBL +tBL +mRS +tBL +tBL +tBL +tBL +tBL +tBL +luz +tzf +tBL +fau +aNO +aLG +bdg +bqZ +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +bqZ +bdg +buH +bHa +wwu +buI +bFu +cbE +buI +buI +buI +buI +buI +buI +rpd +buI +buI +buI +buI +buI +buI +rpd +fkO +bHY +kro +bGb +uaa +uaa +uaa +oFM +fiq +fYc +uqH +yhQ +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 +lYA +bRK +aao +aiv +aaW +pjb +abM +iCe +cLp +cZZ +ccY +aJs +cdu +aaw +abl +jUs +abu +xaF +aaL +aJs +bYe +bYe +aaE +afD +kaA +anh +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +vOy +xFw +iTK +anh +aFF +cjo +bYe +kSN +aTQ +uGo +abl +wba +abu +aaw +wbj +aJs +cdu +ayH +uGo +eoT +aGR +pjb +aKC +xCX +vGk +hoX +czu +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 +aKW +aLf +aSm +hhw +nHF +nHF +nHF +nHF +aLB +csl +gjn +jJs +bBh +aMM +aMM +aNG +bga +taA +aSr +bBh +gyC +wbh +bsX +bAa +bKE +eBj +bBh +aLG +aNO +aYT +aNO +bad +bdd +bDQ +mng +bCu +bCu +bCu +bCu +wCI +moQ +flW +fvf +rgW +vUe +vUe +vUe +vUe +kuw +cab +bdd +bGe +bHa +bHT +bHa +buH +cbD +bMt +bMt +bOv +bOX +jLK +vUU +cbD +ciU +rOj +bUd +bUF +clR +clR +cbD +dQs +sFh +guc +bGb +uaa +uaa +uaa +uaa +fiq +wlp +vfJ +yhQ +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 +lYA +bTI +aap +aar +aar +aar +aar +aar +aar +aar +acG +abg +caF +aar +aar +tiM +aar +aar +ael +ael +agQ +aih +ael +tnl +amO +anc +atC +apJ +apJ +aMl +apJ +apJ +apJ +apJ +apJ +apJ +apJ +aMl +apJ +apJ +atC +cnv +amO +lqJ +qVM +qVM +xeG +qVM +qVM +qVM +xeG +qVM +qVM +qVM +acG +abg +caF +qVM +qVM +qVM +qVM +qVM +qVM +qVM +csz +ofs +czu +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 +aKW +aLf +aSm +hhw +nHF +nHF +nHF +nHF +jUx +aLG +qmL +rZz +jeb +jeb +jeb +uIT +lKb +jeb +jeb +jeb +jeb +jeb +uIT +mWy +jeb +jeb +jeb +aLG +aNO +aYT +aNO +aLG +bdg +bqZ +udi +ddk +dEQ +hgg +ddk +cQc +nlB +ugu +oQH +wHo +uWc +wka +tTp +veu +mDW +bqZ +bdg +buH +bHa +bHT +bHa +buH +vra +vra +vra +mDT +cgl +vra +vra +vra +vra +vra +mDT +rJx +vra +vra +vra +jJe +bHY +buH +vfo +uaa +uaa +uaa +uaa +fiq +scI +gFG +yhQ +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 +lYA +qsd +aao +aao +aar +aIZ +aIZ +aIZ +aLC +aar +bWs +abg +caF +aar +nuY +sTB +uaZ +bUA +ael +afE +agT +agT +ael +cZm +akU +abg +atC +abg +abx +abx +abx +abg +abx +abx +abx +abg +abx +abx +abx +avD +atC +abg +amO +nQx +qVM +usi +csz +usi +qVM +xfh +vGk +vGk +adI +qVM +acG +abg +caF +qVM +iBt +iBt +iBt +fgo +qVM +aPX +vGk +vGk +czu +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 +aKW +aSm +aLf +hhw +nHF +nHF +nHF +nHF +aLB +dEC +aNO +qHl +jeb +vlX +aNx +qGc +jhD +jeb +osc +cMV +osc +jeb +aIq +xHp +hmF +vlX +jeb +aNn +aNO +aYT +aNO +aLG +bdg +bqZ +udi +ddk +hgg +ddk +dNM +cQc +nlB +ugu +oQH +wHo +uWc +duw +uWc +fIZ +mDW +bqZ +bdg +buH +bHa +bHT +bHa +deH +vra +asX +chf +wDJ +tJz +vra +ukV +oNj +ukV +vra +gll +lpt +mgF +asX +vra +tfw +bHY +sVf +bGb +uaa +uaa +uaa +uaa +fiq +scI +scg +yhQ +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 +lYA +lYA +aap +aap +aar +aIZ +aIZ +aIZ +aIZ +aar +acO +aJs +cbN +aar +sTB +aap +aao +vFb +ael +afH +agV +ain +ael +eGl +aii +anf +atC +apK +anf +apK +arf +auG +azb +azb +azb +auG +aDp +apK +cbr +apK +atC +cbr +amO +uGt +qVM +qVM +vGk +har +qVM +xHG +csz +vGk +xHG +qVM +aJd +aJs +cbN +qVM +iBt +iBt +iBt +iBt +qVM +pzQ +csz +czu +czu +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 +aKW +vPr +iiP +hhw +nHF +nHF +nHF +nHF +aLB +udF +aNO +nLZ +jeb +obE +tdE +qGc +rth +rth +oef +oef +oef +nny +rth +xHp +xwl +rHf +jeb +jgU +aNO +aYT +aNO +aLG +bdg +bqZ +ngI +bDP +bDP +bDP +bDP +nBw +moQ +hGO +fvf +uNM +xAt +xAt +xAt +xAt +nNH +bqZ +bdg +buH +bHa +bHT +bHa +bKc +vra +bMq +qUq +wDJ +nyQ +nyQ +xJH +xJH +xJH +miV +nyQ +lpt +qYQ +ptj +vra +mEb +bHY +haT +bGb +uaa +uaa +uaa +uaa +fiq +wlp +sIx +yhQ +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 +lYA +aao +aao +aar +aIZ +aIZ +aIZ +aIZ +aba +pNQ +abx +hTy +aar +teB +aao +aao +wta +ael +afI +agY +oxi +xfm +als +ani +anc +mOi +mOi +mOi +mOi +mOi +mOi +auc +auc +hyE +aqU +aHq +aHq +aHq +aHq +aHq +iWN +ajt +kGI +aPm +qVM +vGk +csz +xCX +vGk +vGk +vGk +csz +qVM +jSY +abx +hLO +ceD +iBt +iBt +iBt +iBt +qVM +buD +csz +czu +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 +aKW +aSm +eIA +hhw +hhw +hhw +hhw +hhw +aLB +dzF +dzF +dac +jeb +vlX +thA +gAA +gAA +bfn +oMH +coB +rSj +bfn +gAA +gAA +fFD +vlX +jeb +kEb +aNO +aYT +aNO +aLG +bdg +bqZ +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +beH +bqZ +bdg +buH +bHa +bHT +bHa +rKy +vra +asX +drj +cgo +cgo +hyk +qyW +khd +kaI +hyk +cgo +cgo +hQc +asX +vra +cwQ +vtB +tQo +bGb +fiq +fiq +fiq +fiq +fiq +wlp +bxX +yhQ +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 +lYA +aao +aap +aar +aIZ +aIZ +aIZ +aIZ +aar +acP +bUE +qFQ +aar +aao +aap +aao +sTB +ael +afJ +agY +aiq +ajJ +aEX +ajt +aow +mOi +rCw +rCw +lin +oJR +tFe +asD +xQV +avK +aqU +aCZ +dgg +pud +uPd +aHq +sDC +ajt +kGI +ejp +qVM +vGk +hoX +qVM +xHG +csz +vGk +csz +qVM +sah +bUE +cbO +qVM +iBt +iBt +iBt +iBt +qVM +oLw +vGk +czu +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 +aKW +uDB +aLf +hhw +nHF +nHF +nHF +cmE +aLB +enx +aQt +oQj +jeb +vlX +tdE +qGc +rth +rth +hNM +vxX +uBO +rth +rth +xHp +xwl +vlX +jeb +pGM +aNO +aYT +aNO +bad +bdd +bDQ +lnm +iLh +iLh +iLh +iLh +grR +moQ +ovp +fvf +rAb +sCA +sCA +sCA +sCA +bVw +cab +bdd +bGe +bHa +bHT +bHa +bIR +vra +asX +qUq +wDJ +nyQ +lrT +bqW +xaC +qeY +nyQ +nyQ +lpt +qYQ +asX +vra +ojR +tki +lQQ +bGb +uaa +uaa +uaa +oFM +fiq +wlp +sIx +yhQ +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 +lYA +aap +cWA +aar +aIZ +aIZ +aIZ +aIZ +aar +acG +abx +caF +aar +aap +aap +aao +sTB +ael +afK +ahc +air +ael +isW +ajt +ali +mOi +wCT +sIf +isC +isC +tFe +xQV +xQV +rNF +aqU +qjF +oqv +iqd +rUy +cnS +iWN +ajt +nYv +qVM +qVM +vGk +pzQ +qVM +usi +vzl +vGk +csz +qVM +acG +abx +caF +qVM +iBt +iBt +iBt +iBt +qVM +vGk +csz +czu +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 +aKW +aSm +aLf +hhw +nHF +nHF +nHF +nHF +aLB +ewo +aNO +jLv +jeb +obE +thA +qGc +rth +rth +rth +aTW +aTW +rth +rth +xHp +diJ +rHf +jeb +aLG +aNO +aYT +aNO +aLG +bCx +bqZ +cNf +dll +dll +lRs +dll +rJu +nlB +ugu +oQH +mnI +sJC +vSK +qnC +nuK +dVe +bqZ +bCx +buH +bHa +rrV +bHa +buH +vra +bMq +drj +wDJ +nyQ +nyQ +nyQ +obQ +obQ +nyQ +nyQ +lpt +eBV +ptj +vra +fsH +bHY +pBn +bGb +uaa +uaa +uaa +uaa +fiq +scI +oed +yhQ +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 +lYA +aap +amN +aar +aar +aar +aar +aar +aar +oPD +abx +lCz +aar +tAV +sTB +uvS +wKn +ael +afL +ahe +aij +ael +abg +akU +abg +mOi +kbH +kbH +pgH +jDV +tFe +xVc +xQV +eYz +aqU +gjB +wDy +aGN +dxv +cnS +cnv +ajt +bYe +xCX +csz +csz +dWm +qVM +qVM +qVM +xeG +qVM +qVM +oPD +abx +lCz +qVM +qVM +qVM +qVM +qVM +qVM +csz +csz +czu +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aKW +aKW +aKW +aKW +aKW +aKW +aSm +aSm +hhw +nHF +nHF +nHF +nHF +cmC +aLG +aNO +uBw +jeb +vlX +tdE +qGc +rth +rth +tPI +tPI +iXT +rth +rth +xHp +xwl +vlX +jeb +aLG +aNO +aYV +bai +bbg +bCy +bDS +cNf +dll +qSE +nff +dll +rJu +nlB +ugu +oQH +mnI +nMp +qnC +qnC +qnC +dVe +cac +bCy +bzK +bHb +bHV +bHa +rbX +vra +asX +qUq +wDJ +nyQ +nyQ +pHA +pHA +nyQ +nyQ +nyQ +lpt +qYQ +asX +vra +pJJ +bHY +buH +cnd +uaa +uaa +uaa +uaa +fiq +suT +oed +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +aaa +aab +aaa +aaa +"} +(191,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +lYA +wFm +abe +aar +aIZ +aIZ +aIZ +aLC +aar +acG +abx +caF +aar +tiM +aar +aar +aar +adO +adO +adO +adO +adO +lwm +akU +nQx +mOi +mOi +mOi +mOi +mOi +mOi +asF +asG +iyH +aqU +jVE +nTs +pje +pje +cnT +xvh +fNC +cKY +qVM +qVM +qVM +qVM +qVM +xfh +xWF +vGk +yji +qVM +acG +abx +caF +qVM +iBt +iBt +iBt +fgo +qVM +lJg +csz +czu +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aKW +qxA +aSm +aSm +aSm +jiX +aSm +bPV +hhw +nHF +nHF +nHF +nHF +aLB +fTU +bbO +cmg +jeb +jeb +hfa +jwK +wnY +cLC +eGh +rtA +uKv +nFK +lEO +xWd +oSL +jeb +jeb +aLG +aNO +aYW +sLE +bbh +bdd +bDT +tHv +xRJ +xRJ +xRJ +xRJ +tSB +moQ +caO +fvf +vrW +iXb +iXb +iXb +iXb +pzV +cad +bdd +oLT +iEb +bHW +bHa +buH +vra +vra +eUh +jTI +lzq +nyQ +nhx +eiq +teu +wXH +xBQ +mSU +wVy +vra +vra +cmd +cmh +wAR +aLB +uaa +uaa +uaa +uaa +fiq +scI +oed +sow +sIx +leh +vhI +tVB +yhQ +aaa +aab +aaa +aaa +"} +(192,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +lYA +aao +ahk +aar +aIZ +aIZ +aIZ +aIZ +aar +acO +aJs +arJ +aar +aao +aao +uGz +uGz +adO +afM +fpR +ahf +adO +wUz +aii +abg +aqU +sdl +mLE +bUx +mLE +tmK +avK +aug +hKU +aqU +lyE +rsO +aGN +rbB +cnS +cbr +ajt +anc +aUH +aXx +jKI +aXx +qVM +usi +csz +vGk +csz +qVM +acO +aJs +arJ +qVM +iBt +iBt +iBt +iBt +qVM +hkx +vGk +czu +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aKW +xxe +aLf +aLf +aLf +aLf +xPE +bPT +hhw +nHF +nHF +nHF +nHF +aLB +ahj +ahj +ahj +jeb +tkN +qHg +gAA +beP +bfn +pkz +qfh +ipE +bfn +moI +gAA +cGV +tkN +jeb +aWM +aNO +aYX +gjn +bbi +bdd +bDU +bqZ +bqZ +bqZ +kFs +bqZ +bqZ +bqZ +kFs +bqZ +bqZ +bqZ +kFs +bqZ +bqZ +bqZ +cae +bdd +bGg +bHd +bHX +bHa +buH +vra +gNq +hXb +cgo +fwY +hyk +nNV +hyk +mBc +hyk +fwY +cgo +skF +gNq +vra +ajX +ajX +ajX +aLB +uaa +uaa +uaa +uaa +fiq +wUS +tbK +sVi +tbK +tbK +bfc +oed +yhQ +aaa +aab +aaa +aaa +"} +(193,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +lYA +aap +eGF +aar +aIZ +aIZ +aIZ +aIZ +bWh +jSY +abx +hTy +aar +wFm +tQE +aao +sTB +adO +afN +ahh +aiw +ahG +bYe +ajt +abg +aqU +xbN +gfE +gfE +kpc +aqU +gjw +cnp +avM +aqU +wmK +liJ +pTj +cnq +cnS +iWN +aii +abg +aUH +oyE +mQC +mQC +qVM +vGk +csz +vGk +csz +qVM +jSY +abx +hLO +cix +iBt +iBt +iBt +iBt +qVM +lSD +vGk +czu +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aKW +aSm +aLf +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +wdb +ahj +ahj +jeb +aMx +qHg +qGc +hxe +aPf +rth +rth +rth +rth +hxe +xHp +cGV +nBa +jeb +beB +beB +aYW +bzV +cBA +bdd +beQ +beQ +beQ +beQ +bdd +bdd +hjk +bOJ +bdd +hjk +bOJ +bdd +bdd +beQ +beQ +beQ +beQ +bdd +bRQ +cbS +bHW +bJz +bJz +vra +bMu +hXb +wDJ +ivs +nyQ +nyQ +pHA +nyQ +nyQ +ivs +lpt +skF +pQF +vra +ajX +ajX +hBC +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +scI +sIx +yhQ +aaa +aab +aaa +aaa +"} +(194,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +lYA +cIU +aao +aar +aIZ +aIZ +aIZ +aIZ +aar +acP +bUE +qFQ +aar +aap +aap +aao +fZF +adO +afO +ahh +aiw +adO +aEp +xTt +aEp +lmK +lmK +lmK +lmK +lmK +ntj +ntj +ntj +ntj +ntj +aHq +cnH +kzk +cnR +aHq +aEp +xTt +aEp +aUH +sIA +gSj +aXA +qVM +vGk +csz +vGk +xHG +qVM +sah +bUE +cbO +qVM +iBt +iBt +iBt +iBt +qVM +toE +ofs +czu +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aKW +bhC +aSm +aKW +bbB +bbB +arn +ajO +ajO +ajO +clC +ajO +ajO +cno +ahj +ahj +ahj +jeb +iow +aMO +qGc +hxe +rth +hXd +guW +aQM +rth +hxe +xHp +aUi +iow +jeb +aLG +aNO +aYY +bal +bbj +bCz +bDV +bDV +bDV +bDV +bDV +bNA +bKA +bdj +oMe +bdj +bKA +bNA +bDV +bDV +bDV +bDV +bDV +bCz +buH +iEb +bHW +bHa +vMx +vra +wTw +bNE +wDJ +ivs +nyQ +gZr +vWB +bSK +nyQ +ivs +bUi +bUT +wTw +vra +ajX +ajX +ajX +amS +aoc +aoc +uQU +aoc +aoc +aoc +aAv +eZi +eZi +yhQ +wlp +ftl +yhQ +aaa +aab +aaa +aaa +"} +(195,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +lYA +aap +aap +aar +aIZ +aIZ +aIZ +aIZ +aar +aJa +abg +ccf +aar +tDA +aao +aap +fZF +adO +jkj +ahh +aiw +adO +uLu +anC +aiC +ioU +nQh +qPE +xqD +lPz +iFp +nHh +iFp +iFp +aHq +cnE +liJ +peT +cbn +aHq +uLu +aQo +aTS +aUd +ckK +iKM +aHM +qVM +vGk +csz +yji +uso +qVM +aJa +abg +ccf +qVM +iBt +iBt +iBt +iBt +qVM +gKS +csz +czu +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aKW +aLf +aLF +aKW +bbB +bbB +arn +ajO +ajO +ajO +ajO +ajO +ajO +cno +ahj +ahj +ahj +aLT +aLT +aLT +aLT +ozq +ueZ +aPK +aLT +aQN +wsR +dAq +aQL +aQL +aQL +aQL +pGM +aNO +aYW +sLE +aLG +bCA +bCA +bdj +bCA +bCA +bdj +bCA +bCA +bdj +bCA +bdj +bCA +bCA +bdj +bCA +bCA +bdj +bCA +bCA +buH +iEb +bHW +bHa +bIR +bJC +bJC +bJC +bJC +cib +xvE +bQZ +bJC +bSL +moM +rXS +bSJ +bSJ +bSJ +bSJ +ajX +ajX +ajX +amS +aoc +aoc +aoc +aoc +aoc +aoc +aAv +eZi +eZi +yhQ +scI +sIx +yhQ +aaa +aab +aaa +aaa +"} +(196,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +lYA +aao +aao +aar +aar +aar +aar +aar +aar +eQi +atL +kOG +aar +aar +aar +tiM +aar +aar +lFt +ahh +aiw +adO +aSz +anG +aiC +ioU +lzt +wTd +cmK +lFm +kXu +kXu +kXu +kXu +kXu +jHC +liJ +qmP +uoH +aHq +aiC +anC +aiC +aUH +dbv +lII +aWc +qVM +xeG +qVM +qVM +qVM +qVM +eQi +atL +pef +qVM +qVM +qVM +qVM +qVM +qVM +vGk +vGk +czu +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aKW +aLf +bPS +aKW +bbB +bbB +arn +ajO +ajO +ajO +ajO +ajO +ajO +cno +ahj +ahj +ahj +aLT +kaB +vVb +aLT +aOy +aOz +mKb +aLT +vbM +aRP +aSH +aQL +mJP +bSn +aQL +vHs +ehH +aYZ +sLE +bAV +bCB +bCB +bCB +bCB +bCB +bCB +bCB +bCB +bri +bdj +bri +bCB +bCB +bCB +bCB +bCB +bCB +bCB +bCB +cbv +iEb +bHY +mru +syP +bJC +jSp +lAQ +bJC +bOZ +bPa +vhR +bJC +mWQ +bTy +bUf +bSJ +hII +iJS +bSJ +ajX +ajX +ajX +amS +aoc +aoc +aoc +aoc +aoc +aoc +aAv +eZi +eZi +yhQ +oYb +fxz +yhQ +aaa +aab +aaa +aaa +"} +(197,1,1) = {" +aaa +aaa +aab +aaa +aad +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +lYA +aao +aap +gXh +aao +aap +aap +ahg +aiv +lMM +abg +lCS +aiv +ahg +aap +aap +aao +rfg +aiw +ahh +aiw +nph +aiC +ajF +aiC +ioU +mSz +nIG +cSk +ene +aGN +aGN +suy +uaV +uaV +nSS +iKf +aGN +qrv +aHq +cgJ +ajG +aiC +aGz +ckd +mQC +aHM +xCX +vGk +vGk +aip +vzl +xCX +bWC +abg +sSR +xCX +weU +csz +gYS +vGk +vGk +csz +csz +czu +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aKW +rJb +yaG +aKW +bbC +aan +aan +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +hhw +aLT +sXt +aMQ +aNI +bfy +aMz +sHY +aLT +msm +aRT +xMR +aTw +aUj +kLk +aQL +mTn +aiy +aYZ +sLE +bbk +bdk +bdk +bgR +bwc +eqP +pUp +bdk +bdk +brj +bQQ +fSl +bdk +bdk +pUp +eqP +myJ +eKI +bdk +bdk +bGh +iEb +bHY +njy +hkE +bJC +ojF +bNG +bOx +chR +bJD +mzg +bJC +ycZ +bTA +cIr +gHo +bUU +uDW +bSJ +bSJ +fiq +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +tGq +tGq +jjT +yhQ +trD +sIx +yhQ +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 +aar +aar +tiM +aar +aar +aar +aar +aar +bWE +aJs +mXU +aar +aar +aar +aar +aap +aar +afP +ahh +aiw +nph +aiC +anG +aiC +ioU +ioU +ioU +ioU +nmV +oeM +oeM +pUd +oeM +eed +udZ +aGN +aGN +pSU +aHq +czM +ajG +aiC +aGz +drk +mQC +mkG +qVM +oLw +qVM +qVM +qVM +qVM +bWE +aJs +mXU +qVM +qVM +qVM +qVM +qVM +xeG +qVM +qVM +uOi +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +aag +ajZ +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aKW +aLf +aaz +aKW +bdY +bdY +bdY +aaF +aaF +aaF +aaF +aaF +aaF +aaF +aKW +hhw +aLT +aLT +aLT +aLT +aLT +tNR +aMP +eAg +aLT +qoJ +aRZ +aSI +aQL +aQL +aQL +aQL +aQL +uQn +aYZ +sLE +bbl +bdl +bdl +bdl +bdl +bdl +bdl +bGo +bGo +bPB +pCr +bRR +cpK +cpK +bdl +bdl +bdl +bdl +bdl +bdl +bGi +iEb +bHY +oyy +bJC +bJC +bJC +bJC +bJC +mjS +bNF +szM +bJC +qrc +bTE +syH +bSJ +bSJ +bSJ +bSJ +bSJ +fiq +yhQ +anm +anm +anm +anm +anm +anm +anm +pfp +pfp +pfp +yhQ +scI +oed +yhQ +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 +aar +aap +aar +afQ +aiw +aiw +nph +aiC +anG +aiC +ioU +lPO +vJg +ioU +vQf +oeM +oeM +eed +oeM +eed +vQq +eEo +aGN +rub +aHq +cES +ajG +aiC +aGz +eqB +obC +hcf +qVM +lau +qVM +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 +aKW +aSm +aLf +aKW +bdY +bdY +bdY +aaF +aaF +aaF +aaF +aaF +aaF +aaF +aKW +hhw +aLT +bbY +bdr +bdz +bdr +bft +bgU +bhG +aLT +bjs +blA +bno +bpC +brn +aRT +buM +aQL +aLG +aYZ +sLE +bbl +bdl +bEr +bEs +bIs +bdm +rbY +gwD +bOK +bPD +bYa +bPD +jOk +bNB +mCo +xGo +bYu +nmK +caf +bdl +bGj +iEb +bHY +buH +bJC +cdT +cfo +cgq +cfo +chM +cjd +cjA +bJC +ckr +ckQ +clh +clg +clI +clg +clW +bSJ +fiq +yhQ +anm +anm +anm +anm +anm +anm +anm +pfp +pfp +pfp +yhQ +wlp +oed +yhQ +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 +aar +awJ +aar +ahJ +ahJ +ahJ +adO +aiC +ajF +aiC +ioU +dnS +viN +bAu +nVB +eHY +oeM +eed +oeM +eed +hpz +aRi +aGN +qrv +aHq +aOS +ajG +aiC +aUH +aGz +aGz +aGz +qVM +hoX +qVM +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 +aKW +bhC +aSm +aKW +bdY +bdY +bdY +aaF +aaF +aaF +aaF +aaF +aaF +aaF +aKW +hhw +aLT +bca +aMC +aLT +avv +bfu +rGj +aQT +aLT +aTv +blB +bnp +aTx +aQL +aUY +buN +aQL +aLG +aYZ +sLE +bbl +bdl +bDX +bCA +bCA +bdj +rbY +bEc +bKA +bCA +bQS +bCA +bKA +bEc +mCo +tjl +rIH +tUh +cag +bdl +bGk +iEb +bHY +buH +bJC +cdU +bMy +bJC +cog +chN +mzg +cdP +bJC +dpO +ckX +cli +coj +bSJ +bVo +clX +bSJ +fiq +yhQ +anm +anm +anm +anm +anm +anm +anm +pfp +pfp +pfp +yhQ +scI +uqH +yhQ +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 +aeC +aeC +aeC +aeC +vOh +gUX +ily +aar +tiM +aar +aWd +aWd +aWd +pji +aiC +ajF +aiC +ioU +pPM +qKz +ioU +mGu +fXx +fXx +kXf +huO +iLO +mtN +xNv +iLO +bUa +aHq +aSz +anC +aiC +pji +aWd +aWd +aWd +qVM +xeG +qVM +cBb +xVS +lJY +vcE +vcE +vcE +vcE +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 +aKW +aSm +aLf +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +hhw +aLT +aLT +aLT +aLT +aLT +bfx +rGj +aQT +aLT +aTv +blB +kiU +aQL +aQL +aQL +aQL +aQL +pGM +aYZ +sLE +bbm +bdl +bDY +bCA +bCA +nLt +gmb +bNQ +bNQ +bNQ +bNQ +bNQ +bNQ +bNQ +nXU +bKA +jac +bCA +cah +bdl +bGl +iEb +bHY +bIR +bJC +bJC +bJC +bJC +bJC +chO +mzg +cdP +bJC +dpO +ckX +clj +bSJ +bSJ +bSJ +bSJ +bSJ +fiq +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +wlp +sIx +yhQ +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 +ayc +aOE +aOE +aOE +ciu +aeC +aeC +ajs +aeC +aGD +aWd +eTO +anR +anR +lNl +aFW +aSy +anH +aoB +alL +alL +alL +jvY +jvY +jvY +jvY +jvY +jvY +jvY +jvY +jvY +alL +alL +alL +aSy +aoS +dZd +aFW +aIe +anR +anR +uWC +aHQ +apj +vcE +kUV +vcE +vcE +eCo +iry +iry +iry +sYw +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 +aKW +aSm +aLf +aLf +ycV +aLf +aSm +bbx +izU +gFs +yaG +bPV +aaz +bPT +eko +bPV +aLT +bco +aMB +bdA +aLT +ial +rGj +aPl +aLT +aPn +aRU +bnr +aQL +brr +aUZ +buO +aQL +aLG +aYZ +sLE +jJs +bdl +bDZ +bdj +bri +bLX +bdl +cEB +bNP +bmD +bNP +bmD +bNP +bmD +mYv +doP +jac +isS +cai +bdl +bII +iEb +bHY +buH +bJC +cdV +bMx +cgr +bJC +raK +mzg +bgW +bJC +ckR +ckX +iyS +bSJ +clJ +bVn +clY +bSJ +fiq +iFm +anb +anb +anb +kKX +uvs +ixP +fiq +kUt +hGZ +tbK +tbK +sQU +ebY +yhQ +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 +aeC +ajs +aeC +wXh +ayn +atr +aeA +aex +ciw +wXh +aeC +ydz +ayb +aGC +tSw +agJ +aXE +aXE +agJ +aFV +hPK +aXE +akH +jvY +jvY +jvY +jvY +apW +aqV +asH +aui +avN +aqV +axV +jvY +jvY +jvY +jvY +aSB +iWd +elA +aFV +aGC +aXE +aXE +aGC +rph +agJ +sSl +kkx +vcE +kpo +iMx +tGi +lJY +bXe +eyG +kpo +vcE +kUV +vcE +rRq +uOi +aag +aag +aag +aag +aag +aag +aag +aag +aah +aah +aah +aah +afm +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aKW +aLF +bbx +bPS +ktP +aSm +aLf +aSm +ecM +enf +ecM +aSm +aLf +bbx +eko +lLV +aLT +bco +bdr +bdA +aLT +bfw +rGj +aQT +aLT +aTv +blB +vJV +aQL +brr +aRT +buO +aQL +aLG +aYZ +sLE +bkY +bdl +lOr +lOr +iwI +lOr +bdl +bEt +bNP +bmD +bNP +bmD +bNP +byu +obo +tiE +bYv +tiE +tiE +bdl +rqw +iEb +bHY +buH +bJC +cdV +cfo +cgr +bJC +chQ +mzg +cdP +bJC +dpO +ckX +clk +bSJ +clJ +clg +clY +bSJ +fiq +wUS +tbK +tbK +bfc +ant +glM +mUn +fiq +suT +oed +oed +oed +uim +qNy +yhQ +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 +acE +aeA +ajk +aeA +asY +ayQ +atr +bbX +atr +ciD +ngl +aeA +ajk +aeA +aIe +aWd +kYP +aHQ +aHQ +apj +aFW +rFY +aVY +akI +jvY +arg +atf +jvY +apX +aqb +asI +aqb +avO +aqb +axW +jvY +aMm +aOq +jvY +aDx +dsk +mLU +aFW +aGD +aHQ +aHQ +lKk +kKb +lNl +lJY +xVS +lJY +ttS +wEO +faO +haM +bXe +deg +wLu +lJY +xVS +lJY +uGa +uyC +aah +aah +aah +aah +aah +aah +aah +afm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aKQ +aaa +aaa +aab +aKW +aKW +aKW +aKW +aKW +uDB +aLf +aSm +uGw +uJl +ihn +aSm +aLf +aSm +aSm +eko +aLT +bcZ +bdr +bdC +beR +bfy +rGj +aQT +aLT +aTv +blB +bnt +bpG +brs +aRT +bew +aQL +beB +aYW +bzV +beB +mCo +xfw +lBF +bKA +sbM +pWA +pXV +bNP +bmD +bNP +bmD +bNP +bmD +lyk +bOR +eHa +opj +xAB +mCo +bJz +cbS +bHW +bJz +bJC +bKX +cfo +cgs +chk +chR +mzg +cdP +bJC +dpO +ckX +cll +clE +clK +clg +bVy +bSJ +fiq +fiq +fiq +fiq +lra +ujA +fiq +fiq +fiq +jbb +uNW +yhQ +yhQ +yhQ +yhQ +yhQ +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 +acT +aeA +ajk +aeA +atp +ayR +atr +eGb +atr +cji +nqV +aeA +ajk +ily +psm +jFX +psm +blb +aWd +aXT +pji +aEp +aEp +akJ +jvY +arh +atm +jvY +apY +aqb +asJ +aqb +avP +aqb +axX +jvY +nSG +aOs +jvY +aEp +ixC +aEp +pji +jFg +aWd +pCD +vuv +orm +vuv +cBb +xVS +lJY +hlX +umh +bXe +lxT +tGi +pfH +wlF +lJY +xVS +lJY +mIA +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 +aKW +uAs +aLf +aSm +kOf +oIn +kOf +aSm +aLf +aSm +aSm +aLf +aLT +bco +bdr +bdA +aLT +bfD +aPj +aPl +aLT +aPn +blB +sNb +aQL +brr +aRT +buO +aQL +aXS +aYZ +kfP +tBF +bmv +bEg +bGU +bGU +bKz +snw +qsC +bNL +bNL +bNL +bNL +bNL +bNL +bWL +bXH +bYw +nDM +bWL +sSa +qLp +lYi +bIb +mHm +bJC +cdV +cfo +cgr +bJC +foL +mzg +bgW +bJC +ckR +ckX +loS +bSJ +clJ +clg +clY +bSJ +iGK +tbK +tbK +tbK +sQU +wUS +hGZ +tbK +tbK +sQU +sIx +yhQ +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 +umR +ajs +aeC +wXh +ayn +atr +aeA +bXz +ciw +wXh +aeC +ajs +qon +psm +tNT +aep +ggQ +ggQ +aME +aep +aiB +ajN +akK +jvY +ari +aoP +jvY +apZ +aqb +asK +aqb +avQ +aqb +aqa +axo +atm +aOr +jvY +aiB +aWf +aiB +aep +aME +ggQ +aME +aep +vSg +vuv +dHe +kUV +vcE +kpo +iMx +bXe +lJY +mzF +eyG +kpo +vcE +kUV +pPF +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 +aKW +bPU +bPS +bbx +moh +iIY +bPW +xlD +aLf +aSm +aSm +aLf +aLT +bco +aMC +bdA +aLT +bfx +bgY +aQT +aLT +aTv +blB +nCp +aQL +brr +aUY +buO +aQL +aLG +aYZ +sLE +jJs +mCo +bEh +bNQ +bNQ +bNQ +pjG +boy +bpQ +bpQ +bsJ +bpQ +bpQ +bxf +bZr +bKA +bKA +cXR +cal +mCo +pJJ +iEb +bHY +buH +bJC +cdV +bMy +cgr +bJC +chP +mzg +cdP +bJC +dpO +ckX +cln +bSJ +clJ +bVo +clY +bSJ +pNG +oed +oed +oed +oed +sIx +mOU +sIx +oed +oed +uFt +yhQ +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 +azk +aOU +biL +biL +cmF +aeC +aeC +ajs +aeC +psm +xlX +aep +afj +afk +agM +aep +alG +aYj +aoD +jvY +arj +atm +jvY +xRH +aqb +aqb +aqb +aqb +aqb +aqb +bzD +atm +aOs +jvY +alG +anG +apd +aep +aHS +afk +sHo +aep +sFR +vuv +vcE +kUV +vcE +vcE +shs +kAU +kAU +kAU +aYE +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 +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +aKW +ycV +ktP +aLT +aLT +aLT +aLT +aLT +hQW +bgY +aQT +aLT +aTv +blB +qhU +aQL +aQL +aQL +aQL +aQL +aLG +aYZ +sLE +qFb +bdl +bEi +bZr +bmD +ngw +pjG +boz +bpR +bpR +bpR +bpR +bpR +bxg +bZr +bKA +bKA +cir +bdl +bdl +lgX +iEb +bHY +buH +bJC +bJC +bJC +bJC +bJC +uUo +mzg +cdP +bJC +dpO +ckX +sUO +bSJ +bSJ +bSJ +bSJ +bSJ +scI +oed +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +yhQ +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 +aeC +aeC +aeC +aeC +aeA +ajk +aeA +psm +xlX +aep +afk +afk +afk +aep +alG +aYj +aoD +jvY +ark +atm +jvY +bhf +aqb +asL +aqb +avR +aqb +kTv +axo +atm +thv +jvY +alG +anG +apd +aep +afk +aHl +afk +aep +kMq +vuv +lJY +itR +kKR +vcE +vcE +vcE +vcE +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 +wVb +eFH +hlz +aLT +bcE +aMB +bdD +aLT +bfz +bgY +aPl +aLT +aPn +blB +bnu +aQL +brt +aUZ +buS +aQL +aLG +aYZ +sLE +jJs +bdl +brp +bZr +bmD +xId +pjG +boz +bpR +bpR +bpR +bpR +bpR +bxg +bZr +bNQ +bNQ +bNQ +utx +hMs +cbw +iEb +bHY +buH +bJC +cdX +bMx +cgt +bJC +chS +bQA +bgW +bJC +ckR +ckX +meu +bSJ +clL +bVn +clZ +bSJ +dGz +cAH +vTK +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 +psm +qWT +aep +aep +aep +aep +aep +alJ +aYj +aoD +jvY +alL +atk +jvY +jvY +axo +axo +axo +axo +axo +jvY +jvY +aAy +alL +jvY +alG +anG +apd +aep +aep +aep +aep +aep +cBi +vuv +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +wVb +iDm +hlz +aLT +bcE +bdr +bdD +aLT +rrq +bgY +aQT +aLT +aTv +blB +mtr +aQL +brt +bpC +buS +aQL +aNn +aYZ +sLE +jJs +bdl +bEl +wup +bmD +hBz +pjG +boA +bpR +bpR +bsK +bpR +bpR +bxh +bZr +krN +krN +krN +pFQ +can +buH +iEb +bHY +buH +bJC +cdX +cfo +cgt +bJC +chQ +cjf +cdP +bJC +dpO +ckX +xoe +bSJ +clL +clg +clZ +bSJ +xRE +ebO +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +psm +xlX +egS +aep +aep +aep +aep +alG +aYj +aoD +jvY +arl +atm +alL +awv +axu +azc +aAZ +aDa +aFh +aHr +alL +aMo +aOt +jvY +alG +anG +apf +oIB +oIB +oIB +oIB +oIB +sFR +vuv +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +wVb +eFH +hlz +aLT +abS +bdr +bdC +beS +bfy +bgY +aQT +aLT +aTv +blB +bnt +bpH +brs +bpC +abT +aQL +beB +aYW +bzV +beB +bdl +buz +bZr +bmD +dmE +pjG +boz +bpR +bpR +bpR +bpR +bpR +bxg +bZr +ibc +uly +bNN +dvD +pky +cbv +cbS +bHW +bJz +bJC +ack +cfo +cgs +chl +chR +cjf +cdP +bJC +dpO +ckX +cll +clF +clK +clg +acp +bSJ +vMn +vuR +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +psm +psm +psm +psm +jFX +psm +psm +xlX +aeq +psm +psm +psm +psm +alG +aYj +aoD +jvY +abF +atm +auH +atm +atm +atm +aBb +aFi +aFi +aHs +aIT +atm +aVF +jvY +alG +aYD +uPI +oIB +fXE +kaS +aiQ +oIB +sFR +vuv +vuv +vuv +vuv +sdw +vuv +vuv +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +wVb +hlz +eFH +aLT +bcE +aMC +bdD +aLT +bfC +bgY +aPl +aLT +aPn +aRX +cSQ +aQL +brt +aUY +buS +aQL +aLG +aYZ +sLE +uBw +bdl +bEm +bZr +bmD +hAc +pjG +boz +bpR +bpR +bpR +bpR +bpR +bxg +bZr +xBV +uys +uys +uys +uys +iRr +iEb +bHY +buH +bJC +cdX +bMy +cgt +bJC +chV +cjf +bgW +bJC +ckR +bTC +mvl +bSJ +clL +bVo +clZ +bSJ +bob +emG +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +psm +cnU +nGc +psm +cWI +psm +whc +xlX +qWT +psm +qWT +qWT +psm +alK +ajP +aoD +jvY +jvY +jvY +jvY +awx +awx +azd +aBc +aDb +awx +awx +jvY +jvY +jvY +jvY +sUF +anG +apd +oIB +jxC +hzb +xUV +oIB +sFR +hPo +vuv +dnk +rCp +fbx +cEO +vuv +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 +wVb +qnP +jPf +aLT +aLT +aLT +aLT +aLT +bfx +bgY +aQT +aLT +aTv +blB +sNb +aQL +aQL +aQL +aQL +aQL +bxx +byF +bzW +bxx +bdl +bpT +bNN +bNN +bNN +bmB +boB +bpS +bpS +bsL +bpS +bpS +bxi +bZr +bKA +dyx +eYr +bUo +uys +cbz +cbU +ccu +cbz +bJC +bJC +bJC +bJC +bJC +chW +rvT +cdP +bJC +dpO +ckX +hAZ +bSJ +bSJ +bSJ +bSJ +bSJ +cJP +vuR +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +psm +xlX +nYh +psm +xuI +psm +miK +tXW +gfk +fBf +tXW +tXW +fBf +aTS +ajP +aoD +alL +urM +dBG +jvY +jvY +jvY +jvY +aBf +jvY +jvY +jvY +jvY +wjv +fDG +alL +alG +aYD +aTS +qgK +tEB +uBM +dXo +oIB +lBR +nVu +vuv +jvI +cxo +fbx +jnk +vuv +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 +wVb +hlz +moE +aLT +bdJ +bds +aLT +bpL +bfE +njd +aQT +aLT +aTv +blB +uvu +aUZ +aQL +bsS +mqK +aQL +aLG +aYZ +sLE +jJs +bdl +bEp +bCA +bCA +cvb +bmC +nwG +lDL +nwG +lMw +jeO +nQv +ltb +bmD +bKA +dyx +hGN +pVx +uys +ttM +iEb +ccv +bIS +bJC +cfp +cgu +bJC +bMx +chQ +cjf +cdP +bJC +dpO +ckX +clo +bVn +bSJ +clM +clS +bSJ +nOG +vuR +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +pVZ +psm +psm +psm +jFX +psm +psm +sAA +nYh +psm +ano +psm +qhB +xlX +wCh +psm +qWT +qWT +psm +uBz +aYj +aoE +aqe +amw +anO +arq +arq +arq +aze +xYZ +aDe +arq +arq +arq +anO +qaV +kwd +aSB +anG +mPX +oIB +wKF +bZw +ltU +oIB +fbx +cFA +vuv +joT +cxo +fbx +hlI +vuv +vuv +vuv +vuv +sdw +vuv +qMu +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 +wVb +hlz +eFH +aLT +beT +bdr +bkg +aMz +bfy +bgY +aPl +aLT +aPn +blB +bnt +aRT +ihY +bpC +dnE +aQL +kgr +aYW +bzV +beB +bdl +ycp +ycp +tPj +mnf +ycp +bdl +bdl +rtj +agv +bdl +bdl +bdl +kFO +kFO +uys +uys +uys +uys +bJz +cbS +bJz +bHW +bJC +bMA +cfo +chm +bJD +chR +cjf +bgW +bJC +ckR +ckX +cll +bTA +clG +clg +bVq +bSJ +njT +ydx +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +pVZ +amJ +jXY +psm +ano +bjI +psm +cnY +nYh +psm +cWI +psm +adp +xlX +aeq +psm +qWT +aeq +psm +jMK +ajR +aoG +aqg +arr +atn +atn +atn +atn +anP +aBh +anP +atn +atn +atn +atn +aOB +aRj +aSC +aZH +iAB +oIB +phj +vEf +pxj +oIB +fbx +cxo +iEs +fbx +fbx +fbx +cxo +cxo +iwh +cxo +cxo +fbx +cxo +qMu +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 +wVb +tAi +eFH +aLT +aLT +aLT +aLT +brv +nuA +bgY +aQT +aLT +aTv +blB +oiQ +lml +aQL +aQL +aQL +aQL +pGM +aYZ +sLE +jJs +bdl +fKT +bGy +bKA +snM +iqo +moY +clV +crD +kLP +gvU +cyo +bdl +hTP +tXj +sgc +xCa +bUy +bdl +qYt +iEb +bHa +bIT +bJC +bJC +bJC +bJC +cdf +jxx +cjf +cdP +bJC +dpO +ckX +rXj +gfo +bSJ +bSJ +bSJ +bSJ +nOG +cAH +vTK +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 +pVZ +amL +atz +psm +ouo +bjI +psm +jFX +psm +psm +xuI +psm +qWT +xlX +qWT +psm +cBB +irn +psm +rFY +ctC +aoQ +kwd +amA +atq +atq +amx +amx +amx +atq +amx +amx +amx +atq +atq +aoT +kwd +rFY +ctC +gPF +oIB +oIB +oIB +oIB +oIB +fbx +gHg +vuv +iTf +cxo +suk +chC +pTT +oLd +oLd +oLd +oyw +cxo +qMu +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 +wVb +hlz +eFH +aLT +beT +bdr +bpK +aMz +bfy +bgY +aQT +aLT +aTv +blB +bnt +aRT +mUx +bpC +dnE +aQL +aLG +aYZ +sLE +jJs +bdl +fgm +bdj +rHN +kuu +mDj +bdl +jre +dXG +nqx +hzg +vBU +fIX +fnI +ipa +fYZ +vYC +noj +hpS +pJJ +iEb +bHa +bIT +bJC +bMA +cfo +chn +bJD +chR +cjf +cdP +bJC +dpO +ckX +cll +bTA +clH +oFV +bVq +bSJ +fTx +lGr +vTK +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 +pVZ +jXY +coG +hSu +xlX +qWT +aDg +qWT +tLM +xlX +xlX +hSu +xlX +xlX +qWT +psm +psm +psm +psm +aEp +lIw +aoR +alO +ars +amx +amx +aqf +amx +amx +atq +amx +amx +amx +amx +amx +aOC +alO +aEp +lIw +aEp +loP +loP +loP +loP +loP +qej +loP +loP +vuv +hlI +fbx +xxJ +ybO +yal +tpK +qKF +kaN +gHg +qMu +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 +wVb +eFH +hlz +aLT +beU +bdv +aLT +bry +bfu +bgY +jVr +aLT +kXa +blB +chL +lAl +aQL +bsW +xvX +aQL +aLG +txe +baq +jJs +bdl +ntd +iVj +eqb +mLR +hdE +bdl +krZ +ixQ +kWk +xyY +nwY +bKA +fnI +cwo +scH +nzO +kxL +hpS +pJJ +vzu +vYi +bIT +bJC +cfq +cgv +bJC +wqc +chN +cjf +lok +bJC +ihM +ckX +clm +hXY +bSJ +clN +clT +bSJ +cJP +vuR +vTK +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 +pVZ +amP +atD +psm +xlX +aDz +aRV +cyE +xlX +qWT +uRQ +psm +qWT +xlX +qWT +psm +ahn +aiz +psm +ndJ +anJ +aoS +inw +amA +amx +amx +awy +amx +amx +amx +amx +amx +amx +atq +amx +aoT +inw +aiB +anJ +mnG +loP +iwB +tOC +mHo +vqL +xBY +qwo +loP +xgL +nho +fbx +xxJ +hlI +eRe +eRe +eRe +kaN +cxo +qMu +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 +wVb +iDm +hlz +aLT +aLT +aLT +aLT +bwe +cuY +aPo +aLT +aLT +aQL +aSa +bnA +xhQ +aQL +aQL +aQL +aQL +aLG +aYO +kBK +hyt +bdl +tFS +bdj +bNs +nwb +mrM +bdl +uWI +pMJ +bCA +bCA +dWg +bdl +oTe +ixN +jaR +mJa +wWP +rsK +aGc +kkE +iEb +bIT +bJC +bJC +bJC +bJC +qFG +pvJ +bQD +bJC +bJC +bSJ +hss +clp +hfQ +bSJ +bSJ +bSJ +bSJ +wGi +woG +vTK +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 +pVZ +psm +psm +psm +ano +aDF +bYg +cNc +xlX +qWT +gyt +psm +rsY +xlX +qWT +psm +qWT +qWT +psm +alG +aDZ +aoU +aqj +arw +anP +fOJ +aqh +sqo +sqo +aDh +aDh +mux +ayd +atq +atq +wwJ +inw +alG +aYj +apd +loP +joG +sDu +kxo +wSn +xBY +lKa +loP +ejK +cxo +fbx +xxJ +vuv +oeL +cxo +hkm +hlw +pmk +qMu +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 +wVb +wVb +wVb +wVb +wVb +eFH +eFH +aLT +vZb +tnY +rAN +tIQ +cic +ceg +mdo +mJj +tDZ +nYc +bnB +aVd +aUZ +uqA +bES +kcl +aLG +aYO +sou +bAX +bdl +wIr +sAj +jAB +iYt +bMa +bdl +rDe +nUa +ufJ +rCK +cTf +bdl +bdl +nPT +nPT +bdl +bdl +bdl +dhU +vzq +iEb +bIT +hNw +wos +bMC +fcB +rUh +jLj +wPC +xZU +hNw +hmC +rQA +hjs +ivM +hcI +hcI +vPK +bSJ +nOG +vuR +vTK +vTK +vTK +vTK +vTK +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 +pVZ +amQ +qWT +hSu +xlX +aDF +jXY +dxC +xlX +aDz +mNW +psm +adp +xlX +wCh +psm +qWT +qWT +psm +ylJ +aDZ +aoD +inw +qHM +emn +rdI +alO +aqY +aqY +aBi +aDi +alO +aye +amx +amx +aBs +inw +alG +aYj +apd +loP +kxo +wSn +kxo +kdi +xBY +kxo +loP +sFF +cxo +fbx +xxJ +vuv +gUy +nho +oRj +hHU +cxo +qMu +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 +wVb +fTR +qaD +jeU +dHk +hlz +eFH +aWT +aMH +beV +beV +udG +aOK +dRv +mdo +mJj +bpC +hsW +mFO +bJE +aSE +aVf +bES +kcl +aLG +aZg +bar +bdl +bdl +bdl +bdl +bdl +bdl +bdl +bdl +bdl +xWo +bdl +bdl +bdl +bdl +cbo +gRn +cbo +cbo +gRn +bdl +bdl +cbV +fpO +bIT +hNw +sZq +jZv +cgy +nrw +spS +lBv +cfo +hNw +bNC +sDM +clr +nvT +wGE +wGE +erG +ewO +bWb +cAH +luk +rQj +ngs +gai +vTK +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 +pVZ +amQ +atG +psm +seO +aDF +amP +egB +xlX +aDF +igf +psm +atD +xlX +xlX +hSu +xlX +xlX +hSu +aWd +aDZ +nfp +alO +alO +alO +alO +alO +axx +amw +anO +aDj +inw +aye +atq +atq +aBs +alO +alG +aDZ +aWd +fTF +xBY +xBY +xBY +xBY +xBY +jGI +loP +vuv +hlI +cHq +xxJ +vuv +vuv +vuv +vuv +kmK +cxo +qMu +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 +wVb +vjx +eFH +eFH +eFH +eFH +eFH +aLT +aZf +duV +duV +eUA +bfx +bgY +mdo +mJj +bpC +gip +bnt +bJH +iIR +aVf +bES +kcl +aLG +aYO +bZK +qic +xfc +bCH +vZA +bCH +bCH +uIp +bHm +bHm +bHm +wNm +bCH +bCH +bHm +bLS +bCH +lXF +bHm +bCH +bCH +qic +cbW +iEb +bIT +hNw +sZq +jZv +gnu +bOQ +chR +cjg +cfo +hNw +bNC +ckX +vuL +fDh +jGR +jGR +oqu +bSJ +vuR +vuR +vuR +vuR +vuR +cAH +vTK +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 +pVZ +amW +auo +psm +xlX +bkR +bYi +eJd +xlX +aDF +jXY +psm +jXY +xlX +qWT +psm +qWT +qWT +akd +alG +aDZ +xrr +alO +gKZ +vTv +auL +alO +axy +amA +atq +aoT +inw +aye +atq +atq +aBs +alO +alJ +aYj +apd +gdS +wSn +kXN +fuT +odD +xBY +mOg +oHx +fbx +oVP +fbx +gAt +tly +flE +flE +flE +xzo +cxo +qMu +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 +wVb +ilZ +eFH +aLT +aLT +aLT +aLT +aLT +aLT +mhI +bjA +xSW +bAd +bCS +aLT +aLT +ksp +gip +brH +chp +chp +aVf +aQL +aQL +beB +aYT +bzY +aLd +aLd +bvS +aLd +aLd +aLd +aLd +vub +vub +vub +owW +vub +vub +vub +aLd +aLd +aLd +bvS +aLd +aLd +aLd +cbX +cbS +ccO +bJC +bJC +bMD +vND +vND +chR +cjg +kIP +bJC +bSJ +bTJ +pUf +hji +rPO +ixD +bSJ +bSJ +bSJ +bSJ +bSJ +bSJ +vuR +ydx +vTK +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 +pVZ +psm +psm +psm +ano +qWT +qWT +adE +xlX +wya +aiE +psm +jXY +xlX +aeq +psm +gIN +aiA +akd +alG +aDZ +xrr +alO +arz +atq +aoT +alO +aOG +azh +aBk +aoT +laQ +dZr +auB +atc +aOF +alO +alG +aYj +apd +gdS +lBg +dXd +loP +loP +eMh +loP +loP +vuv +kJG +fbx +okd +eYH +rav +eYH +eYH +wWL +cxo +qMu +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 +wVb +hlz +eFH +aLT +bBg +vPv +oTA +vPv +rAN +tIQ +vme +aNQ +aOL +uIJ +hRd +aLT +aQL +bmh +bnX +aRo +brA +aVf +lQz +aQL +aLG +aZi +aLG +bbs +cbh +xYP +bbs +oLi +bCM +xYP +cJE +bOT +dLt +bRe +iFD +vRa +vub +bPL +bCM +xSM +tez +gsm +bCM +bbr +buH +iEb +bIT +bJC +jht +jZv +cgy +cgy +lbX +uxp +bJC +bJC +bSZ +ckX +bUp +bUN +bVb +ivM +mAV +hzu +qNd +hzu +hcI +bSJ +cAH +cAH +vTK +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 +pVZ +qWT +meS +aAe +xlX +qWT +psm +psm +jFX +psm +psm +psm +igf +xlX +qWT +psm +psm +psm +psm +alG +aDZ +xrr +alO +arz +atq +aoT +alO +axA +amA +aBl +aOB +aFl +aHt +aIU +aMq +aOG +alO +alG +aDZ +apd +loP +loP +loP +loP +tGd +vyI +lPB +oHl +jWh +vuv +sdw +vuv +vuv +vuv +vuv +vuv +ldN +gHg +qMu +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 +wVb +hlz +hlz +aLT +bdr +bdr +bdC +bdr +bdr +tVq +vme +mLF +tig +uIJ +aPi +aLT +tDZ +gip +uTv +bKC +bOG +aVf +iaq +aQL +aLG +aZi +aLG +bbs +bKD +vTS +bbs +xYP +bCN +xYP +qlz +xYf +skn +bQX +fLS +cLl +qlz +tez +bCN +ccQ +tez +ccQ +bCN +bbr +buH +iEb +bIT +bJC +cjC +jZv +lLC +nEo +nZy +cjg +lbf +bJC +bTa +ckX +iWc +cqz +bVb +wty +clg +clg +clK +clg +clg +bSJ +cAH +cea +vTK +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 +pVZ +xlX +xlX +aBa +xlX +qWT +psm +eKD +nZF +wMm +psm +adp +qWT +xlX +qWT +qWT +lWh +aiE +psm +alG +aDZ +xrr +alO +arz +atq +aoT +alO +alO +alR +aBm +alR +alO +xBe +xBe +xBe +xBe +xBe +alG +aDZ +apd +jWh +eFK +wGd +cZW +pZK +hSk +hSk +uIv +jWh +dCt +xhU +dsu +vuv +ozr +hWa +dCP +ldN +cxo +qMu +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 +wVb +rVo +hlz +aLT +bdr +bdr +bdC +bdr +bdr +tVq +vme +lJO +uRo +uIJ +aLT +aLT +bpC +gip +xlk +uuj +bRg +aVf +aQL +aQL +fvK +aZi +aLG +bbs +ydM +xYP +bbs +xYP +cdn +xYP +qlz +gYe +skn +bTx +bKQ +tXM +qlz +tez +bpV +ccQ +tez +ccQ +bpV +bbr +buH +iEb +bIT +bJC +bJC +kGF +chq +bRf +onN +cjg +cfo +bJC +bSJ +bTM +bUq +rPE +bVb +wty +clg +clg +clK +clg +clg +bSJ +cAH +bpJ +vTK +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 +pVZ +ano +qWT +aBg +qWT +boZ +psm +eKD +oyo +wQx +psm +lhL +qWT +xlX +qWT +qWT +qWT +soQ +psm +alJ +aDZ +xrr +xnR +arm +ats +auO +awB +axB +ayV +auu +aoT +aFm +xBe +aIV +qqr +arH +xBe +alG +aDZ +apd +vXd +duF +hSk +hSk +vyI +hSk +hSk +uIv +jWh +xrN +fbx +ije +vuv +cxo +wwD +oda +ldN +cxo +qMu +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 +wVb +qnP +uia +aLT +iPS +vAE +iKw +vAE +wMG +tIQ +nTl +efK +aMz +rGj +mdo +mJj +bHp +bIU +tAN +tAN +jOi +aVf +bES +kcl +aLG +aZi +aLG +bbs +dvs +xYP +bbs +cdm +bCM +xYP +qlz +fOz +skn +bTx +bTx +dFF +qlz +tez +bCM +ccQ +tez +ccQ +bCM +bbr +buH +iEb +bIT +hNw +sZq +lef +xRj +wJD +cjE +ozT +pDB +hNw +bNC +ckX +qgN +bTN +sdC +ivM +gEo +scy +vSW +scy +kPJ +bSJ +cAH +ubd +vTK +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 +pVZ +xlX +psm +psm +rzP +psm +psm +fnZ +xlX +xoh +ckB +afl +jUL +afl +afl +afl +afl +afl +wDR +alP +ajW +apc +alO +arA +att +auS +alO +lXg +amA +aBn +aDm +aFn +xBe +azo +aJg +abR +xBe +alG +aDZ +apf +jWh +oih +khE +ctx +vyI +vyI +kpQ +vSE +jWh +ppc +iYp +iZX +vuv +cxo +wwD +rku +ldN +cxo +qMu +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 +wVb +tAi +moE +aLT +aLT +aLT +aLT +aLT +aLT +fbb +nTl +bwf +aMP +bEG +mdo +mJj +bpC +bpC +bpC +bpC +vfx +aVf +bES +kcl +beB +byI +beB +kFY +jmK +bDL +bbs +xYP +bCN +xYP +vub +odN +odN +gcN +odN +odN +vub +tez +bCN +ccQ +tez +ccQ +bCN +jhb +jiw +cbS +bHW +hNw +sZq +ltI +vfa +cfo +cfo +cfo +cfo +hNw +bNC +uMS +qmk +rtV +sgR +tvN +bSJ +bSJ +bSJ +bSJ +bSJ +bSJ +pUY +emG +vTK +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 +pVZ +xlX +psm +nQg +szX +xyE +psm +eKD +pBW +xtD +psm +psm +psm +jFX +psm +psm +psm +psm +psm +ylJ +aDZ +apd +alO +alO +alO +alO +alO +axD +amA +aBo +axe +anO +nFX +atv +auV +amE +xBe +alG +aDZ +apd +jWh +jWh +uUz +jWh +gIJ +qbZ +jWh +jWh +jWh +cDW +fbx +cXq +vuv +vJy +cxo +hkm +hlw +pmk +qMu +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 +wVb +wzg +eFH +aLT +bBg +vPv +oTA +vPv +rAN +tIQ +aNc +aNT +rGj +bdC +mdo +mJj +sEd +wDK +iMr +wuq +bRV +bSe +bES +kcl +aLG +aZi +aLG +bBd +aPr +bfl +bSb +byw +bkU +bAY +pur +bxm +bPM +jmK +bRa +bxm +pur +byw +bzI +bAY +bSb +bEa +bFp +bBd +buH +iEb +bIT +hNw +sZq +lwJ +cgA +oaW +yiW +oaW +yiW +hNw +bNC +clK +jdm +pQN +snR +ivM +qNd +hzu +mAV +hzu +hcI +bSJ +jea +cAH +vTK +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 +pVZ +yeP +psm +jdQ +bMY +hfy +psm +eKD +nZF +xxT +psm +uiG +rTZ +tfb +tfb +tfb +tfb +tfb +ptK +alG +aYj +apd +alO +aOM +aoW +aty +alO +axE +amA +aBp +aDn +atc +nFX +atv +auV +amE +xBe +alG +aYj +apd +jWh +xXa +xXa +xXa +pZK +cKL +jbH +rJh +jWh +tyz +eZQ +fTi +vuv +tzi +cxo +oRj +cVs +cxo +qMu +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 +wVb +jMi +eFH +aLT +bdr +bdr +bdC +bdr +bdr +cBs +kiV +iSZ +uIJ +kJi +aLT +aLT +aQL +aQL +aQL +aQL +csZ +odB +aQL +aQL +aLG +aZg +tBF +bBe +bFq +bfm +bhg +bvF +cdo +bvF +bvF +bvF +bRa +bRc +bPM +bvF +bvF +bvF +cdo +bvF +bCD +bEb +bFq +bBe +bFu +fpO +bIT +bJC +bJC +rbH +cEC +bJC +bJC +bJC +bJC +bJC +bSJ +hTc +bUr +ycd +sAc +wty +clg +clg +clK +clg +clg +bSJ +vuR +cAH +vTK +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 +pVZ +xlX +psm +psm +psm +psm +psm +psm +jFX +psm +psm +bNM +wkX +jhx +jhx +jhx +jhx +dnH +gpc +aWd +aYj +apd +alO +uto +aoX +auU +aHu +aFt +lEj +nRX +aDo +aFr +xBe +nNY +qKi +abR +xBe +alJ +ajR +aTS +dEt +soP +pDr +soP +pDr +soP +eoG +uIv +jWh +vuv +sdw +vuv +vuv +vuv +hlI +qiI +ldN +gHg +qMu +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 +wVb +pQG +eFH +aLT +bdr +bdr +bdC +bdr +bdr +cBs +bsU +bwg +bCP +bdC +aLT +bBg +uAW +pqK +uAW +tDZ +vil +bpC +qZX +aQL +kEb +aZi +bad +bbs +cdp +cdp +cdp +cdp +bbs +bJf +bJf +bJf +bJf +xba +dNt +dNt +dNt +dNt +bbs +fJO +fJO +fJO +fJO +bbs +nmD +iEb +twT +bJC +lbf +cft +rQV +ohj +wwr +cDs +wwr +lbf +bSJ +gGf +qyi +hXY +sSC +wty +clg +clg +clK +clg +clg +bSJ +cAH +ydx +vTK +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 +pVZ +ano +meS +cbA +aRG +bsF +psm +mDJ +owg +xUA +ozz +vFv +rob +owg +owg +nwU +owg +owg +ptK +wOh +ajP +apd +alO +aOQ +fxI +nLJ +aHv +aya +amx +atq +aDr +aFu +xBe +azp +qJf +anV +xBe +alG +aYj +apd +jWh +iqH +khE +khE +khE +ovi +iat +eim +jWh +vuv +qFW +vuv +vuv +kDi +vSH +tly +hlw +cxo +qMu +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 +wVb +fhA +eFH +aLT +iPS +vAE +iKw +vAE +wMG +tIQ +btc +bwh +uMl +bdC +dII +bdr +bpC +brs +bpC +bpC +vil +bpC +bpC +kbc +aLG +aYO +aLG +bbs +bdw +bfo +rWL +wLm +nHJ +wLm +wLm +wLm +bSa +xba +bSa +wLm +wLm +wLm +nHJ +wLm +lJu +bEd +bFs +bbs +buH +iEb +bIT +fzq +cfo +cft +rQV +cfo +cfo +cgs +cfo +cfo +bZU +clK +qFK +pmq +sUj +ivM +vSW +scy +gEo +scy +kPJ +bSJ +vuR +ebO +vTK +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 +pVZ +xlX +xlX +ePs +xlX +xlX +hSu +owg +owg +uKV +mDJ +bNM +iEr +owg +eNi +eNi +eNi +eNi +eNi +alG +aDZ +apf +alO +aOH +aJf +aMw +alO +xsl +aya +atq +aDr +aFv +xBe +xBe +xBe +xBe +xBe +alG +aYj +wSk +jWh +jWh +jlQ +jlQ +jWh +thV +uWV +uIv +oSx +vuv +gHg +vuv +vuv +hlI +qiI +nho +cxo +trW +qMu +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 +wVb +vjx +eFH +aLT +aLT +aLT +aLT +aLT +aLT +sCD +pXl +bxB +uWY +wEd +jvp +izG +gBc +gBc +gBc +gBc +ngA +koC +koC +xGE +aem +mUa +aLG +lgy +ccb +xYP +bGn +mlm +mlm +mlm +bxn +mlm +mlm +xba +mlm +mlm +bxn +mlm +mlm +mlm +rXk +xYP +jew +laU +buH +jGN +bJb +uCM +lNw +eFj +iQi +lNw +lNw +lNw +lNw +lNw +erh +rqE +qWt +clg +rEv +rll +bSJ +bSJ +bSJ +bSJ +bSJ +bSJ +vuR +tAR +vTK +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 +pVZ +alT +iHF +voA +aRV +aRV +psm +ptK +afX +ptK +ptK +bNM +rtd +owg +eNi +olO +wiG +nWN +eNi +alG +aYj +apd +alO +alO +alO +alO +alO +axI +amA +amx +aDr +aFw +inw +aJh +arq +ufx +alR +alG +aYj +apf +jWh +hSk +hSk +cRi +jWh +upR +fCL +uIv +vVw +lwi +cxo +iEs +cxo +fbx +fbx +fbx +kfX +qVU +qMu +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 +wVb +fTR +hlz +hlz +hlz +hlz +fTR +hlz +aLT +bdr +bdr +uJU +bdr +bdr +aLT +lDV +bpC +brs +bpC +bpC +jOx +bpC +bpC +aQL +jKA +aYT +beB +lgy +bsG +xYP +rWL +dMB +dMB +dMB +dMB +dMB +fsV +xba +fsV +dMB +dMB +dMB +dMB +dMB +lJu +xYP +hLI +laU +drt +rZF +bJz +bJC +cfo +cfo +lkM +cfo +cfo +cgs +cfo +tEO +bSJ +clg +clg +kPJ +clg +clg +bSJ +rHs +ngs +vuR +cAH +cAH +cAH +fKl +vTK +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 +pVZ +anu +auD +tIU +nEG +jXY +psm +bKm +hsr +mDJ +ptK +bNM +iEr +fhH +eNi +ueG +rPt +jyE +eNi +alG +aYj +apd +hwC +rcS +amx +swN +alO +axL +amA +amx +aDr +aFy +inw +aJi +azs +atq +alR +alG +aYj +apd +jlQ +tst +uUe +hSk +bSN +pZK +fCL +uIv +lFA +vuv +cxo +vuv +vuv +cxo +cxo +vqO +sXK +tbD +qMu +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 +wVb +wVb +wVb +wVb +wVb +hlz +eFH +hlz +aLT +iPS +vAE +meY +iPS +vAE +aLT +iPS +wDK +iMr +wDK +rou +jOx +bpC +ksp +aQL +aLG +bSY +aWR +cau +bCG +cgE +bJe +jmK +xYP +xYP +xYP +xYP +jmK +xba +jmK +xYP +xYP +xYP +xYP +jmK +hcw +cgE +hLI +blq +bIT +jHe +bIS +bJC +kIP +cfo +lkM +oaW +yiW +oaW +yiW +kIP +bSJ +vSW +scy +oer +vSW +scy +bSJ +tSr +pUY +lGr +vTK +vTK +vTK +vTK +vTK +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 +pVZ +pVZ +pVZ +pVZ +pVZ +pVZ +pVZ +qJx +hsr +mDJ +ptK +bNM +iEr +owg +eNi +iKD +rPt +rPt +eNi +alG +aYj +apd +alR +amA +atq +swN +alO +alO +cHc +azn +aDs +alO +alO +aJj +aMD +atq +alR +alG +aYj +apd +jlQ +tZZ +gLz +hSk +gIJ +ovi +fCL +lYk +bYn +qMu +qMu +qMu +qMu +qMu +qMu +qMu +qMu +qMu +qMu +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 +wVb +rVo +eFH +hlz +aLT +meY +meY +meY +meY +meY +meY +aLT +aQL +aQL +aQL +aQL +pyl +pDt +aQL +aQL +aLG +aYO +aLG +lgy +ccN +xYP +rWL +wLm +wLm +wLm +wLm +wLm +bSa +xba +bSa +wLm +wLm +wLm +wLm +wLm +lJu +xYP +hLI +laU +eUz +iEb +bIT +bJC +bJC +vLA +oHc +bJC +bJC +bJC +bJC +bJC +oer +oer +oer +oer +oer +oer +oer +ybr +vuR +ebO +vTK +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 +geH +aDZ +apd +alR +amA +atq +sOx +alO +axM +amA +atq +aDr +aFz +inw +amA +ayl +amx +alR +alG +aYj +apd +jWh +jmQ +hSk +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 +wVb +cbZ +eFH +eFH +eFH +eFH +eFH +eFH +eFH +hlz +eFH +hlz +aQL +qZX +qZX +tDZ +jOx +bpC +qZX +aQL +aLG +aYO +aLG +lgy +ccb +xYP +bGn +mlm +mlm +mlm +bxn +mlm +mlm +xba +mlm +mlm +bxn +mlm +mlm +mlm +rXk +xYP +jew +laU +buH +iEb +bIT +bJC +lbf +cfo +lkM +lbf +lbf +lbf +bJC +vuR +oyG +vuR +cAH +rDi +pXn +cAH +vuR +vuR +vuR +vuR +vTK +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 +alG +aDZ +apd +alR +amA +atq +sOx +alO +axN +azq +auy +aDB +aFA +inw +aJl +amx +atq +alR +alG +aYj +apd +jlQ +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 +wVb +bbv +hJb +hlz +hlz +hlz +hlz +wZH +hlz +hlz +hlz +hlz +aQL +bpC +bpC +bpC +jOx +bpC +bpC +bTb +aLG +aYO +aLG +bbs +ccd +ccN +rWL +dMB +uVD +dMB +dMB +dMB +fsV +xba +fsV +dMB +dMB +dMB +uVD +dMB +lJu +huK +jeQ +bbs +buH +iEb +bIT +xSw +cfo +cfo +lkM +cfo +cfo +cfo +bJC +vuR +cAH +vuR +cAH +vuR +dcS +cAH +vuR +cAH +cAH +xZK +vTK +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 +uqB +eJX +sAC +wYY +alG +aDZ +apd +alR +amA +amx +apa +alO +axO +azr +aBr +aDC +aFB +alO +aJk +amx +atq +alR +alG +aYj +apd +jlQ +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 +wVb +wVb +wVb +wVb +wVb +wVb +wVb +wVb +wVb +wVb +eFH +rdK +aQL +bpC +bpC +bpC +osA +cHl +cHl +bTb +beB +aYT +beB +bbs +cdp +cdp +jks +cdp +bbs +bJf +bJf +bJf +bJf +xba +dNt +dNt +dNt +dNt +bbs +fJO +fJO +fJO +fJO +bbs +bJz +cbS +bHW +xSw +ejo +ejo +niY +cfo +cfo +cfo +bJC +cAH +vuR +vuR +vTK +vTK +hTk +vTK +vTK +vTK +vTK +vTK +vTK +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 +alG +aYj +apd +alR +amA +atq +fhf +alO +axQ +azt +auA +aDD +aFD +inw +xEO +xEO +lnP +alR +alG +aYj +apf +jWh +hSk +hSk +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 +wVb +iDm +fTR +aQL +ksp +ksp +rou +bpC +bpC +bpC +bTb +aLG +aYO +aLG +bBh +aLG +aLG +aLG +aLG +byC +aLG +beB +aLG +aLG +bsT +buH +buH +bJz +buH +bSd +buH +buH +buH +buH +cbD +buH +iEb +bIT +xSw +cfo +cfo +cfo +kIP +qer +kIP +bJC +cAH +cAH +ebO +vTK +aaa +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 +qhc +ajP +apd +alR +amA +atq +cSm +alO +elf +amA +atq +aDE +asT +aHw +iWR +iWR +kbx +alR +alG +aYj +apd +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 +wVb +eFH +hlz +aQL +aQL +aQL +aQL +ksp +rou +rou +aQL +aLG +aZl +tBF +sOm +tBF +aQt +bhn +aQt +aQt +aQt +crW +aQt +aQt +mji +buI +buI +bUz +buI +buI +buI +bCE +buI +bFu +cbE +bFu +bIl +bIX +bJC +kIP +qer +kIP +bJC +bJC +bJC +bJC +vuR +vuR +vuR +vTK +aaa +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 +alJ +aYj +apd +alR +amA +atq +civ +dof +atq +arm +atc +atc +atc +inw +xEO +xEO +aOV +alR +alG +aYj +apd +jWh +kUw +dod +eNv +rxV +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 +wVb +eFH +hlz +hlz +hlz +hlz +rdK +rdK +rdK +rdK +rdK +tfl +aZm +aWR +buU +aWR +bjb +bal +bjb +bjb +aWR +bNX +aWR +aWR +bsV +buJ +buJ +bUG +buJ +bzK +bzK +bCF +bzK +buJ +cdZ +buJ +buJ +jMb +bJC +bJC +bJC +bJC +bJC +cAH +cAH +cAH +vuR +cAH +wZT +vTK +aaa +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 +alG +aDZ +apd +alR +arK +atc +civ +kwd +atq +atq +amA +aDH +aFI +alO +aJq +aMG +aOW +alR +alG +aYj +apd +jWh +tZP +hSk +hSk +vyI +thV +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 +wVb +jmg +hlz +eFH +eFH +hlz +hlz +gwF +eFH +eFH +rdK +rdK +aZn +rdK +rdK +bCW +bEH +bHt +bJi +bKE +bKE +bkZ +bpX +bpX +bpX +bpX +bpX +bkZ +bWV +jkd +bYE +bZz +cav +bBa +haq +haq +lAA +haq +haq +cAH +cAH +cAH +cAH +cAH +cAH +cAH +cAH +cAH +ngs +vTK +aaa +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 +aEp +lIw +aEp +alO +alO +alO +alO +alO +azi +azi +ets +kvh +rka +alO +alO +alO +alO +alO +aEp +lIw +aEp +jWh +nDL +vyI +vyI +wTJ +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 +wVb +epA +wDm +hlz +hlz +hlz +hlz +gwF +hlz +hlz +rdK +aYc +hlz +hlz +rdK +rdK +aVl +bHu +aVl +bkZ +bkZ +bkZ +bpY +brw +bqf +buK +bvI +bkZ +bkZ +bkZ +aVl +bZA +aVl +haq +haq +cAH +vuR +cAH +cAH +vuR +vuR +vuR +cAH +cAH +cAH +cAH +vuR +sIV +hBU +vTK +aaa +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 +aGD +aPb +apj +aqq +aPa +eky +eky +alO +aqY +aqY +alO +aqY +aqY +alO +eky +eky +aPa +aqq +aGD +aPb +kff +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 +wVb +pIk +bNT +wul +eFH +eFH +eFH +ybS +wul +hlz +hlz +hlz +hlz +eFH +eFH +rdK +bEU +bjl +bJj +bkZ +bmM +cEx +bpZ +brx +boH +jnf +hfO +bxo +byz +bkZ +bEV +bCI +ccW +haq +pFM +hzV +vuR +vuR +vuR +cAH +fXd +cAH +vuR +cAH +vuR +vuR +rgA +brX +mfI +vTK +aaa +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 +aTS +wqq +agJ +hal +uYg +nau +uYg +uYg +bXf +aDO +aDO +aDO +gQO +uYg +uYg +nau +uYg +hal +aGC +wqq +aTS +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 +wVb +wVb +wVb +wVb +wVb +wVb +wVb +aUx +aVl +aVl +aVl +bxE +aVl +rdK +iDm +rdK +bEU +bjl +bJj +bkZ +bmN +boI +boI +brx +boH +jnf +shb +boI +byA +bkZ +bBc +bCI +ccW +haq +vuR +haq +aVl +bxE +aep +aep +aep +dKL +vTK +vTK +vTK +vTK +vTK +vTK +vTK +vTK +aaa +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 +aIe +anR +lNl +aqq +eky +aNl +eky +eky +nCT +vsh +vsh +vsh +ydY +eky +eky +aNl +eky +aqq +aIe +iYj +lNl +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 +aUx +pXj +btm +aVl +bxF +byJ +aVl +vsV +rdK +bEU +bjl +ccW +bKO +bvL +bvL +bvL +bPR +bRi +bSk +bvL +bvL +bvL +bKO +bEU +bCI +uVR +haq +mHR +aVl +ccx +bBm +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 +htb +pfc +ptK +ptK +ucp +cIW +ptK +ptK +psm +dKm +psm +aHe +jlT +exi +eky +eky +eAC +aBu +aBu +aBu +eAC +eky +eky +ins +wRP +aHe +vuv +vuv +vuv +jWh +jWh +olk +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 +aUx +pXj +btm +aVl +bxG +byK +aVl +hlz +rdK +wun +bht +pfh +pWf +bmP +pop +lJa +bPZ +bRj +bSl +smr +nel +bQu +bRu +bYI +pIf +bJk +haq +cAH +aVl +byQ +ccR +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 +psm +psm +psm +eky +eky +aNl +eky +uNV +aHe +aDQ +aDQ +aDQ +aHe +uNV +eky +aNl +eky +rqj +vuv +nfS +emx +jWh +qCg +xjw +pfA +xAC +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 +aUx +uLN +btm +btm +bxH +byL +aVl +bxE +aVl +vWK +bjl +ccW +bKO +bqa +bqa +aaj +bQa +bRk +bSm +bvK +bUI +bqa +bKO +bEU +bCI +ccW +aVl +bxE +aVl +ccy +diF +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 +xlX +xlX +hSu +aMT +aMT +dPm +qeF +aHe +aHe +aDX +yge +aEm +aHe +aHe +okg +dPm +aMT +aMT +iEs +cxo +cxo +jWh +uUV +rsW +rsW +fnQ +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 +aUx +btn +btm +btm +bxI +byM +aVl +nmb +aVl +brI +bjl +sPA +bkZ +bmR +boI +bqe +brx +tzz +jnf +ePY +bxr +byD +bkZ +bYK +bCI +oAd +aVl +fLX +aVl +byQ +ccS +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 +qWT +jBB +psm +svf +arV +wZX +eky +aDQ +ayi +eky +aBx +eky +jlX +aDQ +eky +wZX +arV +vUh +vuv +xct +cxo +jWh +dkS +rsW +naQ +fnQ +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 +aUx +sXV +cWt +cWt +pFA +byN +bAf +bBq +bAf +bje +bhw +ccW +bkZ +bkZ +wie +boI +brx +bNZ +jnf +boI +gXq +bkZ +bkZ +hdg +bCJ +bEj +cce +cbH +cce +ccz +ccT +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 +qWT +psm +psm +eky +arV +wZX +eky +aDQ +pyy +eky +eky +eky +dLc +aDQ +eky +wZX +arV +eky +vuv +vuv +cxo +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 +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 +dKL +aep +aep +aep +bkt +btm +fxu +bBp +fxu +bFc +bjl +bjd +gXY +bkZ +xlY +boI +brx +bNZ +jnf +boI +kqc +bkZ +tmA +bfs +bCI +cay +fxu +cbG +fxu +ccA +bZE +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 +psm +kSd +qWT +tZm +qWT +xlX +hWU +qWT +aeq +psm +aNe +eky +arV +wZX +eky +aHe +jMQ +eky +eky +eky +dEn +aHe +eky +wZX +arV +eky +aNe +vuv +ahb +cxo +nJy +boC +cxo +iwh +kfv +vGr +vuv +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 +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 +dKL +afk +aWo +aWZ +byg +byO +aVl +bxE +aVl +bFe +bjl +bjg +ccW +bKO +boI +boI +brx +tzz +jnf +boI +boI +bKO +bEU +bYM +cxe +caz +aVl +bxE +aVl +ccB +ccV +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 +psm +kSd +qWT +nwu +qWT +xlX +rwb +qWT +jXY +psm +atY +aMT +aMT +svl +pzJ +qDt +uYg +vsh +oPf +vsh +uYg +qDt +pzJ +sQO +aMT +aMT +atY +vuv +woM +nqD +cxo +boC +cxo +qMf +wUN +jgC +vuv +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 +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 +dKL +aVo +aWp +aWZ +byh +byQ +aVl +hlz +rdK +bFf +aVp +ddj +sfU +fWT +bKT +bKT +ect +lrs +put +bKT +bKT +bWZ +kJC +mbn +mUZ +caA +haq +cAH +aVl +ccC +ccW +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 +hSu +xlX +xlX +xlX +xlX +xlX +aiE +qWT +atD +psm +psm +aRp +aRp +jBX +akS +aHe +oxU +bsy +oir +gzw +shh +aHe +tKf +jBX +aRp +edx +vuv +vuv +myC +crP +cxo +fbx +fbx +fbx +fbx +fbx +iEs +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 +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 +dKL +afk +afk +ggQ +aAb +byR +aVl +eFH +rdK +bFg +bHv +bjg +bld +bkZ +boN +gUI +brC +bsZ +buQ +mOr +kFq +bkZ +bzP +bjg +gJq +caB +haq +vuR +aVl +ccD +ccX +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 +htb +pfc +psm +psm +psm +psm +pPz +xlX +xlX +xlX +xlX +xlX +hSu +qYG +atM +bGc +atK +aHe +aHe +aHe +aHe +aHe +aHe +aHe +atM +bGc +atK +qYG +iEs +fbx +fbx +jaj +fbx +boC +hPg +vuv +vuv +vuv +vuv +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 +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 +dKL +dKL +aep +aep +byk +byQ +aVl +eFH +rdK +bhB +bhB +uEc +bKU +bhB +gir +bpX +bpX +bpX +bpX +bpX +gir +bhB +bXP +bjn +bhB +bhB +haq +mHR +aVl +ccE +bjd +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 +skg +eaX +pVZ +pVZ +pVZ +pVZ +pVZ +pVZ +pVZ +pVZ +aPw +avu +mhG +cFn +cYu +aHe +fdX +wcR +xJh +aHe +qYu +dxK +dPC +aMU +aPw +qMu +qMu +qMu +qMu +qMu +qMu +qMu +qMu +euY +vME +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 +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 +aUx +bvQ +bwj +byl +bzj +aVl +eFH +eFH +bhB +bfA +bLe +bKV +bhB +fEg +bOl +bOm +bRr +bXt +bUX +szm +bhB +bXQ +bLe +psp +bhB +cAH +vuR +aVl +bzj +cHO +cdr +cer +aUx +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 +fcP +xJn +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 +tAh +thV +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 +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 +aUx +aWr +aUx +aUx +aUx +aUx +hlz +hlz +bhB +bHy +bLe +bKV +bMB +bOc +plE +plE +plE +plE +plE +bxs +bMB +bXQ +bLe +bHy +bhB +kpX +lGr +aUx +aUx +aUx +aUx +aWr +aUx +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 +tiw +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 +tjj +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 +aab +aaa +aaa +aaa +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 +wVb +iDm +eFH +bhB +ozi +bJF +bKW +bXR +bUJ +bTi +aut +aut +aut +xjC +fxW +bXl +bzU +bYO +bZD +bhB +vim +woG +vTK +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 +aab +aaa +aaa +aaa +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 +wVb +hlz +hlz +bhB +bJQ +bLe +usw +bMF +blo +ktO +bUW +bMQ +bXr +lfQ +blo +bXm +bXS +bLe +bJR +bhB +cAH +cAH +vTK +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 +aab +aaa +aaa +aaa +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 +wVb +eFH +eFH +bhB +bHz +bJI +bKW +bEn +rFu +pQq +bQe +bTl +bSt +buW +bUL +bXn +bzU +bYS +bJR +bhB +cAH +cAH +vTK +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 +aab +aaa +aaa +aaa +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 +wVb +hlz +eFH +bhB +bhB +hxp +bKV +bLe +laj +xjC +ktO +bPd +lfQ +ddK +qXx +bLe +bXQ +bJR +bhB +bhB +vuR +mHR +vTK +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 +aab +aaa +aaa +aaa +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 +wVb +hlz +hlz +hlz +bhB +bYV +bKV +bhB +bOh +lfQ +ktO +bOk +lfQ +ktO +bnc +bhB +bXU +bYV +bhB +jcK +cAH +cAH +vTK +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 +jXW +jcZ +aDO +qqu +eky +aNl +eky +dFk +aDO +nzI +jXW +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 +aab +aaa +aaa +aaa +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 +wVb +eFH +eFH +eFH +bhB +bJK +bLc +bhB +bUY +lfQ +brJ +plE +buW +ktO +bMW +bhB +bXV +bJK +bhB +rbp +vuR +rbp +vTK +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 +qtR +avu +eky +eky +nJu +aNl +eky +eky +eky +aMU +qtR +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 +wVb +wVb +rVo +hlz +bhB +bJK +bKV +bhB +bXu +boU +rFu +blo +riQ +okz +bMV +bhB +bXQ +bJK +bhB +kpX +emG +vTK +vTK +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 +dnJ +eky +eky +eky +aNl +eky +eky +eky +hfw +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 +aaa +aab +aaa +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 +wVb +qnP +uia +bhB +bhB +blm +bhB +bhB +bOi +xcp +kkO +gzr +kXK +bhB +bhB +bzX +bhB +bhB +ybr +vuR +vTK +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 +aaa +aab +aaa +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 +wVb +hlz +moE +bhB +bJM +bLd +fir +jfM +bQi +bMM +bSy +bMM +bSx +hbZ +ebJ +xiC +fYG +bhB +vuR +woG +vTK +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 +aaa +aab +aaa +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 +wVb +eFH +eFH +bhB +bJN +bLd +bMM +bMM +bMM +bMM +bSy +bMM +bMM +bMM +bMM +bLd +bYU +bhB +jdy +cAH +vTK +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 +aaa +aab +aaa +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 +wVb +hlz +hlz +bhB +bJP +mzO +bMN +bMN +fcI +bSy +bSy +bSy +dNx +bMN +bMN +tdx +bYW +bhB +vuR +ydx +vTK +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 +aaa +aab +aaa +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 +wVb +eFH +eFH +bhB +hrX +fIx +bMM +bMM +hgt +bMM +bMM +bMM +bMM +bMM +bMM +bYU +gNd +bhB +cAH +cAH +vTK +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 +aaa +aab +aaa +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 +wVb +hlz +hlz +bhB +sgM +fIx +bMM +bMM +bhB +kvz +kvz +kvz +bhB +kGX +bMM +bYU +upe +bhB +vuR +vuR +vTK +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 +aaa +aab +aaa +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 +wVb +eFH +eFH +bhB +svd +bLf +dCS +bMM +bhB +bQk +xfi +bSG +bhB +bMM +dCS +tLy +svd +bhB +cAH +cAH +vTK +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 +aaa +aaa +aab +aab +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 +wVb +hlz +eFH +bhB +bhB +bhB +bhB +cZJ +bhB +bhB +bhB +bhB +bhB +cZJ +bhB +bhB +bhB +bhB +vuR +vuR +vTK +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 +wVb +hlz +eFH +fKg +tce +bhB +heg +lfQ +blo +vNF +xuU +vNF +blo +ktO +heg +bhB +osE +gai +cAH +cAH +vTK +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 +tqB +eky +eky +atg +aBE +ouB +eky +eky +gwu +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 +wVb +hlz +hlz +hlz +hlz +bhB +heg +mKX +aut +aut +aut +aut +aut +riA +heg +bhB +cAH +cAH +cAH +cAH +vTK +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 +aNe +avu +eky +eky +esT +nYE +orH +eky +eky +aMU +aNe +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 +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 +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +bdH +aaa +aaa +aaa +aaa +bdH +aad +aag +aag +aag +wVb +wVb +gcK +jPf +jPf +bhB +dVZ +jyi +bPe +bQm +wlj +bQm +bTp +jyi +cDj +bhB +vuR +vuR +woG +vTK +vTK +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 +atY +avu +eky +eky +bAe +aBG +sGh +eky +eky +aMU +atY +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 +wVb +hlz +eFH +uzg +bhB +bhB +bhB +bhB +bhB +bhB +bhB +bhB +bhB +bhB +bhB +cAH +cAH +cAH +vTK +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 +qpU +aqJ +dqj +eky +xaS +ejt +mPf +eky +gUV +aqp +qpU +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 +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 +wVb +hlz +eFH +hlz +eFH +wul +hlz +gnz +eFH +eFH +vuR +hOe +cAH +fXd +vuR +vuR +vuR +cAH +vTK +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 +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 +wVb +wVb +rdK +rdK +rdK +rdK +bOn +rdK +rdK +rdK +haq +haq +xnl +haq +haq +haq +haq +vTK +vTK +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 +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 +aae +aah +aah +aah +aah +wVb +wVb +bdo +bdo +bLg +bMX +bOo +uvG +dSs +bOo +otX +cII +koT +tZF +bUZ +ovn +ovn +vTK +vTK +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 +lmz +lmz +lmz +daz +vhe +fEN +cqm +gTH +qit +rna +qQS +gwn +pfT +jYR +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +wVb +qsF +bdo +bdo +bdo +bdo +bdo +bdo +bdo +ovn +ovn +ovn +ovn +ovn +bjy +aXQ +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +bdH +lmz +lmz +lmz +lmz +lmz +lmz +lmz +lmz +sbJ +sbJ +sbJ +daz +jtj +avK +avK +sKY +avK +bIp +fKe +dDp +dDp +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 +wVb +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +ovn +ovn +ovn +ovn +ovn +ovn +ovn +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +lmz +daz +daz +daz +daz +daz +tte +hvw +auf +pmV +xDC +xDC +dIn +rby +bIp +euN +sEK +sEK +mlb +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 +wVb +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +ovn +ovn +ovn +ovn +ovn +ovn +ovn +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +lmz +daz +daz +hRW +asZ +vXh +daz +daz +kfU +daz +rna +rna +lnS +uVv +yit +rna +cxc +kBy +kBy +gfu +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 +wVb +bhD +bdo +bdo +bdo +bdo +bdo +bdo +bdo +ovn +ovn +ovn +ovn +ovn +ovn +bCR +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +daz +scS +yaZ +ffE +hZj +clw +daz +daz +daz +sGZ +rna +rna +roH +ebN +ebN +ebN +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 +wVb +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +ovn +ovn +ovn +ovn +ovn +ovn +ovn +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +acJ +ubA +cck +wyQ +fmv +ubA +gMN +mRn +itf +mHE +vAU +qwJ +fJY +kzT +wkM +oLm +fcX +kKv +kKv +dGl +dGl +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 +wVb +bdo +bdo +bdo +bdo +bdo +bdo +bdo +bdo +ovn +ovn +ovn +ovn +ovn +ovn +ovn +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +cwS +ffE +whm +wpw +ffE +ffE +ffE +jqP +cLo +vfB +viB +dIi +qLS +vfB +wkM +jvB +jvB +ieF +ieF +pJR +gPr +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 +wVb +qsF +bdo +bdo +bdo +bdo +bdo +bdo +bdo +ovn +ovn +ovn +ovn +ovn +ovn +aXQ +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +oRV +ydI +mdW +jaH +awu +ydI +aKs +fMt +gOs +kXj +pYi +fMl +gUN +bLv +wkM +xvM +osy +cBm +cBm +iZw +dQl +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 +wVb +bdo +jbB +bdo +bne +bdo +jbB +bdo +bne +ovn +gXv +ovn +grX +ovn +gXv +ovn +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +daz +daz +eKJ +yaZ +ffE +hZj +mUC +daz +daz +daz +tHu +rna +rna +gXs +ebN +ebN +ebN +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 +wVb +wVb +wVb +wVb +wVb +wVb +wVb +wVb +wVb +vTK +vTK +vTK +vTK +vTK +vTK +vTK +vTK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +daz +daz +ocB +nJH +rnH +daz +daz +sTV +daz +rna +rna +gbg +uVv +erN +rna +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +lmz +lmz +lmz +lmz +lmz +daz +daz +daz +daz +daz +tte +hvw +auf +hTl +xDC +xDC +yaQ +bat +mFN +kSy +dDp +dDp +frM +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 +lmz +lmz +lmz +lmz +daz +sbJ +sbJ +sbJ +daz +jtj +avK +avK +aCd +avK +mFN +igr +sEK +sEK +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 +"} +(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 +lmz +lmz +lmz +lmz +daz +avK +bRo +wyv +pTt +gAe +rCi +iAi +mUz +our +rna +cxc +kBy +kBy +khJ +gyN +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 +lmz +lmz +lmz +lmz +lmz +lmz +lmz +daz +czG +ylg +ylg +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +bdH +bdH +bdH +bdH +bdH +bdH +bdH +lmz +daz +daz +daz +daz +daz +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +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 +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +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 +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 +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +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 +"} diff --git a/maps/map_files/derelict_almayer/sprinkles/.gitkeep b/maps/map_files/derelict_almayer/sprinkles/.gitkeep new file mode 100644 index 0000000000..8b13789179 --- /dev/null +++ b/maps/map_files/derelict_almayer/sprinkles/.gitkeep @@ -0,0 +1 @@ + diff --git a/tgui/public/tgui-panel.bundle.css b/tgui/public/tgui-panel.bundle.css index 32c1b1607a..c1eec9f615 100644 --- a/tgui/public/tgui-panel.bundle.css +++ b/tgui/public/tgui-panel.bundle.css @@ -1,2 +1,2 @@ -html,body{box-sizing:border-box;height:100%;margin:0;font-size:12px}html{overflow:hidden;cursor:default}body{overflow:auto;font-family:Verdana,Geneva,sans-serif}*,*:before,*:after{box-sizing:inherit}h1,h2,h3,h4,h5,h6{display:block;margin:0;padding:6px 0;padding:.5rem 0}h1{font-size:18px;font-size:1.5rem}h2{font-size:16px;font-size:1.333rem}h3{font-size:14px;font-size:1.167rem}h4{font-size:12px;font-size:1rem}td,th{vertical-align:baseline;text-align:left}.candystripe:nth-child(odd){background-color:rgba(0,0,0,.25)}.color-black{color:#1a1a1a !important}.color-white{color:#fff !important}.color-red{color:#df3e3e !important}.color-orange{color:#f37f33 !important}.color-yellow{color:#fbda21 !important}.color-olive{color:#cbe41c !important}.color-green{color:#25ca4c !important}.color-teal{color:#00d6cc !important}.color-blue{color:#2e93de !important}.color-dark-blue{color:#005fa7 !important}.color-violet{color:#7349cf !important}.color-purple{color:#ad45d0 !important}.color-pink{color:#e34da1 !important}.color-brown{color:#b97447 !important}.color-grey{color:#848484 !important}.color-light-grey{color:#b3b3b3 !important}.color-good{color:#68c22d !important}.color-average{color:#f29a29 !important}.color-bad{color:#df3e3e !important}.color-label{color:#8b9bb0 !important}.color-xeno{color:#664573 !important}.color-bg-black{background-color:#000 !important}.color-bg-white{background-color:#d9d9d9 !important}.color-bg-red{background-color:#bd2020 !important}.color-bg-orange{background-color:#d95e0c !important}.color-bg-yellow{background-color:#d9b804 !important}.color-bg-olive{background-color:#9aad14 !important}.color-bg-green{background-color:#1b9638 !important}.color-bg-teal{background-color:#009a93 !important}.color-bg-blue{background-color:#1c71b1 !important}.color-bg-dark-blue{background-color:#003e6e !important}.color-bg-violet{background-color:#552dab !important}.color-bg-purple{background-color:#8b2baa !important}.color-bg-pink{background-color:#cf2082 !important}.color-bg-brown{background-color:#8c5836 !important}.color-bg-grey{background-color:#646464 !important}.color-bg-light-grey{background-color:#919191 !important}.color-bg-good{background-color:#4d9121 !important}.color-bg-average{background-color:#cd7a0d !important}.color-bg-bad{background-color:#bd2020 !important}.color-bg-label{background-color:#657a94 !important}.color-bg-xeno{background-color:#462f4e !important}.debug-layout,.debug-layout *:not(g):not(path){color:rgba(255,255,255,.9) !important;background:transparent !important;outline:1px solid rgba(255,255,255,.5) !important;box-shadow:none !important;filter:none !important}.debug-layout:hover,.debug-layout *:not(g):not(path):hover{outline-color:rgba(255,255,255,.8) !important}.outline-dotted{outline-style:dotted !important}.outline-dashed{outline-style:dashed !important}.outline-solid{outline-style:solid !important}.outline-double{outline-style:double !important}.outline-groove{outline-style:groove !important}.outline-ridge{outline-style:ridge !important}.outline-inset{outline-style:inset !important}.outline-outset{outline-style:outset !important}.outline-color-black{outline:.167rem solid #1a1a1a !important}.outline-color-white{outline:.167rem solid #fff !important}.outline-color-red{outline:.167rem solid #df3e3e !important}.outline-color-orange{outline:.167rem solid #f37f33 !important}.outline-color-yellow{outline:.167rem solid #fbda21 !important}.outline-color-olive{outline:.167rem solid #cbe41c !important}.outline-color-green{outline:.167rem solid #25ca4c !important}.outline-color-teal{outline:.167rem solid #00d6cc !important}.outline-color-blue{outline:.167rem solid #2e93de !important}.outline-color-dark-blue{outline:.167rem solid #005fa7 !important}.outline-color-violet{outline:.167rem solid #7349cf !important}.outline-color-purple{outline:.167rem solid #ad45d0 !important}.outline-color-pink{outline:.167rem solid #e34da1 !important}.outline-color-brown{outline:.167rem solid #b97447 !important}.outline-color-grey{outline:.167rem solid #848484 !important}.outline-color-light-grey{outline:.167rem solid #b3b3b3 !important}.outline-color-good{outline:.167rem solid #68c22d !important}.outline-color-average{outline:.167rem solid #f29a29 !important}.outline-color-bad{outline:.167rem solid #df3e3e !important}.outline-color-label{outline:.167rem solid #8b9bb0 !important}.outline-color-xeno{outline:.167rem solid #664573 !important}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-baseline{text-align:baseline}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-pre{white-space:pre}.text-bold{font-weight:bold}.text-italic{font-style:italic}.text-underline{text-decoration:underline}.BlockQuote{color:#8b9bb0;border-left:.1666666667em solid #8b9bb0;padding-left:.5em;margin-bottom:.5em}.BlockQuote:last-child{margin-bottom:0}.Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.Button:last-child{margin-right:0;margin-bottom:0}.Button .fa,.Button .fas,.Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.Button--hasContent .fa,.Button--hasContent .fas,.Button--hasContent .far{margin-right:.25em}.Button--hasContent.Button--iconPosition--right .fa,.Button--hasContent.Button--iconPosition--right .fas,.Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.Button--fluid{display:block;margin-left:0;margin-right:0}.Button--circular{border-radius:50%}.Button--compact{padding:0 .25em;line-height:1.333em}.Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.Button--color--black:hover{transition:color 0ms,background-color 0ms}.Button--color--black:focus{transition:color 100ms,background-color 100ms}.Button--color--black:hover,.Button--color--black:focus{background-color:#131313;color:#fff}.Button--color--white{transition:color 50ms,background-color 50ms;background-color:#d9d9d9;color:#000}.Button--color--white:hover{transition:color 0ms,background-color 0ms}.Button--color--white:focus{transition:color 100ms,background-color 100ms}.Button--color--white:hover,.Button--color--white:focus{background-color:#f8f8f8;color:#000}.Button--color--red{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--red:hover{transition:color 0ms,background-color 0ms}.Button--color--red:focus{transition:color 100ms,background-color 100ms}.Button--color--red:hover,.Button--color--red:focus{background-color:#dc4848;color:#fff}.Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#d95e0c;color:#fff}.Button--color--orange:hover{transition:color 0ms,background-color 0ms}.Button--color--orange:focus{transition:color 100ms,background-color 100ms}.Button--color--orange:hover,.Button--color--orange:focus{background-color:#f0853f;color:#fff}.Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.Button--color--yellow:hover,.Button--color--yellow:focus{background-color:#f5d72e;color:#000}.Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#9aad14;color:#fff}.Button--color--olive:hover{transition:color 0ms,background-color 0ms}.Button--color--olive:focus{transition:color 100ms,background-color 100ms}.Button--color--olive:hover,.Button--color--olive:focus{background-color:#c4da2b;color:#fff}.Button--color--green{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--color--green:hover{transition:color 0ms,background-color 0ms}.Button--color--green:focus{transition:color 100ms,background-color 100ms}.Button--color--green:hover,.Button--color--green:focus{background-color:#32c154;color:#fff}.Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#009a93;color:#fff}.Button--color--teal:hover{transition:color 0ms,background-color 0ms}.Button--color--teal:focus{transition:color 100ms,background-color 100ms}.Button--color--teal:hover,.Button--color--teal:focus{background-color:#13c4bc;color:#fff}.Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#1c71b1;color:#fff}.Button--color--blue:hover{transition:color 0ms,background-color 0ms}.Button--color--blue:focus{transition:color 100ms,background-color 100ms}.Button--color--blue:hover,.Button--color--blue:focus{background-color:#3a95d9;color:#fff}.Button--color--dark-blue{transition:color 50ms,background-color 50ms;background-color:#003e6e;color:#fff}.Button--color--dark-blue:hover{transition:color 0ms,background-color 0ms}.Button--color--dark-blue:focus{transition:color 100ms,background-color 100ms}.Button--color--dark-blue:hover,.Button--color--dark-blue:focus{background-color:#135b92;color:#fff}.Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#552dab;color:#fff}.Button--color--violet:hover{transition:color 0ms,background-color 0ms}.Button--color--violet:focus{transition:color 100ms,background-color 100ms}.Button--color--violet:hover,.Button--color--violet:focus{background-color:#7953cc;color:#fff}.Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#8b2baa;color:#fff}.Button--color--purple:hover{transition:color 0ms,background-color 0ms}.Button--color--purple:focus{transition:color 100ms,background-color 100ms}.Button--color--purple:hover,.Button--color--purple:focus{background-color:#ad4fcd;color:#fff}.Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#cf2082;color:#fff}.Button--color--pink:hover{transition:color 0ms,background-color 0ms}.Button--color--pink:focus{transition:color 100ms,background-color 100ms}.Button--color--pink:hover,.Button--color--pink:focus{background-color:#e257a5;color:#fff}.Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#8c5836;color:#fff}.Button--color--brown:hover{transition:color 0ms,background-color 0ms}.Button--color--brown:focus{transition:color 100ms,background-color 100ms}.Button--color--brown:hover,.Button--color--brown:focus{background-color:#b47851;color:#fff}.Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#646464;color:#fff}.Button--color--grey:hover{transition:color 0ms,background-color 0ms}.Button--color--grey:focus{transition:color 100ms,background-color 100ms}.Button--color--grey:hover,.Button--color--grey:focus{background-color:#868686;color:#fff}.Button--color--light-grey{transition:color 50ms,background-color 50ms;background-color:#919191;color:#fff}.Button--color--light-grey:hover{transition:color 0ms,background-color 0ms}.Button--color--light-grey:focus{transition:color 100ms,background-color 100ms}.Button--color--light-grey:hover,.Button--color--light-grey:focus{background-color:#bababa;color:#fff}.Button--color--good{transition:color 50ms,background-color 50ms;background-color:#4d9121;color:#fff}.Button--color--good:hover{transition:color 0ms,background-color 0ms}.Button--color--good:focus{transition:color 100ms,background-color 100ms}.Button--color--good:hover,.Button--color--good:focus{background-color:#6cba39;color:#fff}.Button--color--average{transition:color 50ms,background-color 50ms;background-color:#cd7a0d;color:#fff}.Button--color--average:hover{transition:color 0ms,background-color 0ms}.Button--color--average:focus{transition:color 100ms,background-color 100ms}.Button--color--average:hover,.Button--color--average:focus{background-color:#ed9d35;color:#fff}.Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--bad:hover{transition:color 0ms,background-color 0ms}.Button--color--bad:focus{transition:color 100ms,background-color 100ms}.Button--color--bad:hover,.Button--color--bad:focus{background-color:#dc4848;color:#fff}.Button--color--label{transition:color 50ms,background-color 50ms;background-color:#657a94;color:#fff}.Button--color--label:hover{transition:color 0ms,background-color 0ms}.Button--color--label:focus{transition:color 100ms,background-color 100ms}.Button--color--label:hover,.Button--color--label:focus{background-color:#91a1b3;color:#fff}.Button--color--xeno{transition:color 50ms,background-color 50ms;background-color:#462f4e;color:#fff}.Button--color--xeno:hover{transition:color 0ms,background-color 0ms}.Button--color--xeno:focus{transition:color 100ms,background-color 100ms}.Button--color--xeno:hover,.Button--color--xeno:focus{background-color:#64496d;color:#fff}.Button--color--default{transition:color 50ms,background-color 50ms;background-color:#3e6189;color:#fff}.Button--color--default:hover{transition:color 0ms,background-color 0ms}.Button--color--default:focus{transition:color 100ms,background-color 100ms}.Button--color--default:hover,.Button--color--default:focus{background-color:#5c83b0;color:#fff}.Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--caution:hover{transition:color 0ms,background-color 0ms}.Button--color--caution:focus{transition:color 100ms,background-color 100ms}.Button--color--caution:hover,.Button--color--caution:focus{background-color:#f5d72e;color:#000}.Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--danger:hover{transition:color 0ms,background-color 0ms}.Button--color--danger:focus{transition:color 100ms,background-color 100ms}.Button--color--danger:hover,.Button--color--danger:focus{background-color:#dc4848;color:#fff}.Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#202020;color:#fff;background-color:rgba(32,32,32,0);color:rgba(255,255,255,.5)}.Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.Button--color--transparent:hover,.Button--color--transparent:focus{background-color:#383838;color:#fff}.Button--disabled{background-color:#999 !important}.Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--selected:hover{transition:color 0ms,background-color 0ms}.Button--selected:focus{transition:color 100ms,background-color 100ms}.Button--selected:hover,.Button--selected:focus{background-color:#32c154;color:#fff}.Button--flex{display:inline-flex;flex-direction:column}.Button--flex--fluid{width:100%}.Button--verticalAlignContent--top{justify-content:flex-start}.Button--verticalAlignContent--middle{justify-content:center}.Button--verticalAlignContent--bottom{justify-content:flex-end}.Button__content{display:block;align-self:stretch}.ColorBox{display:inline-block;width:1em;height:1em;line-height:1em;text-align:center}.Dimmer{display:flex;justify-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,.75);z-index:1}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Dropdown{position:relative}.Dropdown__control{position:relative;display:inline-block;font-family:Verdana,sans-serif;font-size:1em;width:8.3333333333em;line-height:1.4166666667em;user-select:none}.Dropdown__arrow-button{float:right;padding-left:.35em;width:1.2em;height:1.8333333333em;border-left:.0833333333em solid #000;border-left:.0833333333em solid rgba(0,0,0,.25)}.Dropdown__menu{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;overflow-y:scroll;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menu-noscroll{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menuentry{padding:.1666666667em .3333333333em;font-family:Verdana,sans-serif;font-size:1em;line-height:1.4166666667em;transition:background-color 100ms ease-out}.Dropdown__menuentry:hover{background-color:rgba(255,255,255,.2);transition:background-color 0ms}.Dropdown__over{top:auto;bottom:100%}.Dropdown__selected-text{display:inline-block;text-overflow:ellipsis;white-space:nowrap;height:1.4166666667em;width:calc(100% - 1.2em)}.Flex{display:-ms-flexbox;display:flex}.Flex--inline{display:inline-flex}.Flex--iefix{display:block}.Flex--iefix.Flex--inline{display:inline-block}.Flex__item--iefix{display:inline-block}.Flex--iefix--column>.Flex__item--iefix{display:block}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto;margin-bottom:-0.2em;cursor:n-resize}.Knob:after{content:".";color:transparent;line-height:2.5em}.Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:rgba(255,255,255,.9)}.Knob__popupValue{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.Knob__ringTrackPivot{transform:rotateZ(135deg)}.Knob__ringTrack{fill:transparent;stroke:rgba(255,255,255,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.Knob__ringFillPivot{transform:rotateZ(135deg)}.Knob--bipolar .Knob__ringFillPivot{transform:rotateZ(270deg)}.Knob__ringFill{fill:transparent;stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.Knob--color--black .Knob__ringFill{stroke:#1a1a1a}.Knob--color--white .Knob__ringFill{stroke:#fff}.Knob--color--red .Knob__ringFill{stroke:#df3e3e}.Knob--color--orange .Knob__ringFill{stroke:#f37f33}.Knob--color--yellow .Knob__ringFill{stroke:#fbda21}.Knob--color--olive .Knob__ringFill{stroke:#cbe41c}.Knob--color--green .Knob__ringFill{stroke:#25ca4c}.Knob--color--teal .Knob__ringFill{stroke:#00d6cc}.Knob--color--blue .Knob__ringFill{stroke:#2e93de}.Knob--color--dark-blue .Knob__ringFill{stroke:#005fa7}.Knob--color--violet .Knob__ringFill{stroke:#7349cf}.Knob--color--purple .Knob__ringFill{stroke:#ad45d0}.Knob--color--pink .Knob__ringFill{stroke:#e34da1}.Knob--color--brown .Knob__ringFill{stroke:#b97447}.Knob--color--grey .Knob__ringFill{stroke:#848484}.Knob--color--light-grey .Knob__ringFill{stroke:#b3b3b3}.Knob--color--good .Knob__ringFill{stroke:#68c22d}.Knob--color--average .Knob__ringFill{stroke:#f29a29}.Knob--color--bad .Knob__ringFill{stroke:#df3e3e}.Knob--color--label .Knob__ringFill{stroke:#8b9bb0}.Knob--color--xeno .Knob__ringFill{stroke:#664573}.LabeledList{display:table;width:100%;width:calc(100% + 1em);border-collapse:collapse;border-spacing:0;margin:-0.25em -0.5em;margin-bottom:0;padding:0}.LabeledList__row{display:table-row}.LabeledList__row:last-child .LabeledList__cell{padding-bottom:0}.LabeledList__cell{display:table-cell;margin:0;padding:.25em .5em;border:0;text-align:left}.LabeledList__label--nowrap{width:1%;white-space:nowrap;min-width:5em}.LabeledList__buttons{width:.1%;white-space:nowrap;text-align:right;padding-top:.0833333333em;padding-bottom:0}.Modal{background-color:#202020;max-width:calc(100% - 1rem);padding:1rem}.NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:bold;font-style:italic;color:#000;background-color:#bb9b68;background-image:repeating-linear-gradient(-45deg, transparent, transparent 0.8333333333em, rgba(0, 0, 0, 0.1) 0.8333333333em, rgba(0, 0, 0, 0.1) 1.6666666667em)}.NoticeBox--color--black{color:#fff;background-color:#000}.NoticeBox--color--white{color:#000;background-color:#b3b3b3}.NoticeBox--color--red{color:#fff;background-color:#701f1f}.NoticeBox--color--orange{color:#fff;background-color:#854114}.NoticeBox--color--yellow{color:#000;background-color:#83710d}.NoticeBox--color--olive{color:#000;background-color:#576015}.NoticeBox--color--green{color:#fff;background-color:#174e24}.NoticeBox--color--teal{color:#fff;background-color:#064845}.NoticeBox--color--blue{color:#fff;background-color:#1b4565}.NoticeBox--color--dark-blue{color:#fff;background-color:#02121f}.NoticeBox--color--violet{color:#fff;background-color:#3b2864}.NoticeBox--color--purple{color:#fff;background-color:#542663}.NoticeBox--color--pink{color:#fff;background-color:#802257}.NoticeBox--color--brown{color:#fff;background-color:#4c3729}.NoticeBox--color--grey{color:#fff;background-color:#3e3e3e}.NoticeBox--color--light-grey{color:#fff;background-color:#6a6a6a}.NoticeBox--color--good{color:#fff;background-color:#2e4b1a}.NoticeBox--color--average{color:#fff;background-color:#7b4e13}.NoticeBox--color--bad{color:#fff;background-color:#701f1f}.NoticeBox--color--label{color:#fff;background-color:#53565a}.NoticeBox--color--xeno{color:#fff;background-color:#19161b}.NoticeBox--type--info{color:#fff;background-color:#235982}.NoticeBox--type--success{color:#fff;background-color:#1e662f}.NoticeBox--type--warning{color:#fff;background-color:#a95219}.NoticeBox--type--danger{color:#fff;background-color:#8f2828}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.NumberInput{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#88bfff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.NumberInput--fluid{display:block}.NumberInput__content{margin-left:.5em}.NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #88bfff;background-color:#88bfff}.NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-width:.0833333333em !important;border-style:solid !important;border-radius:.16em;background-color:rgba(0,0,0,0);transition:border-color 900ms ease-out}.ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.ProgressBar--color--default{border:.0833333333em solid #3e6189}.ProgressBar--color--default .ProgressBar__fill{background-color:#3e6189}.ProgressBar--color--black{border-color:#000 !important}.ProgressBar--color--black .ProgressBar__fill{background-color:#000}.ProgressBar--color--white{border-color:#d9d9d9 !important}.ProgressBar--color--white .ProgressBar__fill{background-color:#d9d9d9}.ProgressBar--color--red{border-color:#bd2020 !important}.ProgressBar--color--red .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--orange{border-color:#d95e0c !important}.ProgressBar--color--orange .ProgressBar__fill{background-color:#d95e0c}.ProgressBar--color--yellow{border-color:#d9b804 !important}.ProgressBar--color--yellow .ProgressBar__fill{background-color:#d9b804}.ProgressBar--color--olive{border-color:#9aad14 !important}.ProgressBar--color--olive .ProgressBar__fill{background-color:#9aad14}.ProgressBar--color--green{border-color:#1b9638 !important}.ProgressBar--color--green .ProgressBar__fill{background-color:#1b9638}.ProgressBar--color--teal{border-color:#009a93 !important}.ProgressBar--color--teal .ProgressBar__fill{background-color:#009a93}.ProgressBar--color--blue{border-color:#1c71b1 !important}.ProgressBar--color--blue .ProgressBar__fill{background-color:#1c71b1}.ProgressBar--color--dark-blue{border-color:#003e6e !important}.ProgressBar--color--dark-blue .ProgressBar__fill{background-color:#003e6e}.ProgressBar--color--violet{border-color:#552dab !important}.ProgressBar--color--violet .ProgressBar__fill{background-color:#552dab}.ProgressBar--color--purple{border-color:#8b2baa !important}.ProgressBar--color--purple .ProgressBar__fill{background-color:#8b2baa}.ProgressBar--color--pink{border-color:#cf2082 !important}.ProgressBar--color--pink .ProgressBar__fill{background-color:#cf2082}.ProgressBar--color--brown{border-color:#8c5836 !important}.ProgressBar--color--brown .ProgressBar__fill{background-color:#8c5836}.ProgressBar--color--grey{border-color:#646464 !important}.ProgressBar--color--grey .ProgressBar__fill{background-color:#646464}.ProgressBar--color--light-grey{border-color:#919191 !important}.ProgressBar--color--light-grey .ProgressBar__fill{background-color:#919191}.ProgressBar--color--good{border-color:#4d9121 !important}.ProgressBar--color--good .ProgressBar__fill{background-color:#4d9121}.ProgressBar--color--average{border-color:#cd7a0d !important}.ProgressBar--color--average .ProgressBar__fill{background-color:#cd7a0d}.ProgressBar--color--bad{border-color:#bd2020 !important}.ProgressBar--color--bad .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--label{border-color:#657a94 !important}.ProgressBar--color--label .ProgressBar__fill{background-color:#657a94}.ProgressBar--color--xeno{border-color:#462f4e !important}.ProgressBar--color--xeno .ProgressBar__fill{background-color:#462f4e}.Section{position:relative;margin-bottom:.5em;background-color:#131313;background-color:#131313;box-sizing:border-box}.Section:last-child{margin-bottom:0}.Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #4972a1}.Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.Section__rest{position:relative}.Section__content{padding:.66em .5em}.Section--fitted>.Section__rest>.Section__content{padding:0}.Section--fill{display:flex;flex-direction:column;height:100%}.Section--fill>.Section__rest{flex-grow:1}.Section--fill>.Section__rest>.Section__content{height:100%}.Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.Section--scrollable{overflow-x:hidden;overflow-y:hidden}.Section--scrollable>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:hidden}.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:hidden;overflow-x:scroll}.Section--scrollable.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.Section--scrollable.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:scroll}.Section .Section{background-color:transparent;margin-left:-0.5em;margin-right:-0.5em}.Section .Section:first-child{margin-top:-0.5em}.Section .Section .Section__titleText{font-size:1.0833333333em}.Section .Section .Section .Section__titleText{font-size:1em}.Slider{cursor:e-resize}.Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none !important}.Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #fff}.Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid transparent;border-right:.4166666667em solid transparent;border-bottom:.4166666667em solid #fff}.Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--fill{height:100%}.Stack--horizontal>.Stack__item{margin-left:.5em}.Stack--horizontal>.Stack__item:first-child{margin-left:0}.Stack--vertical>.Stack__item{margin-top:.5em}.Stack--vertical>.Stack__item:first-child{margin-top:0}.Stack--horizontal>.Stack__divider:not(.Stack__divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--vertical>.Stack__divider:not(.Stack__divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Table{display:table;width:100%;border-collapse:collapse;border-spacing:0;margin:0}.Table--collapsing{width:auto}.Table__row{display:table-row}.Table__cell{display:table-cell;padding:0 .25em}.Table__cell:first-child{padding-left:0}.Table__cell:last-child{padding-right:0}.Table__row--header .Table__cell,.Table__cell--header{font-weight:bold;padding-bottom:.5em}.Table__cell--collapsing{width:1%;white-space:nowrap}.Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:#131313}.Tabs--fill{height:100%}.Section .Tabs{background-color:transparent}.Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.Tabs--horizontal:last-child{margin-bottom:0}.Tabs__Tab{flex-grow:0}.Tabs--fluid .Tabs__Tab{flex-grow:1}.Tab{display:flex;align-items:center;justify-content:space-between;background-color:transparent;color:rgba(255,255,255,.5);min-height:2.25em;min-width:4em}.Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075)}.Tab--selected{background-color:rgba(255,255,255,.125);color:#dfe7f0}.Tab__text{flex-grow:1;margin:0 .5em}.Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.Tabs--horizontal .Tab{border-top:.1666666667em solid transparent;border-bottom:.1666666667em solid transparent;border-top-left-radius:.25em;border-top-right-radius:.25em}.Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #d4dfec}.Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid transparent;border-right:.1666666667em solid transparent;border-top-left-radius:.25em;border-bottom-left-radius:.25em}.Tabs--vertical .Tab--selected{border-right:.1666666667em solid #d4dfec}.Tab--selected.Tab--color--black{color:#535353}.Tabs--horizontal .Tab--selected.Tab--color--black{border-bottom-color:#1a1a1a}.Tabs--vertical .Tab--selected.Tab--color--black{border-right-color:#1a1a1a}.Tab--selected.Tab--color--white{color:#fff}.Tabs--horizontal .Tab--selected.Tab--color--white{border-bottom-color:#fff}.Tabs--vertical .Tab--selected.Tab--color--white{border-right-color:#fff}.Tab--selected.Tab--color--red{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--red{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--red{border-right-color:#df3e3e}.Tab--selected.Tab--color--orange{color:#f69f66}.Tabs--horizontal .Tab--selected.Tab--color--orange{border-bottom-color:#f37f33}.Tabs--vertical .Tab--selected.Tab--color--orange{border-right-color:#f37f33}.Tab--selected.Tab--color--yellow{color:#fce358}.Tabs--horizontal .Tab--selected.Tab--color--yellow{border-bottom-color:#fbda21}.Tabs--vertical .Tab--selected.Tab--color--yellow{border-right-color:#fbda21}.Tab--selected.Tab--color--olive{color:#d8eb55}.Tabs--horizontal .Tab--selected.Tab--color--olive{border-bottom-color:#cbe41c}.Tabs--vertical .Tab--selected.Tab--color--olive{border-right-color:#cbe41c}.Tab--selected.Tab--color--green{color:#53e074}.Tabs--horizontal .Tab--selected.Tab--color--green{border-bottom-color:#25ca4c}.Tabs--vertical .Tab--selected.Tab--color--green{border-right-color:#25ca4c}.Tab--selected.Tab--color--teal{color:#21fff5}.Tabs--horizontal .Tab--selected.Tab--color--teal{border-bottom-color:#00d6cc}.Tabs--vertical .Tab--selected.Tab--color--teal{border-right-color:#00d6cc}.Tab--selected.Tab--color--blue{color:#62aee6}.Tabs--horizontal .Tab--selected.Tab--color--blue{border-bottom-color:#2e93de}.Tabs--vertical .Tab--selected.Tab--color--blue{border-right-color:#2e93de}.Tab--selected.Tab--color--dark-blue{color:#008ffd}.Tabs--horizontal .Tab--selected.Tab--color--dark-blue{border-bottom-color:#005fa7}.Tabs--vertical .Tab--selected.Tab--color--dark-blue{border-right-color:#005fa7}.Tab--selected.Tab--color--violet{color:#9676db}.Tabs--horizontal .Tab--selected.Tab--color--violet{border-bottom-color:#7349cf}.Tabs--vertical .Tab--selected.Tab--color--violet{border-right-color:#7349cf}.Tab--selected.Tab--color--purple{color:#c274db}.Tabs--horizontal .Tab--selected.Tab--color--purple{border-bottom-color:#ad45d0}.Tabs--vertical .Tab--selected.Tab--color--purple{border-right-color:#ad45d0}.Tab--selected.Tab--color--pink{color:#ea79b9}.Tabs--horizontal .Tab--selected.Tab--color--pink{border-bottom-color:#e34da1}.Tabs--vertical .Tab--selected.Tab--color--pink{border-right-color:#e34da1}.Tab--selected.Tab--color--brown{color:#ca9775}.Tabs--horizontal .Tab--selected.Tab--color--brown{border-bottom-color:#b97447}.Tabs--vertical .Tab--selected.Tab--color--brown{border-right-color:#b97447}.Tab--selected.Tab--color--grey{color:#a3a3a3}.Tabs--horizontal .Tab--selected.Tab--color--grey{border-bottom-color:#848484}.Tabs--vertical .Tab--selected.Tab--color--grey{border-right-color:#848484}.Tab--selected.Tab--color--light-grey{color:#c6c6c6}.Tabs--horizontal .Tab--selected.Tab--color--light-grey{border-bottom-color:#b3b3b3}.Tabs--vertical .Tab--selected.Tab--color--light-grey{border-right-color:#b3b3b3}.Tab--selected.Tab--color--good{color:#8cd95a}.Tabs--horizontal .Tab--selected.Tab--color--good{border-bottom-color:#68c22d}.Tabs--vertical .Tab--selected.Tab--color--good{border-right-color:#68c22d}.Tab--selected.Tab--color--average{color:#f5b35e}.Tabs--horizontal .Tab--selected.Tab--color--average{border-bottom-color:#f29a29}.Tabs--vertical .Tab--selected.Tab--color--average{border-right-color:#f29a29}.Tab--selected.Tab--color--bad{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--bad{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--bad{border-right-color:#df3e3e}.Tab--selected.Tab--color--label{color:#a8b4c4}.Tabs--horizontal .Tab--selected.Tab--color--label{border-bottom-color:#8b9bb0}.Tabs--vertical .Tab--selected.Tab--color--label{border-right-color:#8b9bb0}.Tab--selected.Tab--color--xeno{color:#9366a3}.Tabs--horizontal .Tab--selected.Tab--color--xeno{border-bottom-color:#664573}.Tabs--vertical .Tab--selected.Tab--color--xeno{border-right-color:#664573}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.TextArea{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;background-color:#0a0a0a;margin-right:.1666666667em;line-height:1.4166666667em;box-sizing:border-box;width:100%}.TextArea--fluid{display:block;width:auto;height:auto}.TextArea--noborder{border:0px}.TextArea__textarea.TextArea__textarea--scrollable{overflow:auto;overflow-x:hidden;overflow-y:scroll}.TextArea__textarea{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;height:100%;font-size:1em;line-height:1.4166666667em;min-height:1.4166666667em;margin:0;padding:0 .5em;font-family:inherit;background-color:transparent;color:inherit;box-sizing:border-box;word-wrap:break-word;overflow:hidden}.TextArea__textarea:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.TextArea__textarea_custom{overflow:visible;white-space:pre-wrap}.Tooltip{z-index:2;padding:.5em .75em;pointer-events:none;text-align:left;transition:opacity 150ms ease-out;background-color:#000;color:#fff;box-shadow:.1em .1em 1.25em -0.1em rgba(0,0,0,.5);border-radius:.16em;max-width:20.8333333333em}.Chat{color:#abc6ec}.Chat__badge{display:inline-block;min-width:.5em;font-size:.7em;padding:.2em .3em;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:crimson;border-radius:10px;transition:font-size 200ms ease-out}.Chat__badge:before{content:"x"}.Chat__badge--animate{font-size:.9em;transition:font-size 0ms}.Chat__scrollButton{position:fixed;right:2em;bottom:1em}.Chat__reconnected{font-size:.85em;text-align:center;margin:1em 0 2em}.Chat__reconnected:before{content:"Reconnected";display:inline-block;border-radius:1em;padding:0 .7em;color:#db2828;background-color:#131313}.Chat__reconnected:after{content:"";display:block;margin-top:-0.75em;border-bottom:.1666666667em solid #db2828}.Chat__highlight{color:#000}.Chat__highlight--restricted{color:#fff;background-color:#a00;font-weight:bold}.ChatMessage{word-wrap:break-word}.ChatMessage--highlighted{position:relative;border-left:.1666666667em solid #fd4;padding-left:.5em}.ChatMessage--highlighted:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(255,221,68,.1);pointer-events:none}.Ping{position:relative;padding:.125em .25em;border:.0833333333em solid rgba(140,140,140,.5);border-radius:.25em;width:3.75em;text-align:right}.Ping__indicator{content:"";position:absolute;top:.5em;left:.5em;width:.5em;height:.5em;background-color:#888;border-radius:.25em}.Notifications{position:absolute;bottom:1em;left:1em;right:2em}.Notification{color:#fff;background-color:crimson;padding:.5em;margin:1em 0}.Notification:first-child{margin-top:0}.Notification:last-child{margin-bottom:0}.Layout,.Layout *{scrollbar-base-color:#181818;scrollbar-face-color:#363636;scrollbar-3dlight-color:#202020;scrollbar-highlight-color:#202020;scrollbar-track-color:#181818;scrollbar-arrow-color:#909090;scrollbar-shadow-color:#363636}.Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.Layout__content--scrollable{overflow-y:scroll;margin-bottom:0}.Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#202020;background-image:linear-gradient(to bottom, #202020 0%, #202020 100%)}.Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.Window__contentPadding:after{height:0}.Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(56,56,56,.25);pointer-events:none}.Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}em{font-style:normal;font-weight:bold}img{margin:0;padding:0;line-height:1;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated}img.icon{height:1em;min-height:16px;width:auto;vertical-align:bottom}a{color:#397ea5}a.visited{color:#7c00e6}a:visited{color:#7c00e6}a.popt{text-decoration:none}.popup{position:fixed;top:50%;left:50%;background:#ddd}.popup .close{position:absolute;background:#aaa;top:0;right:0;color:#333;text-decoration:none;z-index:2;padding:0 10px;height:30px;line-height:30px}.popup .close:hover{background:#999}.popup .head{background:#999;color:#ddd;padding:0 10px;height:30px;line-height:30px;text-transform:uppercase;font-size:.9em;font-weight:bold;border-bottom:2px solid green}.popup input{border:1px solid #999;background:#fff;margin:0;padding:5px;outline:none;color:#333}.popup input[type=text]:hover,.popup input[type=text]:active,.popup input[type=text]:focus{border-color:green}.popup input[type=submit]{padding:5px 10px;background:#999;color:#ddd;text-transform:uppercase;font-size:.9em;font-weight:bold}.popup input[type=submit]:hover,.popup input[type=submit]:focus,.popup input[type=submit]:active{background:#aaa;cursor:pointer}.changeFont{padding:10px}.changeFont a{display:block;text-decoration:none;padding:3px;color:#333}.changeFont a:hover{background:#ccc}.highlightPopup{padding:10px;text-align:center}.highlightPopup input[type=text]{display:block;width:215px;text-align:left;margin-top:5px}.highlightPopup input.highlightColor{background-color:#ff0}.highlightPopup input.highlightTermSubmit{margin-top:5px}.contextMenu{background-color:#ddd;position:fixed;margin:2px;width:150px}.contextMenu a{display:block;padding:2px 5px;text-decoration:none;color:#333}.contextMenu a:hover{background-color:#ccc}.filterMessages{padding:5px}.filterMessages div{padding:2px 0}.icon-stack{height:1em;line-height:1em;width:1em;vertical-align:middle;margin-top:-2px}.motd{color:#a4bad6;font-family:Verdana,sans-serif;white-space:normal}.motd h1,.motd h2,.motd h3,.motd h4,.motd h5,.motd h6{color:#a4bad6;text-decoration:underline}.motd a,.motd a:link,.motd a:visited,.motd a:active,.motd a:hover{color:#a4bad6}.bold,.name,.prefix,.ooc,.looc,.adminooc,.admin,.medal,.yell{font-weight:bold}.italic,.italics{font-style:italic}.highlight{background:#ff0}h1,h2,h3,h4,h5,h6{color:#a4bad6;font-family:Georgia,Verdana,sans-serif}h1.alert,h2.alert{color:#a4bad6}em{font-style:normal;font-weight:bold}.ooc{font-weight:bold}.adminobserverooc{color:#09c;font-weight:bold}.adminooc{color:#3d5bc3;font-weight:bold}.adminsay{color:#9611d4;font-weight:bold}.admin{color:#5975da;font-weight:bold}.name{font-weight:bold}.deadsay{color:#e2c1ff}.binarysay{color:#1e90ff}.binarysay a{color:lime}.binarysay a:active,.binarysay a:visited{color:#8f8}.radio{color:#1ecc43}.sciradio{color:#c68cfa}.comradio{color:#fcdf03}.secradio{color:#dd3535}.medradio{color:#57b8f0}.engradio{color:#f37746}.suppradio{color:#b88646}.servradio{color:#6ca729}.syndradio{color:#8f4a4b}.gangradio{color:#ac2ea1}.centcomradio{color:#2681a5}.aiprivradio{color:#d65d95}.redteamradio{color:#f44}.blueteamradio{color:#3434fd}.greenteamradio{color:#34fd34}.yellowteamradio{color:#fdfd34}.yell{font-weight:bold}.alert{color:#d82020}.userdanger{color:#c51e1e;font-weight:bold;font-size:185%}.bolddanger{color:#c51e1e;font-weight:bold}.danger{color:#c51e1e}.warning{color:#c51e1e;font-style:italic}.alertwarning{color:red;font-weight:bold}.boldwarning{color:#c51e1e;font-style:italic;font-weight:bold}.announce{color:#c51e1e;font-weight:bold}.boldannounce{color:#c51e1e;font-weight:bold}.minorannounce{font-weight:bold;font-size:185%}.greenannounce{color:#059223;font-weight:bold}.rose{color:#ff5050}.info{color:#9ab0ff}.notice{color:#6685f5}.staff_ic{color:#6685f5}.tinynotice{color:#6685f5;font-size:85%}.tinynoticeital{color:#6685f5;font-style:italic;font-size:85%}.smallnotice{color:#6685f5;font-size:90%}.smallnoticeital{color:#6685f5;font-style:italic;font-size:90%}.boldnotice{color:#6685f5;font-weight:bold}.hear{color:#6685f5;font-style:italic}.adminnotice{color:#6685f5}.adminhelp{color:red;font-weight:bold}.unconscious{color:#a4bad6;font-weight:bold}.suicide{color:#ff5050;font-style:italic}.green{color:#059223}.grey{color:#838383}.red{color:red}.blue{color:#215cff}.nicegreen{color:#059223}.boldnicegreen{color:#059223;font-weight:bold}.cult{color:#973e3b}.cultitalic{color:#973e3b;font-style:italic}.cultbold{color:#973e3b;font-style:italic;font-weight:bold}.cultboldtalic{color:#973e3b;font-weight:bold;font-size:185%}.cultlarge{color:#973e3b;font-weight:bold;font-size:185%}.narsie{color:#973e3b;font-weight:bold;font-size:925%}.narsiesmall{color:#973e3b;font-weight:bold;font-size:370%}.colossus{color:#7f282a;font-size:310%}.hierophant{color:#b441ee;font-weight:bold;font-style:italic}.hierophant_warning{color:#c56bf1;font-style:italic}.purple{color:#9956d3}.holoparasite{color:#88809c}.revennotice{color:#c099e2}.revenboldnotice{color:#c099e2;font-weight:bold}.revenbignotice{color:#c099e2;font-weight:bold;font-size:185%}.revenminor{color:#823abb}.revenwarning{color:#760fbb;font-style:italic}.revendanger{color:#760fbb;font-weight:bold;font-size:185%}.deconversion_message{color:#a947ff;font-size:185%;font-style:italic}.ghostalert{color:#60f;font-style:italic;font-weight:bold}.alien{color:#855d85}.noticealien{color:#059223}.alertalien{color:#059223;font-weight:bold}.changeling{color:#059223;font-style:italic}.alertsyndie{color:red;font-size:185%;font-weight:bold}.spider{color:#80f;font-weight:bold;font-size:185%}.interface{color:#750e75}.sans{font-family:"Comic Sans MS",cursive,sans-serif}.papyrus{font-family:"Papyrus",cursive,sans-serif}.robot{font-family:"Courier New",cursive,sans-serif}.tape_recorder{color:red;font-family:"Courier New",cursive,sans-serif}.command_headset{font-weight:bold;font-size:160%}.small{font-size:60%}.big{font-size:185%}.reallybig{font-size:245%}.extremelybig{font-size:310%}.greentext{color:#059223;font-size:185%}.redtext{color:#c51e1e;font-size:185%}.clown{color:#ff70c1;font-size:160%;font-family:"Comic Sans MS",cursive,sans-serif;font-weight:bold}.singing{font-family:"Trebuchet MS",cursive,sans-serif;font-style:italic}.his_grace{color:#15d512;font-family:"Courier New",cursive,sans-serif;font-style:italic}.hypnophrase{color:#202020;font-weight:bold;animation:hypnocolor 1500ms infinite;animation-direction:alternate}@keyframes hypnocolor{0%{color:#202020}25%{color:#4b02ac}50%{color:#9f41f1}75%{color:#541c9c}100%{color:#7adbf3}}.phobia{color:#d00;font-weight:bold;animation:phobia 750ms infinite}@keyframes phobia{0%{color:#f75a5a}50%{color:#d00}100%{color:#f75a5a}}.icon{height:1em;width:auto}.bigicon{font-size:2.5em}.memo{color:#638500;text-align:center}.memoedit{text-align:center;font-size:125%}.abductor{color:#c204c2;font-style:italic}.mind_control{color:#df3da9;font-size:100%;font-weight:bold;font-style:italic}.slime{color:#00ced1}.drone{color:#848482}.monkey{color:#975032}.swarmer{color:#2c75ff}.resonate{color:#298f85}.monkeyhive{color:#a56408}.monkeylead{color:#af6805;font-size:80%}.connectionClosed,.fatalError{background:red;color:#fff;padding:5px}.connectionClosed.restored{background:green}.internal.boldnshit{color:#3d5bc3;font-weight:bold}.text-normal{font-weight:normal;font-style:normal}.hidden{display:none;visibility:hidden}.ml-1{margin-left:1em}.ml-2{margin-left:2em}.ml-3{margin-left:3em}.xooc{color:#ac04e9;font-weight:bold;font-size:140%}.mooc{color:#090;font-weight:bold;font-size:140%}.yooc{color:#999600;font-weight:bold;font-size:140%}.headminsay{color:#653d78;font-weight:bold}.radio{color:#b4b4b4}.deptradio{color:#939}.comradio{color:#779cc2}.centradio{color:#5c5c8a}.hcradio{color:#318779}.pvstradio{color:#9b0612}.cryoradio{color:#ad6d48}.airadio{color:#f0f}.secradio{color:#a52929}.engradio{color:#a66300}.sentryradio{color:#844300}.sentryradio{color:#844300}.medradio{color:#008160}.supradio{color:#ba8e41}.jtacradio{color:#ad3b98}.intelradio{color:#027d02}.wyradio{color:#fe9b24}.pmcradio{color:#4dc5ce}.vairadio{color:#e3580e}.rmcradio{color:#e3580e}.cmbradio{color:#1b748c}.clfradio{color:#8e83ca}.alpharadio{color:#505bc9}.bravoradio{color:#c68610}.charlieradio{color:#a5a}.deltaradio{color:#007fcf}.echoradio{color:#3eb489}.medium{font-size:110%}.big{font-size:115%}.large{font-size:125%}.extra_large{font-size:130%}.huge{font-size:150%}.underline{text-decoration:underline}.orange{color:#eca100}.normal{font-style:normal}.attack{color:#ff3838}.moderate{color:#c00}.disarm{color:#900}.passive{color:#600}.helpful{color:#368f31}.scanner{color:#ff3838}.scannerb{color:#ff3838;font-weight:bold}.scannerburn{color:orange}.scannerburnb{color:orange;font-weight:bold}.rose{color:#ff5050}.debuginfo{color:#493d26;font-style:italic}.xenonotice{color:#51a16c}.xenoboldnotice{color:#51a16c;font-style:italic}.xenowarning{color:#51a16c;font-style:italic}.xenominorwarning{color:#51a16c;font-weight:bold;font-style:italic}.xenodanger{color:#51a16c;font-weight:bold}.avoidharm{color:#72a0e5;font-weight:bold}.highdanger{color:#ff3838;font-weight:bold;font-size:140%}.xenohighdanger{color:#51a16c;font-weight:bold;font-size:140%}.xenoannounce{color:#65c585;font-family:book-antiqua;font-weight:bold;font-size:140%}.yautjabold{color:purple;font-weight:bold}.yautjaboldbig{color:purple;font-weight:bold;font-size:120%}.objectivebig{font-weight:bold;font-size:130%}.objectivegreen{color:lime}.objectivered{color:red}.objectivesuccess{color:lime;font-weight:bold;font-size:110%}.objectivefail{color:red;font-weight:bold;font-size:110%}.xenotalk,.xeno{color:#c048c0;font-style:italic}.xenoleader{color:#996e99;font-style:italic;font-size:125%}.xenoqueen{color:#996e99;font-style:italic;font-weight:bold;font-size:125%}.newscaster{color:maroon}.role_header{color:#e92d2d;display:block;text-align:center;font-weight:bold;font-family:trebuchet-ms;font-size:150%}.role_body{color:#3a3ae9;display:block;text-align:center;font-size:125%}.round_header{color:#e92d2d;display:block;text-align:center;font-family:courier;font-weight:bold;font-size:180%}.round_body{color:#c5c5c5;display:block;text-align:center;font-family:trebuchet-ms;font-weight:bold;font-size:125%}.event_announcement{color:#600d48;font-family:arial-narrow;font-weight:bold;font-size:125%}.announce_header{color:#cecece;font-weight:bold;font-size:150%}.announce_header_blue{color:#7575f3;font-weight:bold;font-size:150%}.announce_header_admin{color:#7575f3;font-weight:bold;font-size:150%}.announce_body{color:#e92d2d;font-weight:normal;font-size:125%}.centerbold{display:block;text-align:center;font-weight:bold}.mod{color:#917455;font-weight:bold}.modooc{color:#184880;font-weight:bold}.adminmod{color:#7c440c;font-weight:bold}.mentorsay{color:#d4af57;font-weight:bold}.mentorhelp{color:#090;font-weight:bold}.mentorbody{color:#da6200;font-weight:bold}.mentorstaff{color:#b5850d;font-weight:bold}.staffsay{color:#b5850d;font-weight:bold}.tajaran{color:#803b56}.tajaran_signlang{color:#941c1c}.skrell{color:#00ced1}.soghun{color:#228b22}.changeling{color:purple}.vox{color:#a0a}.monkey{color:#966c47}.german{color:#858f1e;font-family:"Times New Roman",Times,serif}.spanish{color:#cf982b}.japanese{color:#940927}.chinese{color:#fe1919}.zombie{color:#2dacb1;font-style:italic}.rough{font-family:trebuchet-ms,cursive,sans-serif}.commando{color:#fe9b24;font-style:bold}.say_quote{font-family:Georgia,Verdana,sans-serif}.admin .message{color:#314cad}.admin .prefix{font-weight:bolder}.pm{font-size:110%}.deadsay{color:#8b4dff}.retro_translator{font-weight:bold}.yautja_translator{color:#a00;font-weight:bold;animation:glitch .5s infinite}@keyframes glitch{25%{color:#a00;transform:translate(-2px, -1px)}50%{color:#be0000;transform:translate(1px, -2px)}75%{color:#8d0000;transform:translate(-1px, 2px)}100%{color:#830000;transform:translate(1px, 1px)}}.examine_block{background:#1b1c1e;border:1px solid #a4bad6;margin:.5em;padding:.5em .75em}.examine_block .icon{width:1.5em;height:1.5em;margin:0;padding:0}.tooltip{font-style:italic;border-bottom:1px dashed #fff} -.theme-light .color-black{color:#000 !important}.theme-light .color-white{color:#e6e6e6 !important}.theme-light .color-red{color:#c82121 !important}.theme-light .color-orange{color:#e6630d !important}.theme-light .color-yellow{color:#e5c304 !important}.theme-light .color-olive{color:#a3b816 !important}.theme-light .color-green{color:#1d9f3b !important}.theme-light .color-teal{color:#00a39c !important}.theme-light .color-blue{color:#1e78bb !important}.theme-light .color-dark-blue{color:#004274 !important}.theme-light .color-violet{color:#5a30b5 !important}.theme-light .color-purple{color:#932eb4 !important}.theme-light .color-pink{color:#db228a !important}.theme-light .color-brown{color:#955d39 !important}.theme-light .color-grey{color:#e6e6e6 !important}.theme-light .color-light-grey{color:#999 !important}.theme-light .color-good{color:#529923 !important}.theme-light .color-average{color:#da810e !important}.theme-light .color-bad{color:#c82121 !important}.theme-light .color-label{color:#353535 !important}.theme-light .color-xeno{color:#4a3253 !important}.theme-light .color-bg-black{background-color:#000 !important}.theme-light .color-bg-white{background-color:#bfbfbf !important}.theme-light .color-bg-red{background-color:#a61c1c !important}.theme-light .color-bg-orange{background-color:#c0530b !important}.theme-light .color-bg-yellow{background-color:#bfa303 !important}.theme-light .color-bg-olive{background-color:#889912 !important}.theme-light .color-bg-green{background-color:#188532 !important}.theme-light .color-bg-teal{background-color:#008882 !important}.theme-light .color-bg-blue{background-color:#19649c !important}.theme-light .color-bg-dark-blue{background-color:#003761 !important}.theme-light .color-bg-violet{background-color:#4b2897 !important}.theme-light .color-bg-purple{background-color:#7a2696 !important}.theme-light .color-bg-pink{background-color:#b61d73 !important}.theme-light .color-bg-brown{background-color:#7c4d2f !important}.theme-light .color-bg-grey{background-color:#bfbfbf !important}.theme-light .color-bg-light-grey{background-color:gray !important}.theme-light .color-bg-good{background-color:#44801d !important}.theme-light .color-bg-average{background-color:#b56b0b !important}.theme-light .color-bg-bad{background-color:#a61c1c !important}.theme-light .color-bg-label{background-color:#2c2c2c !important}.theme-light .color-bg-xeno{background-color:#3e2945 !important}.theme-light .Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:#fff}.theme-light .Tabs--fill{height:100%}.theme-light .Section .Tabs{background-color:transparent}.theme-light .Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.theme-light .Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.theme-light .Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.theme-light .Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.theme-light .Tabs--horizontal:last-child{margin-bottom:0}.theme-light .Tabs__Tab{flex-grow:0}.theme-light .Tabs--fluid .Tabs__Tab{flex-grow:1}.theme-light .Tab{display:flex;align-items:center;justify-content:space-between;background-color:transparent;color:rgba(0,0,0,.5);min-height:2.25em;min-width:4em}.theme-light .Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075)}.theme-light .Tab--selected{background-color:rgba(255,255,255,.125);color:#404040}.theme-light .Tab__text{flex-grow:1;margin:0 .5em}.theme-light .Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.theme-light .Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.theme-light .Tabs--horizontal .Tab{border-top:.1666666667em solid transparent;border-bottom:.1666666667em solid transparent;border-top-left-radius:.25em;border-top-right-radius:.25em}.theme-light .Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #000}.theme-light .Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid transparent;border-right:.1666666667em solid transparent;border-top-left-radius:.25em;border-bottom-left-radius:.25em}.theme-light .Tabs--vertical .Tab--selected{border-right:.1666666667em solid #000}.theme-light .Tab--selected.Tab--color--black{color:#404040}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--black{border-bottom-color:#000}.theme-light .Tabs--vertical .Tab--selected.Tab--color--black{border-right-color:#000}.theme-light .Tab--selected.Tab--color--white{color:#ececec}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--white{border-bottom-color:#e6e6e6}.theme-light .Tabs--vertical .Tab--selected.Tab--color--white{border-right-color:#e6e6e6}.theme-light .Tab--selected.Tab--color--red{color:#e14d4d}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--red{border-bottom-color:#c82121}.theme-light .Tabs--vertical .Tab--selected.Tab--color--red{border-right-color:#c82121}.theme-light .Tab--selected.Tab--color--orange{color:#f48942}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--orange{border-bottom-color:#e6630d}.theme-light .Tabs--vertical .Tab--selected.Tab--color--orange{border-right-color:#e6630d}.theme-light .Tab--selected.Tab--color--yellow{color:#fcdd33}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--yellow{border-bottom-color:#e5c304}.theme-light .Tabs--vertical .Tab--selected.Tab--color--yellow{border-right-color:#e5c304}.theme-light .Tab--selected.Tab--color--olive{color:#d0e732}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--olive{border-bottom-color:#a3b816}.theme-light .Tabs--vertical .Tab--selected.Tab--color--olive{border-right-color:#a3b816}.theme-light .Tab--selected.Tab--color--green{color:#33da5a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--green{border-bottom-color:#1d9f3b}.theme-light .Tabs--vertical .Tab--selected.Tab--color--green{border-right-color:#1d9f3b}.theme-light .Tab--selected.Tab--color--teal{color:#00faef}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--teal{border-bottom-color:#00a39c}.theme-light .Tabs--vertical .Tab--selected.Tab--color--teal{border-right-color:#00a39c}.theme-light .Tab--selected.Tab--color--blue{color:#419ce1}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--blue{border-bottom-color:#1e78bb}.theme-light .Tabs--vertical .Tab--selected.Tab--color--blue{border-right-color:#1e78bb}.theme-light .Tab--selected.Tab--color--dark-blue{color:#0079d7}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--dark-blue{border-bottom-color:#004274}.theme-light .Tabs--vertical .Tab--selected.Tab--color--dark-blue{border-right-color:#004274}.theme-light .Tab--selected.Tab--color--violet{color:#7f58d3}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--violet{border-bottom-color:#5a30b5}.theme-light .Tabs--vertical .Tab--selected.Tab--color--violet{border-right-color:#5a30b5}.theme-light .Tab--selected.Tab--color--purple{color:#b455d4}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--purple{border-bottom-color:#932eb4}.theme-light .Tabs--vertical .Tab--selected.Tab--color--purple{border-right-color:#932eb4}.theme-light .Tab--selected.Tab--color--pink{color:#e558a7}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--pink{border-bottom-color:#db228a}.theme-light .Tabs--vertical .Tab--selected.Tab--color--pink{border-right-color:#db228a}.theme-light .Tab--selected.Tab--color--brown{color:#c0825a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--brown{border-bottom-color:#955d39}.theme-light .Tabs--vertical .Tab--selected.Tab--color--brown{border-right-color:#955d39}.theme-light .Tab--selected.Tab--color--grey{color:#ececec}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--grey{border-bottom-color:#e6e6e6}.theme-light .Tabs--vertical .Tab--selected.Tab--color--grey{border-right-color:#e6e6e6}.theme-light .Tab--selected.Tab--color--light-grey{color:#b3b3b3}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--light-grey{border-bottom-color:#999}.theme-light .Tabs--vertical .Tab--selected.Tab--color--light-grey{border-right-color:#999}.theme-light .Tab--selected.Tab--color--good{color:#77d23b}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--good{border-bottom-color:#529923}.theme-light .Tabs--vertical .Tab--selected.Tab--color--good{border-right-color:#529923}.theme-light .Tab--selected.Tab--color--average{color:#f3a23a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--average{border-bottom-color:#da810e}.theme-light .Tabs--vertical .Tab--selected.Tab--color--average{border-right-color:#da810e}.theme-light .Tab--selected.Tab--color--bad{color:#e14d4d}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--bad{border-bottom-color:#c82121}.theme-light .Tabs--vertical .Tab--selected.Tab--color--bad{border-right-color:#c82121}.theme-light .Tab--selected.Tab--color--label{color:#686868}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--label{border-bottom-color:#353535}.theme-light .Tabs--vertical .Tab--selected.Tab--color--label{border-right-color:#353535}.theme-light .Tab--selected.Tab--color--xeno{color:#7e558e}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--xeno{border-bottom-color:#4a3253}.theme-light .Tabs--vertical .Tab--selected.Tab--color--xeno{border-right-color:#4a3253}.theme-light .Section{position:relative;margin-bottom:.5em;background-color:#fff;background-color:#fff;box-sizing:border-box}.theme-light .Section:last-child{margin-bottom:0}.theme-light .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #fff}.theme-light .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#000}.theme-light .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-light .Section__rest{position:relative}.theme-light .Section__content{padding:.66em .5em}.theme-light .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-light .Section--fill{display:flex;flex-direction:column;height:100%}.theme-light .Section--fill>.Section__rest{flex-grow:1}.theme-light .Section--fill>.Section__rest>.Section__content{height:100%}.theme-light .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-light .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-light .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-light .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollable>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:hidden}.theme-light .Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:hidden;overflow-x:scroll}.theme-light .Section--scrollable.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollable.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:scroll}.theme-light .Section .Section{background-color:transparent;margin-left:-0.5em;margin-right:-0.5em}.theme-light .Section .Section:first-child{margin-top:-0.5em}.theme-light .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-light .Section .Section .Section .Section__titleText{font-size:1em}.theme-light .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-light .Button:last-child{margin-right:0;margin-bottom:0}.theme-light .Button .fa,.theme-light .Button .fas,.theme-light .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-light .Button--hasContent .fa,.theme-light .Button--hasContent .fas,.theme-light .Button--hasContent .far{margin-right:.25em}.theme-light .Button--hasContent.Button--iconPosition--right .fa,.theme-light .Button--hasContent.Button--iconPosition--right .fas,.theme-light .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-light .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-light .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-light .Button--circular{border-radius:50%}.theme-light .Button--compact{padding:0 .25em;line-height:1.333em}.theme-light .Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-light .Button--color--black:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--black:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--black:hover,.theme-light .Button--color--black:focus{background-color:#131313;color:#fff}.theme-light .Button--color--white{transition:color 50ms,background-color 50ms;background-color:#bfbfbf;color:#000}.theme-light .Button--color--white:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--white:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--white:hover,.theme-light .Button--color--white:focus{background-color:#efefef;color:#000}.theme-light .Button--color--red{transition:color 50ms,background-color 50ms;background-color:#a61c1c;color:#fff}.theme-light .Button--color--red:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--red:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--red:hover,.theme-light .Button--color--red:focus{background-color:#d23333;color:#fff}.theme-light .Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#c0530b;color:#fff}.theme-light .Button--color--orange:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--orange:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--orange:hover,.theme-light .Button--color--orange:focus{background-color:#ea7426;color:#fff}.theme-light .Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#bfa303;color:#fff}.theme-light .Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--yellow:hover,.theme-light .Button--color--yellow:focus{background-color:#efce17;color:#fff}.theme-light .Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#889912;color:#fff}.theme-light .Button--color--olive:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--olive:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--olive:hover,.theme-light .Button--color--olive:focus{background-color:#afc328;color:#fff}.theme-light .Button--color--green{transition:color 50ms,background-color 50ms;background-color:#188532;color:#fff}.theme-light .Button--color--green:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--green:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--green:hover,.theme-light .Button--color--green:focus{background-color:#2fac4c;color:#fff}.theme-light .Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#008882;color:#fff}.theme-light .Button--color--teal:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--teal:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--teal:hover,.theme-light .Button--color--teal:focus{background-color:#13afa9;color:#fff}.theme-light .Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#19649c;color:#fff}.theme-light .Button--color--blue:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--blue:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--blue:hover,.theme-light .Button--color--blue:focus{background-color:#3086c7;color:#fff}.theme-light .Button--color--dark-blue{transition:color 50ms,background-color 50ms;background-color:#003761;color:#fff}.theme-light .Button--color--dark-blue:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--dark-blue:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--dark-blue:hover,.theme-light .Button--color--dark-blue:focus{background-color:#135283;color:#fff}.theme-light .Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#4b2897;color:#fff}.theme-light .Button--color--violet:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--violet:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--violet:hover,.theme-light .Button--color--violet:focus{background-color:#6a41c1;color:#fff}.theme-light .Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#7a2696;color:#fff}.theme-light .Button--color--purple:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--purple:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--purple:hover,.theme-light .Button--color--purple:focus{background-color:#a03fc0;color:#fff}.theme-light .Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#b61d73;color:#fff}.theme-light .Button--color--pink:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--pink:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--pink:hover,.theme-light .Button--color--pink:focus{background-color:#da3f96;color:#fff}.theme-light .Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#7c4d2f;color:#fff}.theme-light .Button--color--brown:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--brown:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--brown:hover,.theme-light .Button--color--brown:focus{background-color:#a26c49;color:#fff}.theme-light .Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#bfbfbf;color:#000}.theme-light .Button--color--grey:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--grey:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--grey:hover,.theme-light .Button--color--grey:focus{background-color:#efefef;color:#000}.theme-light .Button--color--light-grey{transition:color 50ms,background-color 50ms;background-color:gray;color:#fff}.theme-light .Button--color--light-grey:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--light-grey:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--light-grey:hover,.theme-light .Button--color--light-grey:focus{background-color:#a6a6a6;color:#fff}.theme-light .Button--color--good{transition:color 50ms,background-color 50ms;background-color:#44801d;color:#fff}.theme-light .Button--color--good:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--good:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--good:hover,.theme-light .Button--color--good:focus{background-color:#62a635;color:#fff}.theme-light .Button--color--average{transition:color 50ms,background-color 50ms;background-color:#b56b0b;color:#fff}.theme-light .Button--color--average:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--average:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--average:hover,.theme-light .Button--color--average:focus{background-color:#e48f20;color:#fff}.theme-light .Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#a61c1c;color:#fff}.theme-light .Button--color--bad:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--bad:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--bad:hover,.theme-light .Button--color--bad:focus{background-color:#d23333;color:#fff}.theme-light .Button--color--label{transition:color 50ms,background-color 50ms;background-color:#2c2c2c;color:#fff}.theme-light .Button--color--label:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--label:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--label:hover,.theme-light .Button--color--label:focus{background-color:#464646;color:#fff}.theme-light .Button--color--xeno{transition:color 50ms,background-color 50ms;background-color:#3e2945;color:#fff}.theme-light .Button--color--xeno:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--xeno:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--xeno:hover,.theme-light .Button--color--xeno:focus{background-color:#5a4363;color:#fff}.theme-light .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#bbb;color:#000}.theme-light .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--default:hover,.theme-light .Button--color--default:focus{background-color:#eaeaea;color:#000}.theme-light .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-light .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--caution:hover,.theme-light .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-light .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-light .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--danger:hover,.theme-light .Button--color--danger:focus{background-color:#c4c813;color:#fff}.theme-light .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#eee;color:#000;background-color:rgba(238,238,238,0);color:rgba(0,0,0,.5)}.theme-light .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--transparent:hover,.theme-light .Button--color--transparent:focus{background-color:#fcfcfc;color:#000}.theme-light .Button--disabled{background-color:#363636 !important}.theme-light .Button--selected{transition:color 50ms,background-color 50ms;background-color:#0668b8;color:#fff}.theme-light .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--selected:hover,.theme-light .Button--selected:focus{background-color:#1a8be7;color:#fff}.theme-light .Button--flex{display:inline-flex;flex-direction:column}.theme-light .Button--flex--fluid{width:100%}.theme-light .Button--verticalAlignContent--top{justify-content:flex-start}.theme-light .Button--verticalAlignContent--middle{justify-content:center}.theme-light .Button--verticalAlignContent--bottom{justify-content:flex-end}.theme-light .Button__content{display:block;align-self:stretch}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#353535;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-light .NumberInput--fluid{display:block}.theme-light .NumberInput__content{margin-left:.5em}.theme-light .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-light .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #353535;background-color:#353535}.theme-light .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#fff;color:#000;text-align:right}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .TextArea{position:relative;display:inline-block;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;background-color:#fff;margin-right:.1666666667em;line-height:1.4166666667em;box-sizing:border-box;width:100%}.theme-light .TextArea--fluid{display:block;width:auto;height:auto}.theme-light .TextArea--noborder{border:0px}.theme-light .TextArea__textarea.TextArea__textarea--scrollable{overflow:auto;overflow-x:hidden;overflow-y:scroll}.theme-light .TextArea__textarea{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;height:100%;font-size:1em;line-height:1.4166666667em;min-height:1.4166666667em;margin:0;padding:0 .5em;font-family:inherit;background-color:transparent;color:inherit;box-sizing:border-box;word-wrap:break-word;overflow:hidden}.theme-light .TextArea__textarea:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .TextArea__textarea_custom{overflow:visible;white-space:pre-wrap}.theme-light .Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto;margin-bottom:-0.2em;cursor:n-resize}.theme-light .Knob:after{content:".";color:transparent;line-height:2.5em}.theme-light .Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.theme-light .Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.theme-light .Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:rgba(255,255,255,.9)}.theme-light .Knob__popupValue{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.theme-light .Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.theme-light .Knob__ringTrackPivot{transform:rotateZ(135deg)}.theme-light .Knob__ringTrack{fill:transparent;stroke:rgba(255,255,255,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.theme-light .Knob__ringFillPivot{transform:rotateZ(135deg)}.theme-light .Knob--bipolar .Knob__ringFillPivot{transform:rotateZ(270deg)}.theme-light .Knob__ringFill{fill:transparent;stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.theme-light .Knob--color--black .Knob__ringFill{stroke:#000}.theme-light .Knob--color--white .Knob__ringFill{stroke:#e6e6e6}.theme-light .Knob--color--red .Knob__ringFill{stroke:#c82121}.theme-light .Knob--color--orange .Knob__ringFill{stroke:#e6630d}.theme-light .Knob--color--yellow .Knob__ringFill{stroke:#e5c304}.theme-light .Knob--color--olive .Knob__ringFill{stroke:#a3b816}.theme-light .Knob--color--green .Knob__ringFill{stroke:#1d9f3b}.theme-light .Knob--color--teal .Knob__ringFill{stroke:#00a39c}.theme-light .Knob--color--blue .Knob__ringFill{stroke:#1e78bb}.theme-light .Knob--color--dark-blue .Knob__ringFill{stroke:#004274}.theme-light .Knob--color--violet .Knob__ringFill{stroke:#5a30b5}.theme-light .Knob--color--purple .Knob__ringFill{stroke:#932eb4}.theme-light .Knob--color--pink .Knob__ringFill{stroke:#db228a}.theme-light .Knob--color--brown .Knob__ringFill{stroke:#955d39}.theme-light .Knob--color--grey .Knob__ringFill{stroke:#e6e6e6}.theme-light .Knob--color--light-grey .Knob__ringFill{stroke:#999}.theme-light .Knob--color--good .Knob__ringFill{stroke:#529923}.theme-light .Knob--color--average .Knob__ringFill{stroke:#da810e}.theme-light .Knob--color--bad .Knob__ringFill{stroke:#c82121}.theme-light .Knob--color--label .Knob__ringFill{stroke:#353535}.theme-light .Knob--color--xeno .Knob__ringFill{stroke:#4a3253}.theme-light .Slider{cursor:e-resize}.theme-light .Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none !important}.theme-light .Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #000}.theme-light .Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid transparent;border-right:.4166666667em solid transparent;border-bottom:.4166666667em solid #000}.theme-light .Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.theme-light .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-width:.0833333333em !important;border-style:solid !important;border-radius:.16em;background-color:rgba(0,0,0,0);transition:border-color 900ms ease-out}.theme-light .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-light .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-light .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-light .ProgressBar--color--default{border:.0833333333em solid #bfbfbf}.theme-light .ProgressBar--color--default .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--black{border-color:#000 !important}.theme-light .ProgressBar--color--black .ProgressBar__fill{background-color:#000}.theme-light .ProgressBar--color--white{border-color:#bfbfbf !important}.theme-light .ProgressBar--color--white .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--red{border-color:#a61c1c !important}.theme-light .ProgressBar--color--red .ProgressBar__fill{background-color:#a61c1c}.theme-light .ProgressBar--color--orange{border-color:#c0530b !important}.theme-light .ProgressBar--color--orange .ProgressBar__fill{background-color:#c0530b}.theme-light .ProgressBar--color--yellow{border-color:#bfa303 !important}.theme-light .ProgressBar--color--yellow .ProgressBar__fill{background-color:#bfa303}.theme-light .ProgressBar--color--olive{border-color:#889912 !important}.theme-light .ProgressBar--color--olive .ProgressBar__fill{background-color:#889912}.theme-light .ProgressBar--color--green{border-color:#188532 !important}.theme-light .ProgressBar--color--green .ProgressBar__fill{background-color:#188532}.theme-light .ProgressBar--color--teal{border-color:#008882 !important}.theme-light .ProgressBar--color--teal .ProgressBar__fill{background-color:#008882}.theme-light .ProgressBar--color--blue{border-color:#19649c !important}.theme-light .ProgressBar--color--blue .ProgressBar__fill{background-color:#19649c}.theme-light .ProgressBar--color--dark-blue{border-color:#003761 !important}.theme-light .ProgressBar--color--dark-blue .ProgressBar__fill{background-color:#003761}.theme-light .ProgressBar--color--violet{border-color:#4b2897 !important}.theme-light .ProgressBar--color--violet .ProgressBar__fill{background-color:#4b2897}.theme-light .ProgressBar--color--purple{border-color:#7a2696 !important}.theme-light .ProgressBar--color--purple .ProgressBar__fill{background-color:#7a2696}.theme-light .ProgressBar--color--pink{border-color:#b61d73 !important}.theme-light .ProgressBar--color--pink .ProgressBar__fill{background-color:#b61d73}.theme-light .ProgressBar--color--brown{border-color:#7c4d2f !important}.theme-light .ProgressBar--color--brown .ProgressBar__fill{background-color:#7c4d2f}.theme-light .ProgressBar--color--grey{border-color:#bfbfbf !important}.theme-light .ProgressBar--color--grey .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--light-grey{border-color:gray !important}.theme-light .ProgressBar--color--light-grey .ProgressBar__fill{background-color:gray}.theme-light .ProgressBar--color--good{border-color:#44801d !important}.theme-light .ProgressBar--color--good .ProgressBar__fill{background-color:#44801d}.theme-light .ProgressBar--color--average{border-color:#b56b0b !important}.theme-light .ProgressBar--color--average .ProgressBar__fill{background-color:#b56b0b}.theme-light .ProgressBar--color--bad{border-color:#a61c1c !important}.theme-light .ProgressBar--color--bad .ProgressBar__fill{background-color:#a61c1c}.theme-light .ProgressBar--color--label{border-color:#2c2c2c !important}.theme-light .ProgressBar--color--label .ProgressBar__fill{background-color:#2c2c2c}.theme-light .ProgressBar--color--xeno{border-color:#3e2945 !important}.theme-light .ProgressBar--color--xeno .ProgressBar__fill{background-color:#3e2945}.theme-light .Chat{color:#000}.theme-light .Chat__badge{display:inline-block;min-width:.5em;font-size:.7em;padding:.2em .3em;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:crimson;border-radius:10px;transition:font-size 200ms ease-out}.theme-light .Chat__badge:before{content:"x"}.theme-light .Chat__badge--animate{font-size:.9em;transition:font-size 0ms}.theme-light .Chat__scrollButton{position:fixed;right:2em;bottom:1em}.theme-light .Chat__reconnected{font-size:.85em;text-align:center;margin:1em 0 2em}.theme-light .Chat__reconnected:before{content:"Reconnected";display:inline-block;border-radius:1em;padding:0 .7em;color:#db2828;background-color:#fff}.theme-light .Chat__reconnected:after{content:"";display:block;margin-top:-0.75em;border-bottom:.1666666667em solid #db2828}.theme-light .Chat__highlight{color:#000}.theme-light .Chat__highlight--restricted{color:#fff;background-color:#a00;font-weight:bold}.theme-light .ChatMessage{word-wrap:break-word}.theme-light .ChatMessage--highlighted{position:relative;border-left:.1666666667em solid #fd4;padding-left:.5em}.theme-light .ChatMessage--highlighted:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(255,221,68,.1);pointer-events:none}.theme-light .Layout,.theme-light .Layout *{scrollbar-base-color:#f2f2f2;scrollbar-face-color:#d6d6d6;scrollbar-3dlight-color:#eee;scrollbar-highlight-color:#eee;scrollbar-track-color:#f2f2f2;scrollbar-arrow-color:#777;scrollbar-shadow-color:#d6d6d6}.theme-light .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-light .Layout__content--scrollable{overflow-y:scroll;margin-bottom:0}.theme-light .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#000;background-color:#eee;background-image:linear-gradient(to bottom, #eeeeee 0%, #eeeeee 100%)}.theme-light .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-light .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-light .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-light .Window__contentPadding:after{height:0}.theme-light .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-light .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(252,252,252,.25);pointer-events:none}.theme-light .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-light .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-light .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-light .TitleBar{background-color:#eee;border-bottom:1px solid rgba(0,0,0,.25);box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-light .TitleBar__clickable{color:rgba(0,0,0,.5);background-color:#eee;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-light .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-light .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(0,0,0,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-light .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-light .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-light .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-light .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-light .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-light html,.theme-light body{padding:0;margin:0;height:100%;color:#000}.theme-light body{background:#fff;font-family:Verdana,sans-serif;font-size:13px;line-height:1.2;overflow-x:hidden;overflow-y:scroll;word-wrap:break-word}.theme-light em{font-style:normal;font-weight:bold}.theme-light img{margin:0;padding:0;line-height:1;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated}.theme-light img.icon{height:1em;min-height:16px;width:auto;vertical-align:bottom}.theme-light a{color:blue}.theme-light a.visited{color:#f0f}.theme-light a:visited{color:#f0f}.theme-light a.popt{text-decoration:none}.theme-light .popup{position:fixed;top:50%;left:50%;background:#ddd}.theme-light .popup .close{position:absolute;background:#aaa;top:0;right:0;color:#333;text-decoration:none;z-index:2;padding:0 10px;height:30px;line-height:30px}.theme-light .popup .close:hover{background:#999}.theme-light .popup .head{background:#999;color:#ddd;padding:0 10px;height:30px;line-height:30px;text-transform:uppercase;font-size:.9em;font-weight:bold;border-bottom:2px solid green}.theme-light .popup input{border:1px solid #999;background:#fff;margin:0;padding:5px;outline:none;color:#333}.theme-light .popup input[type=text]:hover,.theme-light .popup input[type=text]:active,.theme-light .popup input[type=text]:focus{border-color:green}.theme-light .popup input[type=submit]{padding:5px 10px;background:#999;color:#ddd;text-transform:uppercase;font-size:.9em;font-weight:bold}.theme-light .popup input[type=submit]:hover,.theme-light .popup input[type=submit]:focus,.theme-light .popup input[type=submit]:active{background:#aaa;cursor:pointer}.theme-light .changeFont{padding:10px}.theme-light .changeFont a{display:block;text-decoration:none;padding:3px;color:#333}.theme-light .changeFont a:hover{background:#ccc}.theme-light .highlightPopup{padding:10px;text-align:center}.theme-light .highlightPopup input[type=text]{display:block;width:215px;text-align:left;margin-top:5px}.theme-light .highlightPopup input.highlightColor{background-color:#ff0}.theme-light .highlightPopup input.highlightTermSubmit{margin-top:5px}.theme-light .contextMenu{background-color:#ddd;position:fixed;margin:2px;width:150px}.theme-light .contextMenu a{display:block;padding:2px 5px;text-decoration:none;color:#333}.theme-light .contextMenu a:hover{background-color:#ccc}.theme-light .filterMessages{padding:5px}.theme-light .filterMessages div{padding:2px 0}.theme-light .icon-stack{height:1em;line-height:1em;width:1em;vertical-align:middle;margin-top:-2px}.theme-light .motd{color:#638500;font-family:Verdana,sans-serif;white-space:normal}.theme-light .motd h1,.theme-light .motd h2,.theme-light .motd h3,.theme-light .motd h4,.theme-light .motd h5,.theme-light .motd h6{color:#638500;text-decoration:underline}.theme-light .motd a,.theme-light .motd a:link,.theme-light .motd a:visited,.theme-light .motd a:active,.theme-light .motd a:hover{color:#638500}.theme-light .bold,.theme-light .name,.theme-light .prefix,.theme-light .ooc,.theme-light .looc,.theme-light .adminooc,.theme-light .admin,.theme-light .medal,.theme-light .yell{font-weight:bold}.theme-light .italic,.theme-light .italics{font-style:italic}.theme-light .highlight{background:#ff0}.theme-light h1,.theme-light h2,.theme-light h3,.theme-light h4,.theme-light h5,.theme-light h6{color:blue;font-family:Georgia,Verdana,sans-serif}.theme-light h1.alert,.theme-light h2.alert{color:#000}.theme-light em{font-style:normal;font-weight:bold}.theme-light .ooc{font-weight:bold}.theme-light .adminobserverooc{color:#09c;font-weight:bold}.theme-light .adminooc{color:#700038;font-weight:bold}.theme-light .adminsay{color:#ff4500;font-weight:bold}.theme-light .admin{color:#4473ff;font-weight:bold}.theme-light .name{font-weight:bold}.theme-light .deadsay{color:#5c00e6}.theme-light .binarysay{color:#20c20e;background-color:#000;display:block}.theme-light .binarysay a{color:lime}.theme-light .binarysay a:active,.theme-light .binarysay a:visited{color:#8f8}.theme-light .radio{color:green}.theme-light .sciradio{color:#939}.theme-light .comradio{color:#948f02}.theme-light .secradio{color:#a30000}.theme-light .medradio{color:#337296}.theme-light .engradio{color:#fb5613}.theme-light .sentryradio{color:#844300}.theme-light .suppradio{color:#a8732b}.theme-light .servradio{color:#6eaa2c}.theme-light .syndradio{color:#6d3f40}.theme-light .gangradio{color:#ac2ea1}.theme-light .centcomradio{color:#686868}.theme-light .aiprivradio{color:#f0f}.theme-light .redteamradio{color:red}.theme-light .blueteamradio{color:blue}.theme-light .greenteamradio{color:lime}.theme-light .yellowteamradio{color:#d1ba22}.theme-light .yell{font-weight:bold}.theme-light .alert{color:red}.theme-light h1.alert,.theme-light h2.alert{color:#000}.theme-light .userdanger{color:red;font-weight:bold;font-size:185%}.theme-light .bolddanger{color:red;font-weight:bold}.theme-light .danger{color:red}.theme-light .tinydanger{color:red;font-size:85%}.theme-light .smalldanger{color:red;font-size:90%}.theme-light .warning{color:red;font-style:italic}.theme-light .alertwarning{color:red;font-weight:bold}.theme-light .boldwarning{color:red;font-style:italic;font-weight:bold}.theme-light .announce{color:#228b22;font-weight:bold}.theme-light .boldannounce{color:red;font-weight:bold}.theme-light .minorannounce{font-weight:bold;font-size:185%}.theme-light .greenannounce{color:lime;font-weight:bold}.theme-light .rose{color:#ff5050}.theme-light .info{color:#00c}.theme-light .notice{color:#009}.theme-light .staff_ic{color:#009}.theme-light .tinynotice{color:#009;font-size:85%}.theme-light .tinynoticeital{color:#009;font-style:italic;font-size:85%}.theme-light .smallnotice{color:#009;font-size:90%}.theme-light .smallnoticeital{color:#009;font-style:italic;font-size:90%}.theme-light .boldnotice{color:#009;font-weight:bold}.theme-light .hear{color:#009;font-style:italic}.theme-light .adminnotice{color:blue}.theme-light .adminhelp{color:red;font-weight:bold}.theme-light .unconscious{color:blue;font-weight:bold}.theme-light .suicide{color:#ff5050;font-style:italic}.theme-light .green{color:#03ff39}.theme-light .grey{color:#838383}.theme-light .red{color:red}.theme-light .blue{color:blue}.theme-light .nicegreen{color:#14a833}.theme-light .boldnicegreen{color:#14a833;font-weight:bold}.theme-light .cult{color:#973e3b}.theme-light .cultitalic{color:#973e3b;font-style:italic}.theme-light .cultbold{color:#973e3b;font-style:italic;font-weight:bold}.theme-light .cultboldtalic{color:#973e3b;font-weight:bold;font-size:185%}.theme-light .cultlarge{color:#973e3b;font-weight:bold;font-size:185%}.theme-light .narsie{color:#973e3b;font-weight:bold;font-size:925%}.theme-light .narsiesmall{color:#973e3b;font-weight:bold;font-size:370%}.theme-light .colossus{color:#7f282a;font-size:310%}.theme-light .hierophant{color:#609;font-weight:bold;font-style:italic}.theme-light .hierophant_warning{color:#609;font-style:italic}.theme-light .purple{color:#5e2d79}.theme-light .holoparasite{color:#35333a}.theme-light .revennotice{color:#1d2953}.theme-light .revenboldnotice{color:#1d2953;font-weight:bold}.theme-light .revenbignotice{color:#1d2953;font-weight:bold;font-size:185%}.theme-light .revenminor{color:#823abb}.theme-light .revenwarning{color:#760fbb;font-style:italic}.theme-light .revendanger{color:#760fbb;font-weight:bold;font-size:185%}.theme-light .deconversion_message{color:#5000a0;font-size:185%;font-style:italic}.theme-light .ghostalert{color:#5c00e6;font-style:italic;font-weight:bold}.theme-light .alien{color:#543354}.theme-light .noticealien{color:#00c000}.theme-light .alertalien{color:#00c000;font-weight:bold}.theme-light .changeling{color:purple;font-style:italic}.theme-light .alertsyndie{color:red;font-size:185%;font-weight:bold}.theme-light .spider{color:#4d004d;font-weight:bold;font-size:185%}.theme-light .interface{color:#303}.theme-light .sans{font-family:"Comic Sans MS",cursive,sans-serif}.theme-light .papyrus{font-family:"Papyrus",cursive,sans-serif}.theme-light .robot{font-family:"Courier New",cursive,sans-serif}.theme-light .tape_recorder{color:maroon;font-family:"Courier New",cursive,sans-serif}.theme-light .command_headset{font-weight:bold;font-size:160%}.theme-light .small{font-size:60%}.theme-light .big{font-size:185%}.theme-light .reallybig{font-size:245%}.theme-light .extremelybig{font-size:310%}.theme-light .greentext{color:lime;font-size:185%}.theme-light .redtext{color:red;font-size:185%}.theme-light .clown{color:#ff69bf;font-size:160%;font-family:"Comic Sans MS",cursive,sans-serif;font-weight:bold}.theme-light .singing{font-family:"Trebuchet MS",cursive,sans-serif;font-style:italic}.theme-light .his_grace{color:#15d512;font-family:"Courier New",cursive,sans-serif;font-style:italic}.theme-light .hypnophrase{color:#0d0d0d;font-weight:bold;animation:hypnocolor 1500ms infinite;animation-direction:alternate}@keyframes hypnocolor{0%{color:#0d0d0d}25%{color:#410194}50%{color:#7f17d8}75%{color:#410194}100%{color:#3bb5d3}}.theme-light .phobia{color:#d00;font-weight:bold;animation:phobia 750ms infinite}@keyframes phobia{0%{color:#0d0d0d}50%{color:#d00}100%{color:#0d0d0d}}.theme-light .icon{height:1em;width:auto}.theme-light .bigicon{font-size:2.5em}.theme-light .memo{color:#638500;text-align:center}.theme-light .memoedit{text-align:center;font-size:125%}.theme-light .abductor{color:purple;font-style:italic}.theme-light .mind_control{color:#a00d6f;font-size:100%;font-weight:bold;font-style:italic}.theme-light .slime{color:#00ced1}.theme-light .drone{color:#848482}.theme-light .monkey{color:#975032}.theme-light .swarmer{color:#2c75ff}.theme-light .resonate{color:#298f85}.theme-light .monkeyhive{color:#774704}.theme-light .monkeylead{color:#774704;font-size:80%}.theme-light .connectionClosed,.theme-light .fatalError{background:red;color:#fff;padding:5px}.theme-light .connectionClosed.restored{background:green}.theme-light .internal.boldnshit{color:blue;font-weight:bold}.theme-light .text-normal{font-weight:normal;font-style:normal}.theme-light .hidden{display:none;visibility:hidden}.theme-light .ml-1{margin-left:1em}.theme-light .ml-2{margin-left:2em}.theme-light .ml-3{margin-left:3em}.theme-light .xooc{color:#6c0094;font-weight:bold;font-size:140%}.theme-light .mooc{color:#090;font-weight:bold;font-size:140%}.theme-light .yooc{color:#999600;font-weight:bold;font-size:140%}.theme-light .headminsay{color:#5a0a7f;font-weight:bold}.theme-light .radio{color:#4e4e4e}.theme-light .deptradio{color:#939}.theme-light .comradio{color:#004080}.theme-light .centradio{color:#5c5c8a}.theme-light .cryoradio{color:#554e3f}.theme-light .hcradio{color:#318779}.theme-light .pvstradio{color:#9b0612}.theme-light .airadio{color:#f0f}.theme-light .secradio{color:#a30000}.theme-light .engradio{color:#a66300}.theme-light .sentryradio{color:#844300}.theme-light .medradio{color:#008160}.theme-light .supradio{color:#5f4519}.theme-light .jtacradio{color:#702963}.theme-light .intelradio{color:#027d02}.theme-light .wyradio{color:#fe9b24}.theme-light .pmcradio{color:#136957}.theme-light .vairadio{color:#943d0a}.theme-light .cmbradio{color:#1b748c}.theme-light .clfradio{color:#6f679c}.theme-light .alpharadio{color:#505bc9}.theme-light .bravoradio{color:#c68610}.theme-light .charlieradio{color:#a5a}.theme-light .deltaradio{color:#007fcf}.theme-light .echoradio{color:#3a7e65}.theme-light .medium{font-size:110%}.theme-light .big{font-size:115%}.theme-light .large{font-size:125%}.theme-light .extra_large{font-size:130%}.theme-light .huge{font-size:150%}.theme-light .underline{text-decoration:underline}.theme-light .orange{color:#eca100}.theme-light .normal{font-style:normal}.theme-light .attack{color:red}.theme-light .moderate{color:#c00}.theme-light .disarm{color:#900}.theme-light .passive{color:#600}.theme-light .helpful{color:#368f31}.theme-light .scanner{color:red}.theme-light .scannerb{color:red;font-weight:bold}.theme-light .scannerburn{color:orange}.theme-light .scannerburnb{color:orange;font-weight:bold}.theme-light .rose{color:#ff5050}.theme-light .debuginfo{color:#493d26;font-style:italic}.theme-light .xenonotice{color:#2a623d}.theme-light .xenoboldnotice{color:#2a623d;font-style:italic}.theme-light .xenowarning{color:#2a623d;font-style:italic}.theme-light .xenominorwarning{color:#2a623d;font-weight:bold;font-style:italic}.theme-light .xenodanger{color:#2a623d;font-weight:bold}.theme-light .avoidharm{color:#72a0e5;font-weight:bold}.theme-light .highdanger{color:red;font-weight:bold;font-size:140%}.theme-light .xenohighdanger{color:#2a623d;font-weight:bold;font-size:140%}.theme-light .xenoannounce{color:#1a472a;font-family:book-antiqua;font-weight:bold;font-size:140%}.theme-light .yautjabold{color:purple;font-weight:bold}.theme-light .yautjaboldbig{color:purple;font-weight:bold;font-size:120%}.theme-light .objectivebig{font-weight:bold;font-size:130%}.theme-light .objectivegreen{color:lime}.theme-light .objectivered{color:red}.theme-light .objectivesuccess{color:lime;font-weight:bold;font-size:110%}.theme-light .objectivefail{color:red;font-weight:bold;font-size:110%}.theme-light .xenotalk,.theme-light .xeno{color:#900090;font-style:italic}.theme-light .xenoleader{color:#730d73;font-style:italic;font-size:125%}.theme-light .xenoqueen{color:#730d73;font-style:italic;font-weight:bold;font-size:125%}.theme-light .newscaster{color:maroon}.theme-light .role_header{color:#db0000;display:block;text-align:center;font-weight:bold;font-family:trebuchet-ms;font-size:150%}.theme-light .role_body{color:#009;display:block;text-align:center;font-size:125%}.theme-light .round_header{color:#db0000;display:block;text-align:center;font-family:courier;font-weight:bold;font-size:180%}.theme-light .round_body{color:#001427;display:block;text-align:center;font-family:trebuchet-ms;font-weight:bold;font-size:125%}.theme-light .event_announcement{color:#600d48;font-family:arial-narrow;font-weight:bold;font-size:125%}.theme-light .announce_header{color:#000;font-weight:bold;font-size:150%}.theme-light .announce_header_blue{color:#009;font-weight:bold;font-size:150%}.theme-light .announce_body{color:red;font-weight:normal;font-size:125%}.theme-light .centerbold{display:block;text-align:center;font-weight:bold}.theme-light .mod{color:#735638;font-weight:bold}.theme-light .modooc{color:#184880;font-weight:bold}.theme-light .adminmod{color:#402a14;font-weight:bold}.theme-light .mentorsay{color:#b38c32;font-weight:bold}.theme-light .mentorhelp{color:#007e00;font-weight:bold}.theme-light .mentorbody{color:#da6200;font-weight:bold}.theme-light .mentorstaff{color:#876101;font-weight:bold}.theme-light .staffsay{color:#876101;font-weight:bold}.theme-light .tajaran{color:#803b56}.theme-light .tajaran_signlang{color:#941c1c}.theme-light .skrell{color:#00ced1}.theme-light .soghun{color:#228b22}.theme-light .changeling{color:purple}.theme-light .vox{color:#a0a}.theme-light .monkey{color:#966c47}.theme-light .german{color:#858f1e;font-family:"Times New Roman",Times,serif}.theme-light .spanish{color:#cf982b}.theme-light .japanese{color:#940927}.theme-light .chinese{color:#fe1919}.theme-light .zombie{color:#216163;font-style:italic}.theme-light .commando{color:#fe9b24;font-style:bold}.theme-light .rough{font-family:trebuchet-ms,cursive,sans-serif}.theme-light .say_quote{font-family:Georgia,Verdana,sans-serif}.theme-light .admin .message{color:#314cad}.theme-light .admin .prefix{font-weight:bolder}.theme-light .pm{font-size:110%}.theme-light .retro_translator{font-weight:bold}.theme-light .yautja_translator{color:#a00;font-weight:bold;animation:glitch .5s infinite}@keyframes glitch{25%{color:#a00;transform:translate(-2px, -1px)}50%{color:#be0000;transform:translate(1px, -2px)}75%{color:#8d0000;transform:translate(-1px, 2px)}100%{color:#830000;transform:translate(1px, 1px)}}.theme-light .examine_block{background:#f2f7fa;border:1px solid #111a27;margin:.5em;padding:.5em .75em}.theme-light .examine_block .icon{width:1.5em;height:1.5em;margin:0;padding:0}.theme-light .tooltip{font-style:italic;border-bottom:1px dashed #000} +html,body{box-sizing:border-box;height:100%;margin:0;font-size:12px}html{overflow:hidden;cursor:default}body{overflow:auto;font-family:Verdana,Geneva,sans-serif}*,*:before,*:after{box-sizing:inherit}h1,h2,h3,h4,h5,h6{display:block;margin:0;padding:6px 0;padding:.5rem 0}h1{font-size:18px;font-size:1.5rem}h2{font-size:16px;font-size:1.333rem}h3{font-size:14px;font-size:1.167rem}h4{font-size:12px;font-size:1rem}td,th{vertical-align:baseline;text-align:left}.candystripe:nth-child(odd){background-color:rgba(0,0,0,.25)}.color-black{color:#1a1a1a !important}.color-white{color:#fff !important}.color-red{color:#df3e3e !important}.color-orange{color:#f37f33 !important}.color-yellow{color:#fbda21 !important}.color-olive{color:#cbe41c !important}.color-green{color:#25ca4c !important}.color-teal{color:#00d6cc !important}.color-blue{color:#2e93de !important}.color-dark-blue{color:#005fa7 !important}.color-violet{color:#7349cf !important}.color-purple{color:#ad45d0 !important}.color-pink{color:#e34da1 !important}.color-brown{color:#b97447 !important}.color-grey{color:#848484 !important}.color-light-grey{color:#b3b3b3 !important}.color-good{color:#68c22d !important}.color-average{color:#f29a29 !important}.color-bad{color:#df3e3e !important}.color-label{color:#8b9bb0 !important}.color-xeno{color:#664573 !important}.color-bg-black{background-color:#000 !important}.color-bg-white{background-color:#d9d9d9 !important}.color-bg-red{background-color:#bd2020 !important}.color-bg-orange{background-color:#d95e0c !important}.color-bg-yellow{background-color:#d9b804 !important}.color-bg-olive{background-color:#9aad14 !important}.color-bg-green{background-color:#1b9638 !important}.color-bg-teal{background-color:#009a93 !important}.color-bg-blue{background-color:#1c71b1 !important}.color-bg-dark-blue{background-color:#003e6e !important}.color-bg-violet{background-color:#552dab !important}.color-bg-purple{background-color:#8b2baa !important}.color-bg-pink{background-color:#cf2082 !important}.color-bg-brown{background-color:#8c5836 !important}.color-bg-grey{background-color:#646464 !important}.color-bg-light-grey{background-color:#919191 !important}.color-bg-good{background-color:#4d9121 !important}.color-bg-average{background-color:#cd7a0d !important}.color-bg-bad{background-color:#bd2020 !important}.color-bg-label{background-color:#657a94 !important}.color-bg-xeno{background-color:#462f4e !important}.debug-layout,.debug-layout *:not(g):not(path){color:rgba(255,255,255,.9) !important;background:transparent !important;outline:1px solid rgba(255,255,255,.5) !important;box-shadow:none !important;filter:none !important}.debug-layout:hover,.debug-layout *:not(g):not(path):hover{outline-color:rgba(255,255,255,.8) !important}.outline-dotted{outline-style:dotted !important}.outline-dashed{outline-style:dashed !important}.outline-solid{outline-style:solid !important}.outline-double{outline-style:double !important}.outline-groove{outline-style:groove !important}.outline-ridge{outline-style:ridge !important}.outline-inset{outline-style:inset !important}.outline-outset{outline-style:outset !important}.outline-color-black{outline:.167rem solid #1a1a1a !important}.outline-color-white{outline:.167rem solid #fff !important}.outline-color-red{outline:.167rem solid #df3e3e !important}.outline-color-orange{outline:.167rem solid #f37f33 !important}.outline-color-yellow{outline:.167rem solid #fbda21 !important}.outline-color-olive{outline:.167rem solid #cbe41c !important}.outline-color-green{outline:.167rem solid #25ca4c !important}.outline-color-teal{outline:.167rem solid #00d6cc !important}.outline-color-blue{outline:.167rem solid #2e93de !important}.outline-color-dark-blue{outline:.167rem solid #005fa7 !important}.outline-color-violet{outline:.167rem solid #7349cf !important}.outline-color-purple{outline:.167rem solid #ad45d0 !important}.outline-color-pink{outline:.167rem solid #e34da1 !important}.outline-color-brown{outline:.167rem solid #b97447 !important}.outline-color-grey{outline:.167rem solid #848484 !important}.outline-color-light-grey{outline:.167rem solid #b3b3b3 !important}.outline-color-good{outline:.167rem solid #68c22d !important}.outline-color-average{outline:.167rem solid #f29a29 !important}.outline-color-bad{outline:.167rem solid #df3e3e !important}.outline-color-label{outline:.167rem solid #8b9bb0 !important}.outline-color-xeno{outline:.167rem solid #664573 !important}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-baseline{text-align:baseline}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-pre{white-space:pre}.text-bold{font-weight:bold}.text-italic{font-style:italic}.text-underline{text-decoration:underline}.BlockQuote{color:#8b9bb0;border-left:.1666666667em solid #8b9bb0;padding-left:.5em;margin-bottom:.5em}.BlockQuote:last-child{margin-bottom:0}.Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.Button:last-child{margin-right:0;margin-bottom:0}.Button .fa,.Button .fas,.Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.Button--hasContent .fa,.Button--hasContent .fas,.Button--hasContent .far{margin-right:.25em}.Button--hasContent.Button--iconPosition--right .fa,.Button--hasContent.Button--iconPosition--right .fas,.Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.Button--fluid{display:block;margin-left:0;margin-right:0}.Button--circular{border-radius:50%}.Button--compact{padding:0 .25em;line-height:1.333em}.Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.Button--color--black:hover{transition:color 0ms,background-color 0ms}.Button--color--black:focus{transition:color 100ms,background-color 100ms}.Button--color--black:hover,.Button--color--black:focus{background-color:#131313;color:#fff}.Button--color--white{transition:color 50ms,background-color 50ms;background-color:#d9d9d9;color:#000}.Button--color--white:hover{transition:color 0ms,background-color 0ms}.Button--color--white:focus{transition:color 100ms,background-color 100ms}.Button--color--white:hover,.Button--color--white:focus{background-color:#f8f8f8;color:#000}.Button--color--red{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--red:hover{transition:color 0ms,background-color 0ms}.Button--color--red:focus{transition:color 100ms,background-color 100ms}.Button--color--red:hover,.Button--color--red:focus{background-color:#dc4848;color:#fff}.Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#d95e0c;color:#fff}.Button--color--orange:hover{transition:color 0ms,background-color 0ms}.Button--color--orange:focus{transition:color 100ms,background-color 100ms}.Button--color--orange:hover,.Button--color--orange:focus{background-color:#f0853f;color:#fff}.Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.Button--color--yellow:hover,.Button--color--yellow:focus{background-color:#f5d72e;color:#000}.Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#9aad14;color:#fff}.Button--color--olive:hover{transition:color 0ms,background-color 0ms}.Button--color--olive:focus{transition:color 100ms,background-color 100ms}.Button--color--olive:hover,.Button--color--olive:focus{background-color:#c4da2b;color:#fff}.Button--color--green{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--color--green:hover{transition:color 0ms,background-color 0ms}.Button--color--green:focus{transition:color 100ms,background-color 100ms}.Button--color--green:hover,.Button--color--green:focus{background-color:#32c154;color:#fff}.Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#009a93;color:#fff}.Button--color--teal:hover{transition:color 0ms,background-color 0ms}.Button--color--teal:focus{transition:color 100ms,background-color 100ms}.Button--color--teal:hover,.Button--color--teal:focus{background-color:#13c4bc;color:#fff}.Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#1c71b1;color:#fff}.Button--color--blue:hover{transition:color 0ms,background-color 0ms}.Button--color--blue:focus{transition:color 100ms,background-color 100ms}.Button--color--blue:hover,.Button--color--blue:focus{background-color:#3a95d9;color:#fff}.Button--color--dark-blue{transition:color 50ms,background-color 50ms;background-color:#003e6e;color:#fff}.Button--color--dark-blue:hover{transition:color 0ms,background-color 0ms}.Button--color--dark-blue:focus{transition:color 100ms,background-color 100ms}.Button--color--dark-blue:hover,.Button--color--dark-blue:focus{background-color:#135b92;color:#fff}.Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#552dab;color:#fff}.Button--color--violet:hover{transition:color 0ms,background-color 0ms}.Button--color--violet:focus{transition:color 100ms,background-color 100ms}.Button--color--violet:hover,.Button--color--violet:focus{background-color:#7953cc;color:#fff}.Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#8b2baa;color:#fff}.Button--color--purple:hover{transition:color 0ms,background-color 0ms}.Button--color--purple:focus{transition:color 100ms,background-color 100ms}.Button--color--purple:hover,.Button--color--purple:focus{background-color:#ad4fcd;color:#fff}.Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#cf2082;color:#fff}.Button--color--pink:hover{transition:color 0ms,background-color 0ms}.Button--color--pink:focus{transition:color 100ms,background-color 100ms}.Button--color--pink:hover,.Button--color--pink:focus{background-color:#e257a5;color:#fff}.Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#8c5836;color:#fff}.Button--color--brown:hover{transition:color 0ms,background-color 0ms}.Button--color--brown:focus{transition:color 100ms,background-color 100ms}.Button--color--brown:hover,.Button--color--brown:focus{background-color:#b47851;color:#fff}.Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#646464;color:#fff}.Button--color--grey:hover{transition:color 0ms,background-color 0ms}.Button--color--grey:focus{transition:color 100ms,background-color 100ms}.Button--color--grey:hover,.Button--color--grey:focus{background-color:#868686;color:#fff}.Button--color--light-grey{transition:color 50ms,background-color 50ms;background-color:#919191;color:#fff}.Button--color--light-grey:hover{transition:color 0ms,background-color 0ms}.Button--color--light-grey:focus{transition:color 100ms,background-color 100ms}.Button--color--light-grey:hover,.Button--color--light-grey:focus{background-color:#bababa;color:#fff}.Button--color--good{transition:color 50ms,background-color 50ms;background-color:#4d9121;color:#fff}.Button--color--good:hover{transition:color 0ms,background-color 0ms}.Button--color--good:focus{transition:color 100ms,background-color 100ms}.Button--color--good:hover,.Button--color--good:focus{background-color:#6cba39;color:#fff}.Button--color--average{transition:color 50ms,background-color 50ms;background-color:#cd7a0d;color:#fff}.Button--color--average:hover{transition:color 0ms,background-color 0ms}.Button--color--average:focus{transition:color 100ms,background-color 100ms}.Button--color--average:hover,.Button--color--average:focus{background-color:#ed9d35;color:#fff}.Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--bad:hover{transition:color 0ms,background-color 0ms}.Button--color--bad:focus{transition:color 100ms,background-color 100ms}.Button--color--bad:hover,.Button--color--bad:focus{background-color:#dc4848;color:#fff}.Button--color--label{transition:color 50ms,background-color 50ms;background-color:#657a94;color:#fff}.Button--color--label:hover{transition:color 0ms,background-color 0ms}.Button--color--label:focus{transition:color 100ms,background-color 100ms}.Button--color--label:hover,.Button--color--label:focus{background-color:#91a1b3;color:#fff}.Button--color--xeno{transition:color 50ms,background-color 50ms;background-color:#462f4e;color:#fff}.Button--color--xeno:hover{transition:color 0ms,background-color 0ms}.Button--color--xeno:focus{transition:color 100ms,background-color 100ms}.Button--color--xeno:hover,.Button--color--xeno:focus{background-color:#64496d;color:#fff}.Button--color--default{transition:color 50ms,background-color 50ms;background-color:#3e6189;color:#fff}.Button--color--default:hover{transition:color 0ms,background-color 0ms}.Button--color--default:focus{transition:color 100ms,background-color 100ms}.Button--color--default:hover,.Button--color--default:focus{background-color:#5c83b0;color:#fff}.Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#d9b804;color:#000}.Button--color--caution:hover{transition:color 0ms,background-color 0ms}.Button--color--caution:focus{transition:color 100ms,background-color 100ms}.Button--color--caution:hover,.Button--color--caution:focus{background-color:#f5d72e;color:#000}.Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#bd2020;color:#fff}.Button--color--danger:hover{transition:color 0ms,background-color 0ms}.Button--color--danger:focus{transition:color 100ms,background-color 100ms}.Button--color--danger:hover,.Button--color--danger:focus{background-color:#dc4848;color:#fff}.Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#202020;color:#fff;background-color:rgba(32,32,32,0);color:rgba(255,255,255,.5)}.Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.Button--color--transparent:hover,.Button--color--transparent:focus{background-color:#383838;color:#fff}.Button--disabled{background-color:#999 !important}.Button--selected{transition:color 50ms,background-color 50ms;background-color:#1b9638;color:#fff}.Button--selected:hover{transition:color 0ms,background-color 0ms}.Button--selected:focus{transition:color 100ms,background-color 100ms}.Button--selected:hover,.Button--selected:focus{background-color:#32c154;color:#fff}.Button--flex{display:inline-flex;flex-direction:column}.Button--flex--fluid{width:100%}.Button--verticalAlignContent--top{justify-content:flex-start}.Button--verticalAlignContent--middle{justify-content:center}.Button--verticalAlignContent--bottom{justify-content:flex-end}.Button__content{display:block;align-self:stretch}.ColorBox{display:inline-block;width:1em;height:1em;line-height:1em;text-align:center}.Dimmer{display:flex;justify-content:center;align-items:center;position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(0,0,0,.75);z-index:1}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Dropdown{position:relative}.Dropdown__control{position:relative;display:inline-block;font-family:Verdana,sans-serif;font-size:1em;width:8.3333333333em;line-height:1.4166666667em;user-select:none}.Dropdown__arrow-button{float:right;padding-left:.35em;width:1.2em;height:1.8333333333em;border-left:.0833333333em solid #000;border-left:.0833333333em solid rgba(0,0,0,.25)}.Dropdown__menu{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;overflow-y:scroll;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menu-noscroll{position:absolute;overflow-y:auto;z-index:5;width:8.3333333333em;max-height:16.6666666667em;border-radius:0 0 .1666666667em .1666666667em;color:#fff;background-color:#000;background-color:rgba(0,0,0,.75)}.Dropdown__menuentry{padding:.1666666667em .3333333333em;font-family:Verdana,sans-serif;font-size:1em;line-height:1.4166666667em;transition:background-color 100ms ease-out}.Dropdown__menuentry:hover{background-color:rgba(255,255,255,.2);transition:background-color 0ms}.Dropdown__over{top:auto;bottom:100%}.Dropdown__selected-text{display:inline-block;text-overflow:ellipsis;white-space:nowrap;height:1.4166666667em;width:calc(100% - 1.2em)}.Flex{display:-ms-flexbox;display:flex}.Flex--inline{display:inline-flex}.Flex--iefix{display:block}.Flex--iefix.Flex--inline{display:inline-block}.Flex__item--iefix{display:inline-block}.Flex--iefix--column>.Flex__item--iefix{display:block}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto;margin-bottom:-0.2em;cursor:n-resize}.Knob:after{content:".";color:transparent;line-height:2.5em}.Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:rgba(255,255,255,.9)}.Knob__popupValue{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.Knob__ringTrackPivot{transform:rotateZ(135deg)}.Knob__ringTrack{fill:transparent;stroke:rgba(255,255,255,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.Knob__ringFillPivot{transform:rotateZ(135deg)}.Knob--bipolar .Knob__ringFillPivot{transform:rotateZ(270deg)}.Knob__ringFill{fill:transparent;stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.Knob--color--black .Knob__ringFill{stroke:#1a1a1a}.Knob--color--white .Knob__ringFill{stroke:#fff}.Knob--color--red .Knob__ringFill{stroke:#df3e3e}.Knob--color--orange .Knob__ringFill{stroke:#f37f33}.Knob--color--yellow .Knob__ringFill{stroke:#fbda21}.Knob--color--olive .Knob__ringFill{stroke:#cbe41c}.Knob--color--green .Knob__ringFill{stroke:#25ca4c}.Knob--color--teal .Knob__ringFill{stroke:#00d6cc}.Knob--color--blue .Knob__ringFill{stroke:#2e93de}.Knob--color--dark-blue .Knob__ringFill{stroke:#005fa7}.Knob--color--violet .Knob__ringFill{stroke:#7349cf}.Knob--color--purple .Knob__ringFill{stroke:#ad45d0}.Knob--color--pink .Knob__ringFill{stroke:#e34da1}.Knob--color--brown .Knob__ringFill{stroke:#b97447}.Knob--color--grey .Knob__ringFill{stroke:#848484}.Knob--color--light-grey .Knob__ringFill{stroke:#b3b3b3}.Knob--color--good .Knob__ringFill{stroke:#68c22d}.Knob--color--average .Knob__ringFill{stroke:#f29a29}.Knob--color--bad .Knob__ringFill{stroke:#df3e3e}.Knob--color--label .Knob__ringFill{stroke:#8b9bb0}.Knob--color--xeno .Knob__ringFill{stroke:#664573}.LabeledList{display:table;width:100%;width:calc(100% + 1em);border-collapse:collapse;border-spacing:0;margin:-0.25em -0.5em;margin-bottom:0;padding:0}.LabeledList__row{display:table-row}.LabeledList__row:last-child .LabeledList__cell{padding-bottom:0}.LabeledList__cell{display:table-cell;margin:0;padding:.25em .5em;border:0;text-align:left}.LabeledList__label--nowrap{width:1%;white-space:nowrap;min-width:5em}.LabeledList__buttons{width:.1%;white-space:nowrap;text-align:right;padding-top:.0833333333em;padding-bottom:0}.Modal{background-color:#202020;max-width:calc(100% - 1rem);padding:1rem}.NoticeBox{padding:.33em .5em;margin-bottom:.5em;box-shadow:none;font-weight:bold;font-style:italic;color:#000;background-color:#bb9b68;background-image:repeating-linear-gradient(-45deg, transparent, transparent 0.8333333333em, rgba(0, 0, 0, 0.1) 0.8333333333em, rgba(0, 0, 0, 0.1) 1.6666666667em)}.NoticeBox--color--black{color:#fff;background-color:#000}.NoticeBox--color--white{color:#000;background-color:#b3b3b3}.NoticeBox--color--red{color:#fff;background-color:#701f1f}.NoticeBox--color--orange{color:#fff;background-color:#854114}.NoticeBox--color--yellow{color:#000;background-color:#83710d}.NoticeBox--color--olive{color:#000;background-color:#576015}.NoticeBox--color--green{color:#fff;background-color:#174e24}.NoticeBox--color--teal{color:#fff;background-color:#064845}.NoticeBox--color--blue{color:#fff;background-color:#1b4565}.NoticeBox--color--dark-blue{color:#fff;background-color:#02121f}.NoticeBox--color--violet{color:#fff;background-color:#3b2864}.NoticeBox--color--purple{color:#fff;background-color:#542663}.NoticeBox--color--pink{color:#fff;background-color:#802257}.NoticeBox--color--brown{color:#fff;background-color:#4c3729}.NoticeBox--color--grey{color:#fff;background-color:#3e3e3e}.NoticeBox--color--light-grey{color:#fff;background-color:#6a6a6a}.NoticeBox--color--good{color:#fff;background-color:#2e4b1a}.NoticeBox--color--average{color:#fff;background-color:#7b4e13}.NoticeBox--color--bad{color:#fff;background-color:#701f1f}.NoticeBox--color--label{color:#fff;background-color:#53565a}.NoticeBox--color--xeno{color:#fff;background-color:#19161b}.NoticeBox--type--info{color:#fff;background-color:#235982}.NoticeBox--type--success{color:#fff;background-color:#1e662f}.NoticeBox--type--warning{color:#fff;background-color:#a95219}.NoticeBox--type--danger{color:#fff;background-color:#8f2828}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.NumberInput{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#88bfff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.NumberInput--fluid{display:block}.NumberInput__content{margin-left:.5em}.NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #88bfff;background-color:#88bfff}.NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#0a0a0a;color:#fff;text-align:right}.ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-width:.0833333333em !important;border-style:solid !important;border-radius:.16em;background-color:rgba(0,0,0,0);transition:border-color 900ms ease-out}.ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.ProgressBar--color--default{border:.0833333333em solid #3e6189}.ProgressBar--color--default .ProgressBar__fill{background-color:#3e6189}.ProgressBar--color--black{border-color:#000 !important}.ProgressBar--color--black .ProgressBar__fill{background-color:#000}.ProgressBar--color--white{border-color:#d9d9d9 !important}.ProgressBar--color--white .ProgressBar__fill{background-color:#d9d9d9}.ProgressBar--color--red{border-color:#bd2020 !important}.ProgressBar--color--red .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--orange{border-color:#d95e0c !important}.ProgressBar--color--orange .ProgressBar__fill{background-color:#d95e0c}.ProgressBar--color--yellow{border-color:#d9b804 !important}.ProgressBar--color--yellow .ProgressBar__fill{background-color:#d9b804}.ProgressBar--color--olive{border-color:#9aad14 !important}.ProgressBar--color--olive .ProgressBar__fill{background-color:#9aad14}.ProgressBar--color--green{border-color:#1b9638 !important}.ProgressBar--color--green .ProgressBar__fill{background-color:#1b9638}.ProgressBar--color--teal{border-color:#009a93 !important}.ProgressBar--color--teal .ProgressBar__fill{background-color:#009a93}.ProgressBar--color--blue{border-color:#1c71b1 !important}.ProgressBar--color--blue .ProgressBar__fill{background-color:#1c71b1}.ProgressBar--color--dark-blue{border-color:#003e6e !important}.ProgressBar--color--dark-blue .ProgressBar__fill{background-color:#003e6e}.ProgressBar--color--violet{border-color:#552dab !important}.ProgressBar--color--violet .ProgressBar__fill{background-color:#552dab}.ProgressBar--color--purple{border-color:#8b2baa !important}.ProgressBar--color--purple .ProgressBar__fill{background-color:#8b2baa}.ProgressBar--color--pink{border-color:#cf2082 !important}.ProgressBar--color--pink .ProgressBar__fill{background-color:#cf2082}.ProgressBar--color--brown{border-color:#8c5836 !important}.ProgressBar--color--brown .ProgressBar__fill{background-color:#8c5836}.ProgressBar--color--grey{border-color:#646464 !important}.ProgressBar--color--grey .ProgressBar__fill{background-color:#646464}.ProgressBar--color--light-grey{border-color:#919191 !important}.ProgressBar--color--light-grey .ProgressBar__fill{background-color:#919191}.ProgressBar--color--good{border-color:#4d9121 !important}.ProgressBar--color--good .ProgressBar__fill{background-color:#4d9121}.ProgressBar--color--average{border-color:#cd7a0d !important}.ProgressBar--color--average .ProgressBar__fill{background-color:#cd7a0d}.ProgressBar--color--bad{border-color:#bd2020 !important}.ProgressBar--color--bad .ProgressBar__fill{background-color:#bd2020}.ProgressBar--color--label{border-color:#657a94 !important}.ProgressBar--color--label .ProgressBar__fill{background-color:#657a94}.ProgressBar--color--xeno{border-color:#462f4e !important}.ProgressBar--color--xeno .ProgressBar__fill{background-color:#462f4e}.Section{position:relative;margin-bottom:.5em;background-color:#131313;background-color:#131313;box-sizing:border-box}.Section:last-child{margin-bottom:0}.Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #4972a1}.Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#fff}.Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.Section__rest{position:relative}.Section__content{padding:.66em .5em}.Section--fitted>.Section__rest>.Section__content{padding:0}.Section--fill{display:flex;flex-direction:column;height:100%}.Section--fill>.Section__rest{flex-grow:1}.Section--fill>.Section__rest>.Section__content{height:100%}.Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.Section--scrollable{overflow-x:hidden;overflow-y:hidden}.Section--scrollable>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:hidden}.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:hidden;overflow-x:scroll}.Section--scrollable.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.Section--scrollable.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:scroll}.Section .Section{background-color:transparent;margin-left:-0.5em;margin-right:-0.5em}.Section .Section:first-child{margin-top:-0.5em}.Section .Section .Section__titleText{font-size:1.0833333333em}.Section .Section .Section .Section__titleText{font-size:1em}.Slider{cursor:e-resize}.Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none !important}.Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #fff}.Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid transparent;border-right:.4166666667em solid transparent;border-bottom:.4166666667em solid #fff}.Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.Divider--horizontal{margin:.5em 0}.Divider--horizontal:not(.Divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Divider--vertical{height:100%;margin:0 .5em}.Divider--vertical:not(.Divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--fill{height:100%}.Stack--horizontal>.Stack__item{margin-left:.5em}.Stack--horizontal>.Stack__item:first-child{margin-left:0}.Stack--vertical>.Stack__item{margin-top:.5em}.Stack--vertical>.Stack__item:first-child{margin-top:0}.Stack--horizontal>.Stack__divider:not(.Stack__divider--hidden){border-left:.1666666667em solid rgba(255,255,255,.1)}.Stack--vertical>.Stack__divider:not(.Stack__divider--hidden){border-top:.1666666667em solid rgba(255,255,255,.1)}.Table{display:table;width:100%;border-collapse:collapse;border-spacing:0;margin:0}.Table--collapsing{width:auto}.Table__row{display:table-row}.Table__cell{display:table-cell;padding:0 .25em}.Table__cell:first-child{padding-left:0}.Table__cell:last-child{padding-right:0}.Table__row--header .Table__cell,.Table__cell--header{font-weight:bold;padding-bottom:.5em}.Table__cell--collapsing{width:1%;white-space:nowrap}.Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:#131313}.Tabs--fill{height:100%}.Section .Tabs{background-color:transparent}.Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.Tabs--horizontal:last-child{margin-bottom:0}.Tabs__Tab{flex-grow:0}.Tabs--fluid .Tabs__Tab{flex-grow:1}.Tab{display:flex;align-items:center;justify-content:space-between;background-color:transparent;color:rgba(255,255,255,.5);min-height:2.25em;min-width:4em}.Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075)}.Tab--selected{background-color:rgba(255,255,255,.125);color:#dfe7f0}.Tab__text{flex-grow:1;margin:0 .5em}.Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.Tabs--horizontal .Tab{border-top:.1666666667em solid transparent;border-bottom:.1666666667em solid transparent;border-top-left-radius:.25em;border-top-right-radius:.25em}.Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #d4dfec}.Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid transparent;border-right:.1666666667em solid transparent;border-top-left-radius:.25em;border-bottom-left-radius:.25em}.Tabs--vertical .Tab--selected{border-right:.1666666667em solid #d4dfec}.Tab--selected.Tab--color--black{color:#535353}.Tabs--horizontal .Tab--selected.Tab--color--black{border-bottom-color:#1a1a1a}.Tabs--vertical .Tab--selected.Tab--color--black{border-right-color:#1a1a1a}.Tab--selected.Tab--color--white{color:#fff}.Tabs--horizontal .Tab--selected.Tab--color--white{border-bottom-color:#fff}.Tabs--vertical .Tab--selected.Tab--color--white{border-right-color:#fff}.Tab--selected.Tab--color--red{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--red{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--red{border-right-color:#df3e3e}.Tab--selected.Tab--color--orange{color:#f69f66}.Tabs--horizontal .Tab--selected.Tab--color--orange{border-bottom-color:#f37f33}.Tabs--vertical .Tab--selected.Tab--color--orange{border-right-color:#f37f33}.Tab--selected.Tab--color--yellow{color:#fce358}.Tabs--horizontal .Tab--selected.Tab--color--yellow{border-bottom-color:#fbda21}.Tabs--vertical .Tab--selected.Tab--color--yellow{border-right-color:#fbda21}.Tab--selected.Tab--color--olive{color:#d8eb55}.Tabs--horizontal .Tab--selected.Tab--color--olive{border-bottom-color:#cbe41c}.Tabs--vertical .Tab--selected.Tab--color--olive{border-right-color:#cbe41c}.Tab--selected.Tab--color--green{color:#53e074}.Tabs--horizontal .Tab--selected.Tab--color--green{border-bottom-color:#25ca4c}.Tabs--vertical .Tab--selected.Tab--color--green{border-right-color:#25ca4c}.Tab--selected.Tab--color--teal{color:#21fff5}.Tabs--horizontal .Tab--selected.Tab--color--teal{border-bottom-color:#00d6cc}.Tabs--vertical .Tab--selected.Tab--color--teal{border-right-color:#00d6cc}.Tab--selected.Tab--color--blue{color:#62aee6}.Tabs--horizontal .Tab--selected.Tab--color--blue{border-bottom-color:#2e93de}.Tabs--vertical .Tab--selected.Tab--color--blue{border-right-color:#2e93de}.Tab--selected.Tab--color--dark-blue{color:#008ffd}.Tabs--horizontal .Tab--selected.Tab--color--dark-blue{border-bottom-color:#005fa7}.Tabs--vertical .Tab--selected.Tab--color--dark-blue{border-right-color:#005fa7}.Tab--selected.Tab--color--violet{color:#9676db}.Tabs--horizontal .Tab--selected.Tab--color--violet{border-bottom-color:#7349cf}.Tabs--vertical .Tab--selected.Tab--color--violet{border-right-color:#7349cf}.Tab--selected.Tab--color--purple{color:#c274db}.Tabs--horizontal .Tab--selected.Tab--color--purple{border-bottom-color:#ad45d0}.Tabs--vertical .Tab--selected.Tab--color--purple{border-right-color:#ad45d0}.Tab--selected.Tab--color--pink{color:#ea79b9}.Tabs--horizontal .Tab--selected.Tab--color--pink{border-bottom-color:#e34da1}.Tabs--vertical .Tab--selected.Tab--color--pink{border-right-color:#e34da1}.Tab--selected.Tab--color--brown{color:#ca9775}.Tabs--horizontal .Tab--selected.Tab--color--brown{border-bottom-color:#b97447}.Tabs--vertical .Tab--selected.Tab--color--brown{border-right-color:#b97447}.Tab--selected.Tab--color--grey{color:#a3a3a3}.Tabs--horizontal .Tab--selected.Tab--color--grey{border-bottom-color:#848484}.Tabs--vertical .Tab--selected.Tab--color--grey{border-right-color:#848484}.Tab--selected.Tab--color--light-grey{color:#c6c6c6}.Tabs--horizontal .Tab--selected.Tab--color--light-grey{border-bottom-color:#b3b3b3}.Tabs--vertical .Tab--selected.Tab--color--light-grey{border-right-color:#b3b3b3}.Tab--selected.Tab--color--good{color:#8cd95a}.Tabs--horizontal .Tab--selected.Tab--color--good{border-bottom-color:#68c22d}.Tabs--vertical .Tab--selected.Tab--color--good{border-right-color:#68c22d}.Tab--selected.Tab--color--average{color:#f5b35e}.Tabs--horizontal .Tab--selected.Tab--color--average{border-bottom-color:#f29a29}.Tabs--vertical .Tab--selected.Tab--color--average{border-right-color:#f29a29}.Tab--selected.Tab--color--bad{color:#e76e6e}.Tabs--horizontal .Tab--selected.Tab--color--bad{border-bottom-color:#df3e3e}.Tabs--vertical .Tab--selected.Tab--color--bad{border-right-color:#df3e3e}.Tab--selected.Tab--color--label{color:#a8b4c4}.Tabs--horizontal .Tab--selected.Tab--color--label{border-bottom-color:#8b9bb0}.Tabs--vertical .Tab--selected.Tab--color--label{border-right-color:#8b9bb0}.Tab--selected.Tab--color--xeno{color:#9366a3}.Tabs--horizontal .Tab--selected.Tab--color--xeno{border-bottom-color:#664573}.Tabs--vertical .Tab--selected.Tab--color--xeno{border-right-color:#664573}.Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;color:#fff;background-color:#0a0a0a;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.Input--fluid{display:block;width:auto}.Input__baseline{display:inline-block;color:transparent}.Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#fff;color:inherit}.Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.Input--monospace .Input__input{font-family:"Consolas",monospace}.TextArea{position:relative;display:inline-block;border:.0833333333em solid #88bfff;border:.0833333333em solid rgba(136,191,255,.75);border-radius:.16em;background-color:#0a0a0a;margin-right:.1666666667em;line-height:1.4166666667em;box-sizing:border-box;width:100%}.TextArea--fluid{display:block;width:auto;height:auto}.TextArea--noborder{border:0px}.TextArea__textarea.TextArea__textarea--scrollable{overflow:auto;overflow-x:hidden;overflow-y:scroll}.TextArea__textarea{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;height:100%;font-size:1em;line-height:1.4166666667em;min-height:1.4166666667em;margin:0;padding:0 .5em;font-family:inherit;background-color:transparent;color:inherit;box-sizing:border-box;word-wrap:break-word;overflow:hidden}.TextArea__textarea:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.TextArea__textarea_custom{overflow:visible;white-space:pre-wrap}.Tooltip{z-index:2;padding:.5em .75em;pointer-events:none;text-align:left;transition:opacity 150ms ease-out;background-color:#000;color:#fff;box-shadow:.1em .1em 1.25em -0.1em rgba(0,0,0,.5);border-radius:.16em;max-width:20.8333333333em}.Chat{color:#abc6ec}.Chat__badge{display:inline-block;min-width:.5em;font-size:.7em;padding:.2em .3em;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:crimson;border-radius:10px;transition:font-size 200ms ease-out}.Chat__badge:before{content:"x"}.Chat__badge--animate{font-size:.9em;transition:font-size 0ms}.Chat__scrollButton{position:fixed;right:2em;bottom:1em}.Chat__reconnected{font-size:.85em;text-align:center;margin:1em 0 2em}.Chat__reconnected:before{content:"Reconnected";display:inline-block;border-radius:1em;padding:0 .7em;color:#db2828;background-color:#131313}.Chat__reconnected:after{content:"";display:block;margin-top:-0.75em;border-bottom:.1666666667em solid #db2828}.Chat__highlight{color:#000}.Chat__highlight--restricted{color:#fff;background-color:#a00;font-weight:bold}.ChatMessage{word-wrap:break-word}.ChatMessage--highlighted{position:relative;border-left:.1666666667em solid #fd4;padding-left:.5em}.ChatMessage--highlighted:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(255,221,68,.1);pointer-events:none}.Ping{position:relative;padding:.125em .25em;border:.0833333333em solid rgba(140,140,140,.5);border-radius:.25em;width:3.75em;text-align:right}.Ping__indicator{content:"";position:absolute;top:.5em;left:.5em;width:.5em;height:.5em;background-color:#888;border-radius:.25em}.Notifications{position:absolute;bottom:1em;left:1em;right:2em}.Notification{color:#fff;background-color:crimson;padding:.5em;margin:1em 0}.Notification:first-child{margin-top:0}.Notification:last-child{margin-bottom:0}.Layout,.Layout *{scrollbar-base-color:#181818;scrollbar-face-color:#363636;scrollbar-3dlight-color:#202020;scrollbar-highlight-color:#202020;scrollbar-track-color:#181818;scrollbar-arrow-color:#909090;scrollbar-shadow-color:#363636}.Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.Layout__content--scrollable{overflow-y:scroll;margin-bottom:0}.Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#fff;background-color:#202020;background-image:linear-gradient(to bottom, #202020 0%, #202020 100%)}.Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.Window__contentPadding:after{height:0}.Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(56,56,56,.25);pointer-events:none}.Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}em{font-style:normal;font-weight:bold}img{margin:0;padding:0;line-height:1;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated}img.icon{height:1em;min-height:16px;width:auto;vertical-align:bottom}a{color:#397ea5}a.visited{color:#7c00e6}a:visited{color:#7c00e6}a.popt{text-decoration:none}.popup{position:fixed;top:50%;left:50%;background:#ddd}.popup .close{position:absolute;background:#aaa;top:0;right:0;color:#333;text-decoration:none;z-index:2;padding:0 10px;height:30px;line-height:30px}.popup .close:hover{background:#999}.popup .head{background:#999;color:#ddd;padding:0 10px;height:30px;line-height:30px;text-transform:uppercase;font-size:.9em;font-weight:bold;border-bottom:2px solid green}.popup input{border:1px solid #999;background:#fff;margin:0;padding:5px;outline:none;color:#333}.popup input[type=text]:hover,.popup input[type=text]:active,.popup input[type=text]:focus{border-color:green}.popup input[type=submit]{padding:5px 10px;background:#999;color:#ddd;text-transform:uppercase;font-size:.9em;font-weight:bold}.popup input[type=submit]:hover,.popup input[type=submit]:focus,.popup input[type=submit]:active{background:#aaa;cursor:pointer}.changeFont{padding:10px}.changeFont a{display:block;text-decoration:none;padding:3px;color:#333}.changeFont a:hover{background:#ccc}.highlightPopup{padding:10px;text-align:center}.highlightPopup input[type=text]{display:block;width:215px;text-align:left;margin-top:5px}.highlightPopup input.highlightColor{background-color:#ff0}.highlightPopup input.highlightTermSubmit{margin-top:5px}.contextMenu{background-color:#ddd;position:fixed;margin:2px;width:150px}.contextMenu a{display:block;padding:2px 5px;text-decoration:none;color:#333}.contextMenu a:hover{background-color:#ccc}.filterMessages{padding:5px}.filterMessages div{padding:2px 0}.icon-stack{height:1em;line-height:1em;width:1em;vertical-align:middle;margin-top:-2px}.motd{color:#a4bad6;font-family:Verdana,sans-serif;white-space:normal}.motd h1,.motd h2,.motd h3,.motd h4,.motd h5,.motd h6{color:#a4bad6;text-decoration:underline}.motd a,.motd a:link,.motd a:visited,.motd a:active,.motd a:hover{color:#a4bad6}.bold,.name,.prefix,.ooc,.looc,.adminooc,.admin,.medal,.yell{font-weight:bold}.italic,.italics{font-style:italic}.highlight{background:#ff0}h1,h2,h3,h4,h5,h6{color:#a4bad6;font-family:Georgia,Verdana,sans-serif}h1.alert,h2.alert{color:#a4bad6}em{font-style:normal;font-weight:bold}.ooc{font-weight:bold}.adminobserverooc{color:#09c;font-weight:bold}.adminooc{color:#3d5bc3;font-weight:bold}.adminsay{color:#9611d4;font-weight:bold}.admin{color:#5975da;font-weight:bold}.name{font-weight:bold}.deadsay{color:#e2c1ff}.binarysay{color:#1e90ff}.binarysay a{color:lime}.binarysay a:active,.binarysay a:visited{color:#8f8}.radio{color:#1ecc43}.sciradio{color:#c68cfa}.comradio{color:#fcdf03}.secradio{color:#dd3535}.medradio{color:#57b8f0}.engradio{color:#f37746}.suppradio{color:#b88646}.servradio{color:#6ca729}.syndradio{color:#8f4a4b}.gangradio{color:#ac2ea1}.centcomradio{color:#2681a5}.aiprivradio{color:#d65d95}.redteamradio{color:#f44}.blueteamradio{color:#3434fd}.greenteamradio{color:#34fd34}.yellowteamradio{color:#fdfd34}.yell{font-weight:bold}.alert{color:#d82020}.userdanger{color:#c51e1e;font-weight:bold;font-size:185%}.bolddanger{color:#c51e1e;font-weight:bold}.danger{color:#c51e1e}.warning{color:#c51e1e;font-style:italic}.alertwarning{color:red;font-weight:bold}.boldwarning{color:#c51e1e;font-style:italic;font-weight:bold}.announce{color:#c51e1e;font-weight:bold}.boldannounce{color:#c51e1e;font-weight:bold}.minorannounce{font-weight:bold;font-size:185%}.greenannounce{color:#059223;font-weight:bold}.rose{color:#ff5050}.info{color:#9ab0ff}.notice{color:#6685f5}.staff_ic{color:#6685f5}.tinynotice{color:#6685f5;font-size:85%}.tinynoticeital{color:#6685f5;font-style:italic;font-size:85%}.smallnotice{color:#6685f5;font-size:90%}.smallnoticeital{color:#6685f5;font-style:italic;font-size:90%}.boldnotice{color:#6685f5;font-weight:bold}.hear{color:#6685f5;font-style:italic}.adminnotice{color:#6685f5}.adminhelp{color:red;font-weight:bold}.unconscious{color:#a4bad6;font-weight:bold}.suicide{color:#ff5050;font-style:italic}.green{color:#059223}.grey{color:#838383}.red{color:red}.blue{color:#215cff}.nicegreen{color:#059223}.boldnicegreen{color:#059223;font-weight:bold}.cult{color:#973e3b}.cultitalic{color:#973e3b;font-style:italic}.cultbold{color:#973e3b;font-style:italic;font-weight:bold}.cultboldtalic{color:#973e3b;font-weight:bold;font-size:185%}.cultlarge{color:#973e3b;font-weight:bold;font-size:185%}.narsie{color:#973e3b;font-weight:bold;font-size:925%}.narsiesmall{color:#973e3b;font-weight:bold;font-size:370%}.colossus{color:#7f282a;font-size:310%}.hierophant{color:#b441ee;font-weight:bold;font-style:italic}.hierophant_warning{color:#c56bf1;font-style:italic}.purple{color:#9956d3}.holoparasite{color:#88809c}.revennotice{color:#c099e2}.revenboldnotice{color:#c099e2;font-weight:bold}.revenbignotice{color:#c099e2;font-weight:bold;font-size:185%}.revenminor{color:#823abb}.revenwarning{color:#760fbb;font-style:italic}.revendanger{color:#760fbb;font-weight:bold;font-size:185%}.deconversion_message{color:#a947ff;font-size:185%;font-style:italic}.ghostalert{color:#60f;font-style:italic;font-weight:bold}.alien{color:#855d85}.noticealien{color:#059223}.alertalien{color:#059223;font-weight:bold}.changeling{color:#059223;font-style:italic}.alertsyndie{color:red;font-size:185%;font-weight:bold}.spider{color:#80f;font-weight:bold;font-size:185%}.interface{color:#750e75}.sans{font-family:"Comic Sans MS",cursive,sans-serif}.papyrus{font-family:"Papyrus",cursive,sans-serif}.robot{font-family:"Courier New",cursive,sans-serif}.tape_recorder{color:red;font-family:"Courier New",cursive,sans-serif}.command_headset{font-weight:bold;font-size:160%}.small{font-size:60%}.big{font-size:185%}.reallybig{font-size:245%}.extremelybig{font-size:310%}.greentext{color:#059223;font-size:185%}.redtext{color:#c51e1e;font-size:185%}.clown{color:#ff70c1;font-size:160%;font-family:"Comic Sans MS",cursive,sans-serif;font-weight:bold}.singing{font-family:"Trebuchet MS",cursive,sans-serif;font-style:italic}.his_grace{color:#15d512;font-family:"Courier New",cursive,sans-serif;font-style:italic}.hypnophrase{color:#202020;font-weight:bold;animation:hypnocolor 1500ms infinite;animation-direction:alternate}@keyframes hypnocolor{0%{color:#202020}25%{color:#4b02ac}50%{color:#9f41f1}75%{color:#541c9c}100%{color:#7adbf3}}.phobia{color:#d00;font-weight:bold;animation:phobia 750ms infinite}@keyframes phobia{0%{color:#f75a5a}50%{color:#d00}100%{color:#f75a5a}}.icon{height:1em;width:auto}.bigicon{font-size:2.5em}.memo{color:#638500;text-align:center}.memoedit{text-align:center;font-size:125%}.abductor{color:#c204c2;font-style:italic}.mind_control{color:#df3da9;font-size:100%;font-weight:bold;font-style:italic}.slime{color:#00ced1}.drone{color:#848482}.monkey{color:#975032}.swarmer{color:#2c75ff}.resonate{color:#298f85}.monkeyhive{color:#a56408}.monkeylead{color:#af6805;font-size:80%}.connectionClosed,.fatalError{background:red;color:#fff;padding:5px}.connectionClosed.restored{background:green}.internal.boldnshit{color:#3d5bc3;font-weight:bold}.text-normal{font-weight:normal;font-style:normal}.hidden{display:none;visibility:hidden}.ml-1{margin-left:1em}.ml-2{margin-left:2em}.ml-3{margin-left:3em}.xooc{color:#ac04e9;font-weight:bold;font-size:140%}.mooc{color:#090;font-weight:bold;font-size:140%}.yooc{color:#999600;font-weight:bold;font-size:140%}.headminsay{color:#653d78;font-weight:bold}.radio{color:#b4b4b4}.deptradio{color:#939}.comradio{color:#779cc2}.centradio{color:#5c5c8a}.hcradio{color:#318779}.pvstradio{color:#9b0612}.cryoradio{color:#ad6d48}.airadio{color:#f0f}.secradio{color:#a52929}.engradio{color:#a66300}.sentryradio{color:#844300}.sentryradio{color:#844300}.medradio{color:#008160}.supradio{color:#ba8e41}.jtacradio{color:#ad3b98}.intelradio{color:#027d02}.wyradio{color:#fe9b24}.pmcradio{color:#4dc5ce}.vairadio{color:#e3580e}.rmcradio{color:#e3580e}.cmbradio{color:#1b748c}.clfradio{color:#8e83ca}.alpharadio{color:#828cff}.bravoradio{color:#c68610}.charlieradio{color:#a5a}.deltaradio{color:#007fcf}.echoradio{color:#3eb489}.medium{font-size:110%}.big{font-size:115%}.large{font-size:125%}.extra_large{font-size:130%}.huge{font-size:150%}.underline{text-decoration:underline}.orange{color:#eca100}.normal{font-style:normal}.attack{color:#ff3838}.moderate{color:#c00}.disarm{color:#900}.passive{color:#600}.helpful{color:#368f31}.scanner{color:#ff3838}.scannerb{color:#ff3838;font-weight:bold}.scannerburn{color:orange}.scannerburnb{color:orange;font-weight:bold}.rose{color:#ff5050}.debuginfo{color:#493d26;font-style:italic}.xenonotice{color:#51a16c}.xenoboldnotice{color:#51a16c;font-style:italic}.xenowarning{color:#51a16c;font-style:italic}.xenominorwarning{color:#51a16c;font-weight:bold;font-style:italic}.xenodanger{color:#51a16c;font-weight:bold}.avoidharm{color:#72a0e5;font-weight:bold}.highdanger{color:#ff3838;font-weight:bold;font-size:140%}.xenohighdanger{color:#51a16c;font-weight:bold;font-size:140%}.xenoannounce{color:#65c585;font-family:book-antiqua;font-weight:bold;font-size:140%}.yautjabold{color:purple;font-weight:bold}.yautjaboldbig{color:purple;font-weight:bold;font-size:120%}.objectivebig{font-weight:bold;font-size:130%}.objectivegreen{color:lime}.objectivered{color:red}.objectivesuccess{color:lime;font-weight:bold;font-size:110%}.objectivefail{color:red;font-weight:bold;font-size:110%}.xenotalk,.xeno{color:#c048c0;font-style:italic}.xenoleader{color:#996e99;font-style:italic;font-size:125%}.xenoqueen{color:#996e99;font-style:italic;font-weight:bold;font-size:125%}.newscaster{color:maroon}.role_header{color:#e92d2d;display:block;text-align:center;font-weight:bold;font-family:trebuchet-ms;font-size:150%}.role_body{color:#3a3ae9;display:block;text-align:center;font-size:125%}.round_header{color:#e92d2d;display:block;text-align:center;font-family:courier;font-weight:bold;font-size:180%}.round_body{color:#c5c5c5;display:block;text-align:center;font-family:trebuchet-ms;font-weight:bold;font-size:125%}.event_announcement{color:#600d48;font-family:arial-narrow;font-weight:bold;font-size:125%}.announce_header{color:#cecece;font-weight:bold;font-size:150%}.announce_header_blue{color:#7575f3;font-weight:bold;font-size:150%}.announce_header_admin{color:#7575f3;font-weight:bold;font-size:150%}.announce_body{color:#e92d2d;font-weight:normal;font-size:125%}.centerbold{display:block;text-align:center;font-weight:bold}.mod{color:#917455;font-weight:bold}.modooc{color:#184880;font-weight:bold}.adminmod{color:#7c440c;font-weight:bold}.mentorsay{color:#d4af57;font-weight:bold}.mentorhelp{color:#090;font-weight:bold}.mentorbody{color:#da6200;font-weight:bold}.mentorstaff{color:#b5850d;font-weight:bold}.staffsay{color:#b5850d;font-weight:bold}.tajaran{color:#803b56}.tajaran_signlang{color:#941c1c}.skrell{color:#00ced1}.soghun{color:#228b22}.changeling{color:purple}.vox{color:#a0a}.monkey{color:#966c47}.german{color:#858f1e;font-family:"Times New Roman",Times,serif}.spanish{color:#cf982b}.japanese{color:#940927}.chinese{color:#fe1919}.zombie{color:#2dacb1;font-style:italic}.rough{font-family:trebuchet-ms,cursive,sans-serif}.commando{color:#fe9b24;font-style:bold}.say_quote{font-family:Georgia,Verdana,sans-serif}.admin .message{color:#314cad}.admin .prefix{font-weight:bolder}.pm{font-size:110%}.deadsay{color:#8b4dff}.retro_translator{font-weight:bold}.yautja_translator{color:#a00;font-weight:bold;animation:glitch .5s infinite}@keyframes glitch{25%{color:#a00;transform:translate(-2px, -1px)}50%{color:#be0000;transform:translate(1px, -2px)}75%{color:#8d0000;transform:translate(-1px, 2px)}100%{color:#830000;transform:translate(1px, 1px)}}.examine_block{background:#1b1c1e;border:1px solid #a4bad6;margin:.5em;padding:.5em .75em}.examine_block .icon{width:1.5em;height:1.5em;margin:0;padding:0}.tooltip{font-style:italic;border-bottom:1px dashed #fff} +.theme-light .color-black{color:#000 !important}.theme-light .color-white{color:#e6e6e6 !important}.theme-light .color-red{color:#c82121 !important}.theme-light .color-orange{color:#e6630d !important}.theme-light .color-yellow{color:#e5c304 !important}.theme-light .color-olive{color:#a3b816 !important}.theme-light .color-green{color:#1d9f3b !important}.theme-light .color-teal{color:#00a39c !important}.theme-light .color-blue{color:#1e78bb !important}.theme-light .color-dark-blue{color:#004274 !important}.theme-light .color-violet{color:#5a30b5 !important}.theme-light .color-purple{color:#932eb4 !important}.theme-light .color-pink{color:#db228a !important}.theme-light .color-brown{color:#955d39 !important}.theme-light .color-grey{color:#e6e6e6 !important}.theme-light .color-light-grey{color:#999 !important}.theme-light .color-good{color:#529923 !important}.theme-light .color-average{color:#da810e !important}.theme-light .color-bad{color:#c82121 !important}.theme-light .color-label{color:#353535 !important}.theme-light .color-xeno{color:#4a3253 !important}.theme-light .color-bg-black{background-color:#000 !important}.theme-light .color-bg-white{background-color:#bfbfbf !important}.theme-light .color-bg-red{background-color:#a61c1c !important}.theme-light .color-bg-orange{background-color:#c0530b !important}.theme-light .color-bg-yellow{background-color:#bfa303 !important}.theme-light .color-bg-olive{background-color:#889912 !important}.theme-light .color-bg-green{background-color:#188532 !important}.theme-light .color-bg-teal{background-color:#008882 !important}.theme-light .color-bg-blue{background-color:#19649c !important}.theme-light .color-bg-dark-blue{background-color:#003761 !important}.theme-light .color-bg-violet{background-color:#4b2897 !important}.theme-light .color-bg-purple{background-color:#7a2696 !important}.theme-light .color-bg-pink{background-color:#b61d73 !important}.theme-light .color-bg-brown{background-color:#7c4d2f !important}.theme-light .color-bg-grey{background-color:#bfbfbf !important}.theme-light .color-bg-light-grey{background-color:gray !important}.theme-light .color-bg-good{background-color:#44801d !important}.theme-light .color-bg-average{background-color:#b56b0b !important}.theme-light .color-bg-bad{background-color:#a61c1c !important}.theme-light .color-bg-label{background-color:#2c2c2c !important}.theme-light .color-bg-xeno{background-color:#3e2945 !important}.theme-light .Tabs{display:flex;align-items:stretch;overflow:hidden;background-color:#fff}.theme-light .Tabs--fill{height:100%}.theme-light .Section .Tabs{background-color:transparent}.theme-light .Section:not(.Section--fitted) .Tabs{margin:0 -0.5em .5em}.theme-light .Section:not(.Section--fitted) .Tabs:first-child{margin-top:-0.5em}.theme-light .Tabs--vertical{flex-direction:column;padding:.25em 0 .25em .25em}.theme-light .Tabs--horizontal{margin-bottom:.5em;padding:.25em .25em 0 .25em}.theme-light .Tabs--horizontal:last-child{margin-bottom:0}.theme-light .Tabs__Tab{flex-grow:0}.theme-light .Tabs--fluid .Tabs__Tab{flex-grow:1}.theme-light .Tab{display:flex;align-items:center;justify-content:space-between;background-color:transparent;color:rgba(0,0,0,.5);min-height:2.25em;min-width:4em}.theme-light .Tab:not(.Tab--selected):hover{background-color:rgba(255,255,255,.075)}.theme-light .Tab--selected{background-color:rgba(255,255,255,.125);color:#404040}.theme-light .Tab__text{flex-grow:1;margin:0 .5em}.theme-light .Tab__left{min-width:1.5em;text-align:center;margin-left:.25em}.theme-light .Tab__right{min-width:1.5em;text-align:center;margin-right:.25em}.theme-light .Tabs--horizontal .Tab{border-top:.1666666667em solid transparent;border-bottom:.1666666667em solid transparent;border-top-left-radius:.25em;border-top-right-radius:.25em}.theme-light .Tabs--horizontal .Tab--selected{border-bottom:.1666666667em solid #000}.theme-light .Tabs--vertical .Tab{min-height:2em;border-left:.1666666667em solid transparent;border-right:.1666666667em solid transparent;border-top-left-radius:.25em;border-bottom-left-radius:.25em}.theme-light .Tabs--vertical .Tab--selected{border-right:.1666666667em solid #000}.theme-light .Tab--selected.Tab--color--black{color:#404040}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--black{border-bottom-color:#000}.theme-light .Tabs--vertical .Tab--selected.Tab--color--black{border-right-color:#000}.theme-light .Tab--selected.Tab--color--white{color:#ececec}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--white{border-bottom-color:#e6e6e6}.theme-light .Tabs--vertical .Tab--selected.Tab--color--white{border-right-color:#e6e6e6}.theme-light .Tab--selected.Tab--color--red{color:#e14d4d}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--red{border-bottom-color:#c82121}.theme-light .Tabs--vertical .Tab--selected.Tab--color--red{border-right-color:#c82121}.theme-light .Tab--selected.Tab--color--orange{color:#f48942}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--orange{border-bottom-color:#e6630d}.theme-light .Tabs--vertical .Tab--selected.Tab--color--orange{border-right-color:#e6630d}.theme-light .Tab--selected.Tab--color--yellow{color:#fcdd33}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--yellow{border-bottom-color:#e5c304}.theme-light .Tabs--vertical .Tab--selected.Tab--color--yellow{border-right-color:#e5c304}.theme-light .Tab--selected.Tab--color--olive{color:#d0e732}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--olive{border-bottom-color:#a3b816}.theme-light .Tabs--vertical .Tab--selected.Tab--color--olive{border-right-color:#a3b816}.theme-light .Tab--selected.Tab--color--green{color:#33da5a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--green{border-bottom-color:#1d9f3b}.theme-light .Tabs--vertical .Tab--selected.Tab--color--green{border-right-color:#1d9f3b}.theme-light .Tab--selected.Tab--color--teal{color:#00faef}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--teal{border-bottom-color:#00a39c}.theme-light .Tabs--vertical .Tab--selected.Tab--color--teal{border-right-color:#00a39c}.theme-light .Tab--selected.Tab--color--blue{color:#419ce1}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--blue{border-bottom-color:#1e78bb}.theme-light .Tabs--vertical .Tab--selected.Tab--color--blue{border-right-color:#1e78bb}.theme-light .Tab--selected.Tab--color--dark-blue{color:#0079d7}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--dark-blue{border-bottom-color:#004274}.theme-light .Tabs--vertical .Tab--selected.Tab--color--dark-blue{border-right-color:#004274}.theme-light .Tab--selected.Tab--color--violet{color:#7f58d3}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--violet{border-bottom-color:#5a30b5}.theme-light .Tabs--vertical .Tab--selected.Tab--color--violet{border-right-color:#5a30b5}.theme-light .Tab--selected.Tab--color--purple{color:#b455d4}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--purple{border-bottom-color:#932eb4}.theme-light .Tabs--vertical .Tab--selected.Tab--color--purple{border-right-color:#932eb4}.theme-light .Tab--selected.Tab--color--pink{color:#e558a7}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--pink{border-bottom-color:#db228a}.theme-light .Tabs--vertical .Tab--selected.Tab--color--pink{border-right-color:#db228a}.theme-light .Tab--selected.Tab--color--brown{color:#c0825a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--brown{border-bottom-color:#955d39}.theme-light .Tabs--vertical .Tab--selected.Tab--color--brown{border-right-color:#955d39}.theme-light .Tab--selected.Tab--color--grey{color:#ececec}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--grey{border-bottom-color:#e6e6e6}.theme-light .Tabs--vertical .Tab--selected.Tab--color--grey{border-right-color:#e6e6e6}.theme-light .Tab--selected.Tab--color--light-grey{color:#b3b3b3}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--light-grey{border-bottom-color:#999}.theme-light .Tabs--vertical .Tab--selected.Tab--color--light-grey{border-right-color:#999}.theme-light .Tab--selected.Tab--color--good{color:#77d23b}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--good{border-bottom-color:#529923}.theme-light .Tabs--vertical .Tab--selected.Tab--color--good{border-right-color:#529923}.theme-light .Tab--selected.Tab--color--average{color:#f3a23a}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--average{border-bottom-color:#da810e}.theme-light .Tabs--vertical .Tab--selected.Tab--color--average{border-right-color:#da810e}.theme-light .Tab--selected.Tab--color--bad{color:#e14d4d}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--bad{border-bottom-color:#c82121}.theme-light .Tabs--vertical .Tab--selected.Tab--color--bad{border-right-color:#c82121}.theme-light .Tab--selected.Tab--color--label{color:#686868}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--label{border-bottom-color:#353535}.theme-light .Tabs--vertical .Tab--selected.Tab--color--label{border-right-color:#353535}.theme-light .Tab--selected.Tab--color--xeno{color:#7e558e}.theme-light .Tabs--horizontal .Tab--selected.Tab--color--xeno{border-bottom-color:#4a3253}.theme-light .Tabs--vertical .Tab--selected.Tab--color--xeno{border-right-color:#4a3253}.theme-light .Section{position:relative;margin-bottom:.5em;background-color:#fff;background-color:#fff;box-sizing:border-box}.theme-light .Section:last-child{margin-bottom:0}.theme-light .Section__title{position:relative;padding:.5em;border-bottom:.1666666667em solid #fff}.theme-light .Section__titleText{font-size:1.1666666667em;font-weight:bold;color:#000}.theme-light .Section__buttons{position:absolute;display:inline-block;right:.5em;margin-top:-.0833333333em}.theme-light .Section__rest{position:relative}.theme-light .Section__content{padding:.66em .5em}.theme-light .Section--fitted>.Section__rest>.Section__content{padding:0}.theme-light .Section--fill{display:flex;flex-direction:column;height:100%}.theme-light .Section--fill>.Section__rest{flex-grow:1}.theme-light .Section--fill>.Section__rest>.Section__content{height:100%}.theme-light .Section--fill.Section--scrollable>.Section__rest>.Section__content{position:absolute;top:0;left:0;right:0;bottom:0}.theme-light .Section--fill.Section--iefix{display:table !important;width:100% !important;height:100% !important;border-collapse:collapse;border-spacing:0}.theme-light .Section--fill.Section--iefix>.Section__rest{display:table-row !important;height:100% !important}.theme-light .Section--scrollable{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollable>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:hidden}.theme-light .Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:hidden;overflow-x:scroll}.theme-light .Section--scrollable.Section--scrollableHorizontal{overflow-x:hidden;overflow-y:hidden}.theme-light .Section--scrollable.Section--scrollableHorizontal>.Section__rest>.Section__content{overflow-y:scroll;overflow-x:scroll}.theme-light .Section .Section{background-color:transparent;margin-left:-0.5em;margin-right:-0.5em}.theme-light .Section .Section:first-child{margin-top:-0.5em}.theme-light .Section .Section .Section__titleText{font-size:1.0833333333em}.theme-light .Section .Section .Section .Section__titleText{font-size:1em}.theme-light .Button{position:relative;display:inline-block;line-height:1.667em;padding:0 .5em;margin-right:.1666666667em;white-space:nowrap;outline:0;border-radius:.16em;margin-bottom:.1666666667em;user-select:none;-ms-user-select:none}.theme-light .Button:last-child{margin-right:0;margin-bottom:0}.theme-light .Button .fa,.theme-light .Button .fas,.theme-light .Button .far{margin-left:-0.25em;margin-right:-0.25em;min-width:1.333em;text-align:center}.theme-light .Button--hasContent .fa,.theme-light .Button--hasContent .fas,.theme-light .Button--hasContent .far{margin-right:.25em}.theme-light .Button--hasContent.Button--iconPosition--right .fa,.theme-light .Button--hasContent.Button--iconPosition--right .fas,.theme-light .Button--hasContent.Button--iconPosition--right .far{margin-right:0px;margin-left:3px}.theme-light .Button--ellipsis{overflow:hidden;text-overflow:ellipsis}.theme-light .Button--fluid{display:block;margin-left:0;margin-right:0}.theme-light .Button--circular{border-radius:50%}.theme-light .Button--compact{padding:0 .25em;line-height:1.333em}.theme-light .Button--color--black{transition:color 50ms,background-color 50ms;background-color:#000;color:#fff}.theme-light .Button--color--black:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--black:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--black:hover,.theme-light .Button--color--black:focus{background-color:#131313;color:#fff}.theme-light .Button--color--white{transition:color 50ms,background-color 50ms;background-color:#bfbfbf;color:#000}.theme-light .Button--color--white:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--white:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--white:hover,.theme-light .Button--color--white:focus{background-color:#efefef;color:#000}.theme-light .Button--color--red{transition:color 50ms,background-color 50ms;background-color:#a61c1c;color:#fff}.theme-light .Button--color--red:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--red:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--red:hover,.theme-light .Button--color--red:focus{background-color:#d23333;color:#fff}.theme-light .Button--color--orange{transition:color 50ms,background-color 50ms;background-color:#c0530b;color:#fff}.theme-light .Button--color--orange:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--orange:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--orange:hover,.theme-light .Button--color--orange:focus{background-color:#ea7426;color:#fff}.theme-light .Button--color--yellow{transition:color 50ms,background-color 50ms;background-color:#bfa303;color:#fff}.theme-light .Button--color--yellow:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--yellow:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--yellow:hover,.theme-light .Button--color--yellow:focus{background-color:#efce17;color:#fff}.theme-light .Button--color--olive{transition:color 50ms,background-color 50ms;background-color:#889912;color:#fff}.theme-light .Button--color--olive:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--olive:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--olive:hover,.theme-light .Button--color--olive:focus{background-color:#afc328;color:#fff}.theme-light .Button--color--green{transition:color 50ms,background-color 50ms;background-color:#188532;color:#fff}.theme-light .Button--color--green:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--green:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--green:hover,.theme-light .Button--color--green:focus{background-color:#2fac4c;color:#fff}.theme-light .Button--color--teal{transition:color 50ms,background-color 50ms;background-color:#008882;color:#fff}.theme-light .Button--color--teal:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--teal:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--teal:hover,.theme-light .Button--color--teal:focus{background-color:#13afa9;color:#fff}.theme-light .Button--color--blue{transition:color 50ms,background-color 50ms;background-color:#19649c;color:#fff}.theme-light .Button--color--blue:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--blue:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--blue:hover,.theme-light .Button--color--blue:focus{background-color:#3086c7;color:#fff}.theme-light .Button--color--dark-blue{transition:color 50ms,background-color 50ms;background-color:#003761;color:#fff}.theme-light .Button--color--dark-blue:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--dark-blue:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--dark-blue:hover,.theme-light .Button--color--dark-blue:focus{background-color:#135283;color:#fff}.theme-light .Button--color--violet{transition:color 50ms,background-color 50ms;background-color:#4b2897;color:#fff}.theme-light .Button--color--violet:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--violet:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--violet:hover,.theme-light .Button--color--violet:focus{background-color:#6a41c1;color:#fff}.theme-light .Button--color--purple{transition:color 50ms,background-color 50ms;background-color:#7a2696;color:#fff}.theme-light .Button--color--purple:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--purple:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--purple:hover,.theme-light .Button--color--purple:focus{background-color:#a03fc0;color:#fff}.theme-light .Button--color--pink{transition:color 50ms,background-color 50ms;background-color:#b61d73;color:#fff}.theme-light .Button--color--pink:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--pink:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--pink:hover,.theme-light .Button--color--pink:focus{background-color:#da3f96;color:#fff}.theme-light .Button--color--brown{transition:color 50ms,background-color 50ms;background-color:#7c4d2f;color:#fff}.theme-light .Button--color--brown:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--brown:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--brown:hover,.theme-light .Button--color--brown:focus{background-color:#a26c49;color:#fff}.theme-light .Button--color--grey{transition:color 50ms,background-color 50ms;background-color:#bfbfbf;color:#000}.theme-light .Button--color--grey:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--grey:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--grey:hover,.theme-light .Button--color--grey:focus{background-color:#efefef;color:#000}.theme-light .Button--color--light-grey{transition:color 50ms,background-color 50ms;background-color:gray;color:#fff}.theme-light .Button--color--light-grey:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--light-grey:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--light-grey:hover,.theme-light .Button--color--light-grey:focus{background-color:#a6a6a6;color:#fff}.theme-light .Button--color--good{transition:color 50ms,background-color 50ms;background-color:#44801d;color:#fff}.theme-light .Button--color--good:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--good:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--good:hover,.theme-light .Button--color--good:focus{background-color:#62a635;color:#fff}.theme-light .Button--color--average{transition:color 50ms,background-color 50ms;background-color:#b56b0b;color:#fff}.theme-light .Button--color--average:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--average:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--average:hover,.theme-light .Button--color--average:focus{background-color:#e48f20;color:#fff}.theme-light .Button--color--bad{transition:color 50ms,background-color 50ms;background-color:#a61c1c;color:#fff}.theme-light .Button--color--bad:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--bad:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--bad:hover,.theme-light .Button--color--bad:focus{background-color:#d23333;color:#fff}.theme-light .Button--color--label{transition:color 50ms,background-color 50ms;background-color:#2c2c2c;color:#fff}.theme-light .Button--color--label:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--label:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--label:hover,.theme-light .Button--color--label:focus{background-color:#464646;color:#fff}.theme-light .Button--color--xeno{transition:color 50ms,background-color 50ms;background-color:#3e2945;color:#fff}.theme-light .Button--color--xeno:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--xeno:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--xeno:hover,.theme-light .Button--color--xeno:focus{background-color:#5a4363;color:#fff}.theme-light .Button--color--default{transition:color 50ms,background-color 50ms;background-color:#bbb;color:#000}.theme-light .Button--color--default:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--default:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--default:hover,.theme-light .Button--color--default:focus{background-color:#eaeaea;color:#000}.theme-light .Button--color--caution{transition:color 50ms,background-color 50ms;background-color:#be6209;color:#fff}.theme-light .Button--color--caution:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--caution:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--caution:hover,.theme-light .Button--color--caution:focus{background-color:#ec8420;color:#fff}.theme-light .Button--color--danger{transition:color 50ms,background-color 50ms;background-color:#9a9d00;color:#fff}.theme-light .Button--color--danger:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--danger:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--danger:hover,.theme-light .Button--color--danger:focus{background-color:#c4c813;color:#fff}.theme-light .Button--color--transparent{transition:color 50ms,background-color 50ms;background-color:#eee;color:#000;background-color:rgba(238,238,238,0);color:rgba(0,0,0,.5)}.theme-light .Button--color--transparent:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--color--transparent:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--color--transparent:hover,.theme-light .Button--color--transparent:focus{background-color:#fcfcfc;color:#000}.theme-light .Button--disabled{background-color:#363636 !important}.theme-light .Button--selected{transition:color 50ms,background-color 50ms;background-color:#0668b8;color:#fff}.theme-light .Button--selected:hover{transition:color 0ms,background-color 0ms}.theme-light .Button--selected:focus{transition:color 100ms,background-color 100ms}.theme-light .Button--selected:hover,.theme-light .Button--selected:focus{background-color:#1a8be7;color:#fff}.theme-light .Button--flex{display:inline-flex;flex-direction:column}.theme-light .Button--flex--fluid{width:100%}.theme-light .Button--verticalAlignContent--top{justify-content:flex-start}.theme-light .Button--verticalAlignContent--middle{justify-content:center}.theme-light .Button--verticalAlignContent--bottom{justify-content:flex-end}.theme-light .Button__content{display:block;align-self:stretch}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .NumberInput{position:relative;display:inline-block;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#353535;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;text-align:right;overflow:visible;cursor:n-resize}.theme-light .NumberInput--fluid{display:block}.theme-light .NumberInput__content{margin-left:.5em}.theme-light .NumberInput__barContainer{position:absolute;top:.1666666667em;bottom:.1666666667em;left:.1666666667em}.theme-light .NumberInput__bar{position:absolute;bottom:0;left:0;width:.25em;box-sizing:border-box;border-bottom:.0833333333em solid #353535;background-color:#353535}.theme-light .NumberInput__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:#fff;color:#000;text-align:right}.theme-light .Input{position:relative;display:inline-block;width:10em;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;color:#000;background-color:#fff;padding:0 .3333333333em;margin-right:.1666666667em;line-height:1.4166666667em;overflow:visible}.theme-light .Input--fluid{display:block;width:auto}.theme-light .Input__baseline{display:inline-block;color:transparent}.theme-light .Input__input{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;font-size:1em;line-height:1.4166666667em;height:1.4166666667em;margin:0;padding:0 .5em;font-family:Verdana,sans-serif;background-color:transparent;color:#000;color:inherit}.theme-light .Input__input:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .Input--monospace .Input__input{font-family:"Consolas",monospace}.theme-light .TextArea{position:relative;display:inline-block;border:.0833333333em solid #353535;border:.0833333333em solid rgba(53,53,53,.75);border-radius:.16em;background-color:#fff;margin-right:.1666666667em;line-height:1.4166666667em;box-sizing:border-box;width:100%}.theme-light .TextArea--fluid{display:block;width:auto;height:auto}.theme-light .TextArea--noborder{border:0px}.theme-light .TextArea__textarea.TextArea__textarea--scrollable{overflow:auto;overflow-x:hidden;overflow-y:scroll}.theme-light .TextArea__textarea{display:block;position:absolute;top:0;bottom:0;left:0;right:0;border:0;outline:0;width:100%;height:100%;font-size:1em;line-height:1.4166666667em;min-height:1.4166666667em;margin:0;padding:0 .5em;font-family:inherit;background-color:transparent;color:inherit;box-sizing:border-box;word-wrap:break-word;overflow:hidden}.theme-light .TextArea__textarea:-ms-input-placeholder{font-style:italic;color:#777;color:rgba(255,255,255,.45)}.theme-light .TextArea__textarea_custom{overflow:visible;white-space:pre-wrap}.theme-light .Knob{position:relative;font-size:1rem;width:2.6em;height:2.6em;margin:0 auto;margin-bottom:-0.2em;cursor:n-resize}.theme-light .Knob:after{content:".";color:transparent;line-height:2.5em}.theme-light .Knob__circle{position:absolute;top:.1em;bottom:.1em;left:.1em;right:.1em;margin:.3em;background-color:#333;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);border-radius:50%;box-shadow:0 .05em .5em 0 rgba(0,0,0,.5)}.theme-light .Knob__cursorBox{position:absolute;top:0;bottom:0;left:0;right:0}.theme-light .Knob__cursor{position:relative;top:.05em;margin:0 auto;width:.2em;height:.8em;background-color:rgba(255,255,255,.9)}.theme-light .Knob__popupValue{position:absolute;top:-2rem;right:50%;font-size:1rem;text-align:center;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.theme-light .Knob__ring{position:absolute;top:0;bottom:0;left:0;right:0;padding:.1em}.theme-light .Knob__ringTrackPivot{transform:rotateZ(135deg)}.theme-light .Knob__ringTrack{fill:transparent;stroke:rgba(255,255,255,.1);stroke-width:8;stroke-linecap:round;stroke-dasharray:235.62}.theme-light .Knob__ringFillPivot{transform:rotateZ(135deg)}.theme-light .Knob--bipolar .Knob__ringFillPivot{transform:rotateZ(270deg)}.theme-light .Knob__ringFill{fill:transparent;stroke:#6a96c9;stroke-width:8;stroke-linecap:round;stroke-dasharray:314.16;transition:stroke 50ms ease-out}.theme-light .Knob--color--black .Knob__ringFill{stroke:#000}.theme-light .Knob--color--white .Knob__ringFill{stroke:#e6e6e6}.theme-light .Knob--color--red .Knob__ringFill{stroke:#c82121}.theme-light .Knob--color--orange .Knob__ringFill{stroke:#e6630d}.theme-light .Knob--color--yellow .Knob__ringFill{stroke:#e5c304}.theme-light .Knob--color--olive .Knob__ringFill{stroke:#a3b816}.theme-light .Knob--color--green .Knob__ringFill{stroke:#1d9f3b}.theme-light .Knob--color--teal .Knob__ringFill{stroke:#00a39c}.theme-light .Knob--color--blue .Knob__ringFill{stroke:#1e78bb}.theme-light .Knob--color--dark-blue .Knob__ringFill{stroke:#004274}.theme-light .Knob--color--violet .Knob__ringFill{stroke:#5a30b5}.theme-light .Knob--color--purple .Knob__ringFill{stroke:#932eb4}.theme-light .Knob--color--pink .Knob__ringFill{stroke:#db228a}.theme-light .Knob--color--brown .Knob__ringFill{stroke:#955d39}.theme-light .Knob--color--grey .Knob__ringFill{stroke:#e6e6e6}.theme-light .Knob--color--light-grey .Knob__ringFill{stroke:#999}.theme-light .Knob--color--good .Knob__ringFill{stroke:#529923}.theme-light .Knob--color--average .Knob__ringFill{stroke:#da810e}.theme-light .Knob--color--bad .Knob__ringFill{stroke:#c82121}.theme-light .Knob--color--label .Knob__ringFill{stroke:#353535}.theme-light .Knob--color--xeno .Knob__ringFill{stroke:#4a3253}.theme-light .Slider{cursor:e-resize}.theme-light .Slider__cursorOffset{position:absolute;top:0;left:0;bottom:0;transition:none !important}.theme-light .Slider__cursor{position:absolute;top:0;right:-.0833333333em;bottom:0;width:0;border-left:.1666666667em solid #000}.theme-light .Slider__pointer{position:absolute;right:-.4166666667em;bottom:-.3333333333em;width:0;height:0;border-left:.4166666667em solid transparent;border-right:.4166666667em solid transparent;border-bottom:.4166666667em solid #000}.theme-light .Slider__popupValue{position:absolute;right:0;top:-2rem;font-size:1rem;padding:.25rem .5rem;color:#fff;background-color:#000;transform:translateX(50%);white-space:nowrap}.theme-light .ProgressBar{display:inline-block;position:relative;width:100%;padding:0 .5em;border-width:.0833333333em !important;border-style:solid !important;border-radius:.16em;background-color:rgba(0,0,0,0);transition:border-color 900ms ease-out}.theme-light .ProgressBar__fill{position:absolute;top:-0.5px;left:0px;bottom:-0.5px}.theme-light .ProgressBar__fill--animated{transition:background-color 900ms ease-out,width 900ms ease-out}.theme-light .ProgressBar__content{position:relative;line-height:1.4166666667em;width:100%;text-align:right}.theme-light .ProgressBar--color--default{border:.0833333333em solid #bfbfbf}.theme-light .ProgressBar--color--default .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--black{border-color:#000 !important}.theme-light .ProgressBar--color--black .ProgressBar__fill{background-color:#000}.theme-light .ProgressBar--color--white{border-color:#bfbfbf !important}.theme-light .ProgressBar--color--white .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--red{border-color:#a61c1c !important}.theme-light .ProgressBar--color--red .ProgressBar__fill{background-color:#a61c1c}.theme-light .ProgressBar--color--orange{border-color:#c0530b !important}.theme-light .ProgressBar--color--orange .ProgressBar__fill{background-color:#c0530b}.theme-light .ProgressBar--color--yellow{border-color:#bfa303 !important}.theme-light .ProgressBar--color--yellow .ProgressBar__fill{background-color:#bfa303}.theme-light .ProgressBar--color--olive{border-color:#889912 !important}.theme-light .ProgressBar--color--olive .ProgressBar__fill{background-color:#889912}.theme-light .ProgressBar--color--green{border-color:#188532 !important}.theme-light .ProgressBar--color--green .ProgressBar__fill{background-color:#188532}.theme-light .ProgressBar--color--teal{border-color:#008882 !important}.theme-light .ProgressBar--color--teal .ProgressBar__fill{background-color:#008882}.theme-light .ProgressBar--color--blue{border-color:#19649c !important}.theme-light .ProgressBar--color--blue .ProgressBar__fill{background-color:#19649c}.theme-light .ProgressBar--color--dark-blue{border-color:#003761 !important}.theme-light .ProgressBar--color--dark-blue .ProgressBar__fill{background-color:#003761}.theme-light .ProgressBar--color--violet{border-color:#4b2897 !important}.theme-light .ProgressBar--color--violet .ProgressBar__fill{background-color:#4b2897}.theme-light .ProgressBar--color--purple{border-color:#7a2696 !important}.theme-light .ProgressBar--color--purple .ProgressBar__fill{background-color:#7a2696}.theme-light .ProgressBar--color--pink{border-color:#b61d73 !important}.theme-light .ProgressBar--color--pink .ProgressBar__fill{background-color:#b61d73}.theme-light .ProgressBar--color--brown{border-color:#7c4d2f !important}.theme-light .ProgressBar--color--brown .ProgressBar__fill{background-color:#7c4d2f}.theme-light .ProgressBar--color--grey{border-color:#bfbfbf !important}.theme-light .ProgressBar--color--grey .ProgressBar__fill{background-color:#bfbfbf}.theme-light .ProgressBar--color--light-grey{border-color:gray !important}.theme-light .ProgressBar--color--light-grey .ProgressBar__fill{background-color:gray}.theme-light .ProgressBar--color--good{border-color:#44801d !important}.theme-light .ProgressBar--color--good .ProgressBar__fill{background-color:#44801d}.theme-light .ProgressBar--color--average{border-color:#b56b0b !important}.theme-light .ProgressBar--color--average .ProgressBar__fill{background-color:#b56b0b}.theme-light .ProgressBar--color--bad{border-color:#a61c1c !important}.theme-light .ProgressBar--color--bad .ProgressBar__fill{background-color:#a61c1c}.theme-light .ProgressBar--color--label{border-color:#2c2c2c !important}.theme-light .ProgressBar--color--label .ProgressBar__fill{background-color:#2c2c2c}.theme-light .ProgressBar--color--xeno{border-color:#3e2945 !important}.theme-light .ProgressBar--color--xeno .ProgressBar__fill{background-color:#3e2945}.theme-light .Chat{color:#000}.theme-light .Chat__badge{display:inline-block;min-width:.5em;font-size:.7em;padding:.2em .3em;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:crimson;border-radius:10px;transition:font-size 200ms ease-out}.theme-light .Chat__badge:before{content:"x"}.theme-light .Chat__badge--animate{font-size:.9em;transition:font-size 0ms}.theme-light .Chat__scrollButton{position:fixed;right:2em;bottom:1em}.theme-light .Chat__reconnected{font-size:.85em;text-align:center;margin:1em 0 2em}.theme-light .Chat__reconnected:before{content:"Reconnected";display:inline-block;border-radius:1em;padding:0 .7em;color:#db2828;background-color:#fff}.theme-light .Chat__reconnected:after{content:"";display:block;margin-top:-0.75em;border-bottom:.1666666667em solid #db2828}.theme-light .Chat__highlight{color:#000}.theme-light .Chat__highlight--restricted{color:#fff;background-color:#a00;font-weight:bold}.theme-light .ChatMessage{word-wrap:break-word}.theme-light .ChatMessage--highlighted{position:relative;border-left:.1666666667em solid #fd4;padding-left:.5em}.theme-light .ChatMessage--highlighted:after{content:"";position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(255,221,68,.1);pointer-events:none}.theme-light .Layout,.theme-light .Layout *{scrollbar-base-color:#f2f2f2;scrollbar-face-color:#d6d6d6;scrollbar-3dlight-color:#eee;scrollbar-highlight-color:#eee;scrollbar-track-color:#f2f2f2;scrollbar-arrow-color:#777;scrollbar-shadow-color:#d6d6d6}.theme-light .Layout__content{position:absolute;top:0;bottom:0;left:0;right:0;overflow-x:hidden;overflow-y:hidden}.theme-light .Layout__content--scrollable{overflow-y:scroll;margin-bottom:0}.theme-light .Window{position:fixed;top:0;bottom:0;left:0;right:0;color:#000;background-color:#eee;background-image:linear-gradient(to bottom, #eeeeee 0%, #eeeeee 100%)}.theme-light .Window__titleBar{position:fixed;z-index:1;top:0;left:0;width:100%;height:32px;height:2.6666666667rem}.theme-light .Window__rest{position:fixed;top:32px;top:2.6666666667rem;bottom:0;left:0;right:0}.theme-light .Window__contentPadding{margin:.5rem;height:100%;height:calc(100% - 1.01rem)}.theme-light .Window__contentPadding:after{height:0}.theme-light .Layout__content--scrollable .Window__contentPadding:after{display:block;content:"";height:.5rem}.theme-light .Window__dimmer{position:fixed;top:0;bottom:0;left:0;right:0;background-color:rgba(252,252,252,.25);pointer-events:none}.theme-light .Window__resizeHandle__se{position:fixed;bottom:0;right:0;width:20px;width:1.6666666667rem;height:20px;height:1.6666666667rem;cursor:se-resize}.theme-light .Window__resizeHandle__s{position:fixed;bottom:0;left:0;right:0;height:6px;height:.5rem;cursor:s-resize}.theme-light .Window__resizeHandle__e{position:fixed;top:0;bottom:0;right:0;width:3px;width:.25rem;cursor:e-resize}.theme-light .TitleBar{background-color:#eee;border-bottom:1px solid rgba(0,0,0,.25);box-shadow:0 2px 2px rgba(0,0,0,.1);box-shadow:0 .1666666667rem .1666666667rem rgba(0,0,0,.1);user-select:none;-ms-user-select:none}.theme-light .TitleBar__clickable{color:rgba(0,0,0,.5);background-color:#eee;transition:color 250ms ease-out,background-color 250ms ease-out}.theme-light .TitleBar__clickable:hover{color:#fff;background-color:#c00;transition:color 0ms,background-color 0ms}.theme-light .TitleBar__title{position:absolute;display:inline-block;top:0;left:46px;left:3.8333333333rem;color:rgba(0,0,0,.75);font-size:14px;font-size:1.1666666667rem;line-height:31px;line-height:2.5833333333rem;white-space:nowrap;pointer-events:none}.theme-light .TitleBar__buttons{pointer-events:initial;display:inline-block;width:100%;margin-left:10px}.theme-light .TitleBar__dragZone{position:absolute;top:0;left:0;right:0;height:32px;height:2.6666666667rem}.theme-light .TitleBar__statusIcon{position:absolute;top:0;left:12px;left:1rem;transition:color .5s;font-size:20px;font-size:1.6666666667rem;line-height:32px !important;line-height:2.6666666667rem !important}.theme-light .TitleBar__close{position:absolute;top:-1px;right:0;width:45px;width:3.75rem;height:32px;height:2.6666666667rem;font-size:20px;font-size:1.6666666667rem;line-height:31px;line-height:2.5833333333rem;text-align:center}.theme-light .TitleBar__devBuildIndicator{position:absolute;top:6px;top:.5rem;right:52px;right:4.3333333333rem;min-width:20px;min-width:1.6666666667rem;padding:2px 4px;padding:.1666666667rem .3333333333rem;background-color:rgba(91,170,39,.75);color:#fff;text-align:center}.theme-light html,.theme-light body{padding:0;margin:0;height:100%;color:#000}.theme-light body{background:#fff;font-family:Verdana,sans-serif;font-size:13px;line-height:1.2;overflow-x:hidden;overflow-y:scroll;word-wrap:break-word}.theme-light em{font-style:normal;font-weight:bold}.theme-light img{margin:0;padding:0;line-height:1;-ms-interpolation-mode:nearest-neighbor;image-rendering:pixelated}.theme-light img.icon{height:1em;min-height:16px;width:auto;vertical-align:bottom}.theme-light a{color:blue}.theme-light a.visited{color:#f0f}.theme-light a:visited{color:#f0f}.theme-light a.popt{text-decoration:none}.theme-light .popup{position:fixed;top:50%;left:50%;background:#ddd}.theme-light .popup .close{position:absolute;background:#aaa;top:0;right:0;color:#333;text-decoration:none;z-index:2;padding:0 10px;height:30px;line-height:30px}.theme-light .popup .close:hover{background:#999}.theme-light .popup .head{background:#999;color:#ddd;padding:0 10px;height:30px;line-height:30px;text-transform:uppercase;font-size:.9em;font-weight:bold;border-bottom:2px solid green}.theme-light .popup input{border:1px solid #999;background:#fff;margin:0;padding:5px;outline:none;color:#333}.theme-light .popup input[type=text]:hover,.theme-light .popup input[type=text]:active,.theme-light .popup input[type=text]:focus{border-color:green}.theme-light .popup input[type=submit]{padding:5px 10px;background:#999;color:#ddd;text-transform:uppercase;font-size:.9em;font-weight:bold}.theme-light .popup input[type=submit]:hover,.theme-light .popup input[type=submit]:focus,.theme-light .popup input[type=submit]:active{background:#aaa;cursor:pointer}.theme-light .changeFont{padding:10px}.theme-light .changeFont a{display:block;text-decoration:none;padding:3px;color:#333}.theme-light .changeFont a:hover{background:#ccc}.theme-light .highlightPopup{padding:10px;text-align:center}.theme-light .highlightPopup input[type=text]{display:block;width:215px;text-align:left;margin-top:5px}.theme-light .highlightPopup input.highlightColor{background-color:#ff0}.theme-light .highlightPopup input.highlightTermSubmit{margin-top:5px}.theme-light .contextMenu{background-color:#ddd;position:fixed;margin:2px;width:150px}.theme-light .contextMenu a{display:block;padding:2px 5px;text-decoration:none;color:#333}.theme-light .contextMenu a:hover{background-color:#ccc}.theme-light .filterMessages{padding:5px}.theme-light .filterMessages div{padding:2px 0}.theme-light .icon-stack{height:1em;line-height:1em;width:1em;vertical-align:middle;margin-top:-2px}.theme-light .motd{color:#638500;font-family:Verdana,sans-serif;white-space:normal}.theme-light .motd h1,.theme-light .motd h2,.theme-light .motd h3,.theme-light .motd h4,.theme-light .motd h5,.theme-light .motd h6{color:#638500;text-decoration:underline}.theme-light .motd a,.theme-light .motd a:link,.theme-light .motd a:visited,.theme-light .motd a:active,.theme-light .motd a:hover{color:#638500}.theme-light .bold,.theme-light .name,.theme-light .prefix,.theme-light .ooc,.theme-light .looc,.theme-light .adminooc,.theme-light .admin,.theme-light .medal,.theme-light .yell{font-weight:bold}.theme-light .italic,.theme-light .italics{font-style:italic}.theme-light .highlight{background:#ff0}.theme-light h1,.theme-light h2,.theme-light h3,.theme-light h4,.theme-light h5,.theme-light h6{color:blue;font-family:Georgia,Verdana,sans-serif}.theme-light h1.alert,.theme-light h2.alert{color:#000}.theme-light em{font-style:normal;font-weight:bold}.theme-light .ooc{font-weight:bold}.theme-light .adminobserverooc{color:#09c;font-weight:bold}.theme-light .adminooc{color:#700038;font-weight:bold}.theme-light .adminsay{color:#ff4500;font-weight:bold}.theme-light .admin{color:#4473ff;font-weight:bold}.theme-light .name{font-weight:bold}.theme-light .deadsay{color:#5c00e6}.theme-light .binarysay{color:#20c20e;background-color:#000;display:block}.theme-light .binarysay a{color:lime}.theme-light .binarysay a:active,.theme-light .binarysay a:visited{color:#8f8}.theme-light .radio{color:green}.theme-light .sciradio{color:#939}.theme-light .comradio{color:#948f02}.theme-light .secradio{color:#a30000}.theme-light .medradio{color:#337296}.theme-light .engradio{color:#fb5613}.theme-light .sentryradio{color:#844300}.theme-light .suppradio{color:#a8732b}.theme-light .servradio{color:#6eaa2c}.theme-light .syndradio{color:#6d3f40}.theme-light .gangradio{color:#ac2ea1}.theme-light .centcomradio{color:#686868}.theme-light .aiprivradio{color:#f0f}.theme-light .redteamradio{color:red}.theme-light .blueteamradio{color:blue}.theme-light .greenteamradio{color:lime}.theme-light .yellowteamradio{color:#d1ba22}.theme-light .yell{font-weight:bold}.theme-light .alert{color:red}.theme-light h1.alert,.theme-light h2.alert{color:#000}.theme-light .userdanger{color:red;font-weight:bold;font-size:185%}.theme-light .bolddanger{color:red;font-weight:bold}.theme-light .danger{color:red}.theme-light .tinydanger{color:red;font-size:85%}.theme-light .smalldanger{color:red;font-size:90%}.theme-light .warning{color:red;font-style:italic}.theme-light .alertwarning{color:red;font-weight:bold}.theme-light .boldwarning{color:red;font-style:italic;font-weight:bold}.theme-light .announce{color:#228b22;font-weight:bold}.theme-light .boldannounce{color:red;font-weight:bold}.theme-light .minorannounce{font-weight:bold;font-size:185%}.theme-light .greenannounce{color:lime;font-weight:bold}.theme-light .rose{color:#ff5050}.theme-light .info{color:#00c}.theme-light .notice{color:#009}.theme-light .staff_ic{color:#009}.theme-light .tinynotice{color:#009;font-size:85%}.theme-light .tinynoticeital{color:#009;font-style:italic;font-size:85%}.theme-light .smallnotice{color:#009;font-size:90%}.theme-light .smallnoticeital{color:#009;font-style:italic;font-size:90%}.theme-light .boldnotice{color:#009;font-weight:bold}.theme-light .hear{color:#009;font-style:italic}.theme-light .adminnotice{color:blue}.theme-light .adminhelp{color:red;font-weight:bold}.theme-light .unconscious{color:blue;font-weight:bold}.theme-light .suicide{color:#ff5050;font-style:italic}.theme-light .green{color:#03ff39}.theme-light .grey{color:#838383}.theme-light .red{color:red}.theme-light .blue{color:blue}.theme-light .nicegreen{color:#14a833}.theme-light .boldnicegreen{color:#14a833;font-weight:bold}.theme-light .cult{color:#973e3b}.theme-light .cultitalic{color:#973e3b;font-style:italic}.theme-light .cultbold{color:#973e3b;font-style:italic;font-weight:bold}.theme-light .cultboldtalic{color:#973e3b;font-weight:bold;font-size:185%}.theme-light .cultlarge{color:#973e3b;font-weight:bold;font-size:185%}.theme-light .narsie{color:#973e3b;font-weight:bold;font-size:925%}.theme-light .narsiesmall{color:#973e3b;font-weight:bold;font-size:370%}.theme-light .colossus{color:#7f282a;font-size:310%}.theme-light .hierophant{color:#609;font-weight:bold;font-style:italic}.theme-light .hierophant_warning{color:#609;font-style:italic}.theme-light .purple{color:#5e2d79}.theme-light .holoparasite{color:#35333a}.theme-light .revennotice{color:#1d2953}.theme-light .revenboldnotice{color:#1d2953;font-weight:bold}.theme-light .revenbignotice{color:#1d2953;font-weight:bold;font-size:185%}.theme-light .revenminor{color:#823abb}.theme-light .revenwarning{color:#760fbb;font-style:italic}.theme-light .revendanger{color:#760fbb;font-weight:bold;font-size:185%}.theme-light .deconversion_message{color:#5000a0;font-size:185%;font-style:italic}.theme-light .ghostalert{color:#5c00e6;font-style:italic;font-weight:bold}.theme-light .alien{color:#543354}.theme-light .noticealien{color:#00c000}.theme-light .alertalien{color:#00c000;font-weight:bold}.theme-light .changeling{color:purple;font-style:italic}.theme-light .alertsyndie{color:red;font-size:185%;font-weight:bold}.theme-light .spider{color:#4d004d;font-weight:bold;font-size:185%}.theme-light .interface{color:#303}.theme-light .sans{font-family:"Comic Sans MS",cursive,sans-serif}.theme-light .papyrus{font-family:"Papyrus",cursive,sans-serif}.theme-light .robot{font-family:"Courier New",cursive,sans-serif}.theme-light .tape_recorder{color:maroon;font-family:"Courier New",cursive,sans-serif}.theme-light .command_headset{font-weight:bold;font-size:160%}.theme-light .small{font-size:60%}.theme-light .big{font-size:185%}.theme-light .reallybig{font-size:245%}.theme-light .extremelybig{font-size:310%}.theme-light .greentext{color:lime;font-size:185%}.theme-light .redtext{color:red;font-size:185%}.theme-light .clown{color:#ff69bf;font-size:160%;font-family:"Comic Sans MS",cursive,sans-serif;font-weight:bold}.theme-light .singing{font-family:"Trebuchet MS",cursive,sans-serif;font-style:italic}.theme-light .his_grace{color:#15d512;font-family:"Courier New",cursive,sans-serif;font-style:italic}.theme-light .hypnophrase{color:#0d0d0d;font-weight:bold;animation:hypnocolor 1500ms infinite;animation-direction:alternate}@keyframes hypnocolor{0%{color:#0d0d0d}25%{color:#410194}50%{color:#7f17d8}75%{color:#410194}100%{color:#3bb5d3}}.theme-light .phobia{color:#d00;font-weight:bold;animation:phobia 750ms infinite}@keyframes phobia{0%{color:#0d0d0d}50%{color:#d00}100%{color:#0d0d0d}}.theme-light .icon{height:1em;width:auto}.theme-light .bigicon{font-size:2.5em}.theme-light .memo{color:#638500;text-align:center}.theme-light .memoedit{text-align:center;font-size:125%}.theme-light .abductor{color:purple;font-style:italic}.theme-light .mind_control{color:#a00d6f;font-size:100%;font-weight:bold;font-style:italic}.theme-light .slime{color:#00ced1}.theme-light .drone{color:#848482}.theme-light .monkey{color:#975032}.theme-light .swarmer{color:#2c75ff}.theme-light .resonate{color:#298f85}.theme-light .monkeyhive{color:#774704}.theme-light .monkeylead{color:#774704;font-size:80%}.theme-light .connectionClosed,.theme-light .fatalError{background:red;color:#fff;padding:5px}.theme-light .connectionClosed.restored{background:green}.theme-light .internal.boldnshit{color:blue;font-weight:bold}.theme-light .text-normal{font-weight:normal;font-style:normal}.theme-light .hidden{display:none;visibility:hidden}.theme-light .ml-1{margin-left:1em}.theme-light .ml-2{margin-left:2em}.theme-light .ml-3{margin-left:3em}.theme-light .xooc{color:#6c0094;font-weight:bold;font-size:140%}.theme-light .mooc{color:#090;font-weight:bold;font-size:140%}.theme-light .yooc{color:#999600;font-weight:bold;font-size:140%}.theme-light .headminsay{color:#5a0a7f;font-weight:bold}.theme-light .radio{color:#4e4e4e}.theme-light .deptradio{color:#939}.theme-light .comradio{color:#004080}.theme-light .centradio{color:#5c5c8a}.theme-light .cryoradio{color:#554e3f}.theme-light .hcradio{color:#318779}.theme-light .pvstradio{color:#9b0612}.theme-light .airadio{color:#f0f}.theme-light .secradio{color:#a30000}.theme-light .engradio{color:#a66300}.theme-light .sentryradio{color:#844300}.theme-light .medradio{color:#008160}.theme-light .supradio{color:#5f4519}.theme-light .jtacradio{color:#702963}.theme-light .intelradio{color:#027d02}.theme-light .wyradio{color:#fe9b24}.theme-light .pmcradio{color:#136957}.theme-light .vairadio{color:#943d0a}.theme-light .cmbradio{color:#1b748c}.theme-light .clfradio{color:#6f679c}.theme-light .alpharadio{color:#828cff}.theme-light .bravoradio{color:#c68610}.theme-light .charlieradio{color:#a5a}.theme-light .deltaradio{color:#007fcf}.theme-light .echoradio{color:#3a7e65}.theme-light .medium{font-size:110%}.theme-light .big{font-size:115%}.theme-light .large{font-size:125%}.theme-light .extra_large{font-size:130%}.theme-light .huge{font-size:150%}.theme-light .underline{text-decoration:underline}.theme-light .orange{color:#eca100}.theme-light .normal{font-style:normal}.theme-light .attack{color:red}.theme-light .moderate{color:#c00}.theme-light .disarm{color:#900}.theme-light .passive{color:#600}.theme-light .helpful{color:#368f31}.theme-light .scanner{color:red}.theme-light .scannerb{color:red;font-weight:bold}.theme-light .scannerburn{color:orange}.theme-light .scannerburnb{color:orange;font-weight:bold}.theme-light .rose{color:#ff5050}.theme-light .debuginfo{color:#493d26;font-style:italic}.theme-light .xenonotice{color:#2a623d}.theme-light .xenoboldnotice{color:#2a623d;font-style:italic}.theme-light .xenowarning{color:#2a623d;font-style:italic}.theme-light .xenominorwarning{color:#2a623d;font-weight:bold;font-style:italic}.theme-light .xenodanger{color:#2a623d;font-weight:bold}.theme-light .avoidharm{color:#72a0e5;font-weight:bold}.theme-light .highdanger{color:red;font-weight:bold;font-size:140%}.theme-light .xenohighdanger{color:#2a623d;font-weight:bold;font-size:140%}.theme-light .xenoannounce{color:#1a472a;font-family:book-antiqua;font-weight:bold;font-size:140%}.theme-light .yautjabold{color:purple;font-weight:bold}.theme-light .yautjaboldbig{color:purple;font-weight:bold;font-size:120%}.theme-light .objectivebig{font-weight:bold;font-size:130%}.theme-light .objectivegreen{color:lime}.theme-light .objectivered{color:red}.theme-light .objectivesuccess{color:lime;font-weight:bold;font-size:110%}.theme-light .objectivefail{color:red;font-weight:bold;font-size:110%}.theme-light .xenotalk,.theme-light .xeno{color:#900090;font-style:italic}.theme-light .xenoleader{color:#730d73;font-style:italic;font-size:125%}.theme-light .xenoqueen{color:#730d73;font-style:italic;font-weight:bold;font-size:125%}.theme-light .newscaster{color:maroon}.theme-light .role_header{color:#db0000;display:block;text-align:center;font-weight:bold;font-family:trebuchet-ms;font-size:150%}.theme-light .role_body{color:#009;display:block;text-align:center;font-size:125%}.theme-light .round_header{color:#db0000;display:block;text-align:center;font-family:courier;font-weight:bold;font-size:180%}.theme-light .round_body{color:#001427;display:block;text-align:center;font-family:trebuchet-ms;font-weight:bold;font-size:125%}.theme-light .event_announcement{color:#600d48;font-family:arial-narrow;font-weight:bold;font-size:125%}.theme-light .announce_header{color:#000;font-weight:bold;font-size:150%}.theme-light .announce_header_blue{color:#009;font-weight:bold;font-size:150%}.theme-light .announce_body{color:red;font-weight:normal;font-size:125%}.theme-light .centerbold{display:block;text-align:center;font-weight:bold}.theme-light .mod{color:#735638;font-weight:bold}.theme-light .modooc{color:#184880;font-weight:bold}.theme-light .adminmod{color:#402a14;font-weight:bold}.theme-light .mentorsay{color:#b38c32;font-weight:bold}.theme-light .mentorhelp{color:#007e00;font-weight:bold}.theme-light .mentorbody{color:#da6200;font-weight:bold}.theme-light .mentorstaff{color:#876101;font-weight:bold}.theme-light .staffsay{color:#876101;font-weight:bold}.theme-light .tajaran{color:#803b56}.theme-light .tajaran_signlang{color:#941c1c}.theme-light .skrell{color:#00ced1}.theme-light .soghun{color:#228b22}.theme-light .changeling{color:purple}.theme-light .vox{color:#a0a}.theme-light .monkey{color:#966c47}.theme-light .german{color:#858f1e;font-family:"Times New Roman",Times,serif}.theme-light .spanish{color:#cf982b}.theme-light .japanese{color:#940927}.theme-light .chinese{color:#fe1919}.theme-light .zombie{color:#216163;font-style:italic}.theme-light .commando{color:#fe9b24;font-style:bold}.theme-light .rough{font-family:trebuchet-ms,cursive,sans-serif}.theme-light .say_quote{font-family:Georgia,Verdana,sans-serif}.theme-light .admin .message{color:#314cad}.theme-light .admin .prefix{font-weight:bolder}.theme-light .pm{font-size:110%}.theme-light .retro_translator{font-weight:bold}.theme-light .yautja_translator{color:#a00;font-weight:bold;animation:glitch .5s infinite}@keyframes glitch{25%{color:#a00;transform:translate(-2px, -1px)}50%{color:#be0000;transform:translate(1px, -2px)}75%{color:#8d0000;transform:translate(-1px, 2px)}100%{color:#830000;transform:translate(1px, 1px)}}.theme-light .examine_block{background:#f2f7fa;border:1px solid #111a27;margin:.5em;padding:.5em .75em}.theme-light .examine_block .icon{width:1.5em;height:1.5em;margin:0;padding:0}.theme-light .tooltip{font-style:italic;border-bottom:1px dashed #000} From 20ef355f7de3a837a7048ff87ac4320aac6e24e7 Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 06:34:24 -0400 Subject: [PATCH 49/54] and that --- map_config/maps.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/map_config/maps.txt b/map_config/maps.txt index 1ab158411c..96a71cf44a 100644 --- a/map_config/maps.txt +++ b/map_config/maps.txt @@ -59,5 +59,8 @@ endmap map new_varadero endmap +map derelict_almayer +endmap + map whiskey_outpost_v2 endmap From 7b1ad66527b130a7e8c4f79ed6bb2d6e2ca0fe4b Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 09:05:27 -0400 Subject: [PATCH 50/54] light --- maps/map_files/golden_arrow/golden_arrow.dmm | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index 85d8d1dade..ce965c9e90 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -1391,6 +1391,15 @@ icon_state = "sterile_green" }, /area/golden_arrow/medical) +"ie" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/golden_arrow/hangar) "if" = ( /obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer{ @@ -1897,10 +1906,7 @@ "ld" = ( /obj/structure/closet, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 - }, +/obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -19725,7 +19731,7 @@ pO Rt OH SR -SR +fx SR Cl JZ @@ -20027,7 +20033,7 @@ Mc bo eu Dc -Rg +ie Nf Jb Cv From b0aa9a15cf77f40488424b700f0188c8919087e7 Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 13:13:02 -0400 Subject: [PATCH 51/54] LET ME DRONES BE FREE --- code/game/area/almayer.dm | 10 ---------- code/game/area/areas.dm | 2 +- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/code/game/area/almayer.dm b/code/game/area/almayer.dm index 32db45fc7c..21ff397665 100644 --- a/code/game/area/almayer.dm +++ b/code/game/area/almayer.dm @@ -63,7 +63,6 @@ fake_zlevel = 1 // upperdeck soundscape_playlist = SCAPE_PL_CIC soundscape_interval = 50 - flags_area = AREA_NOTUNNEL /area/almayer/command/cichallway name = "\improper Secure Command Hallway" @@ -76,10 +75,6 @@ fake_zlevel = 1 // upperdeck soundscape_playlist = SCAPE_PL_ARES soundscape_interval = 120 - flags_area = AREA_NOTUNNEL|AREA_UNWEEDABLE - can_build_special = FALSE - is_resin_allowed = FALSE - resin_construction_allowed = FALSE /area/almayer/command/securestorage name = "\improper Secure Storage" @@ -95,13 +90,11 @@ name = "\improper Telecommunications" icon_state = "tcomms" fake_zlevel = 1 // upperdeck - flags_area = AREA_NOTUNNEL /area/almayer/command/self_destruct name = "\improper Self-Destruct Core Room" icon_state = "selfdestruct" fake_zlevel = 1 // upperdeck - flags_area = AREA_NOTUNNEL /area/almayer/command/corporateliason name = "\improper Corporate Liaison Office" @@ -732,19 +725,16 @@ /area/almayer/ert_port name = "\improper ERT Docking Port" icon_state = "lifeboat" - flags_area = AREA_NOTUNNEL /area/space/almayer/lifeboat_dock name = "\improper Lifeboat Docking Port" icon_state = "lifeboat" fake_zlevel = 1 // upperdeck - flags_area = AREA_NOTUNNEL /area/almayer/evacuation icon = 'icons/turf/areas.dmi' icon_state = "shuttle2" requires_power = 0 - flags_area = AREA_NOTUNNEL //Placeholder. /area/almayer/evacuation/pod1 diff --git a/code/game/area/areas.dm b/code/game/area/areas.dm index c81da5556e..a1d8b6d919 100644 --- a/code/game/area/areas.dm +++ b/code/game/area/areas.dm @@ -40,7 +40,7 @@ var/gas_type = GAS_TYPE_AIR var/temperature = T20C var/pressure = ONE_ATMOSPHERE - var/can_build_special = FALSE + var/can_build_special = TRUE var/is_resin_allowed = TRUE // can xenos weed, place resin holes or dig tunnels at said areas var/is_landing_zone = FALSE // primarily used to prevent mortars from hitting this location var/resin_construction_allowed = TRUE // Allow construction of resin walls, and other special From 6d17e8d8c1558ff3acf8fc21a74d28807d1788d4 Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 13:17:15 -0400 Subject: [PATCH 52/54] Ghetto way to stop votes --- maps/derelict_almayer.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/maps/derelict_almayer.json b/maps/derelict_almayer.json index 6f27befaee..a4afb07b30 100644 --- a/maps/derelict_almayer.json +++ b/maps/derelict_almayer.json @@ -7,5 +7,12 @@ "announce_text": "An automated distress signal has been received from the \"USS Almayer\". A response team from the ###SHIPNAME### will be dispatched shortly to investigate.", "traits": [{ "Ground": true }], "nightmare_path": "maps/Nightmare/maps/derelict_almayer/", - "camouflage": "classic" + "camouflage": "classic", + "gamemodes": [ + "Distress Signal", + "Hunter Games", + "Hive Wars", + "Faction Clash", + "Infection" + ] } From 89279ef940a2eb476534880686ba6f7d4463b17b Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 13:24:35 -0400 Subject: [PATCH 53/54] Alright we direct committing all day --- maps/derelict_almayer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maps/derelict_almayer.json b/maps/derelict_almayer.json index a4afb07b30..0d0fc08da4 100644 --- a/maps/derelict_almayer.json +++ b/maps/derelict_almayer.json @@ -8,7 +8,7 @@ "traits": [{ "Ground": true }], "nightmare_path": "maps/Nightmare/maps/derelict_almayer/", "camouflage": "classic", - "gamemodes": [ + "gamemodes": [ "Distress Signal", "Hunter Games", "Hive Wars", From 73297f07f686315c334d1121033b897eb0e9fc5d Mon Sep 17 00:00:00 2001 From: Morrow Date: Sat, 28 Oct 2023 16:33:47 -0400 Subject: [PATCH 54/54] Myriad bug fixes --- code/__DEFINES/xeno_ai.dm | 2 + code/controllers/subsystem/pathfinding.dm | 5 +- .../xenomorph/ai/movement/base_define.dm | 1 - .../carbon/xenomorph/ai/movement/linger.dm | 8 +- .../mob/living/carbon/xenomorph/ai/xeno_ai.dm | 114 ++++++++---------- .../living/carbon/xenomorph/castes/Runner.dm | 7 +- code/modules/vehicles/apc/apc.dm | 2 - code/modules/vehicles/van/van.dm | 2 - 8 files changed, 69 insertions(+), 72 deletions(-) diff --git a/code/__DEFINES/xeno_ai.dm b/code/__DEFINES/xeno_ai.dm index f67cb3f6dd..defe61de11 100644 --- a/code/__DEFINES/xeno_ai.dm +++ b/code/__DEFINES/xeno_ai.dm @@ -122,3 +122,5 @@ PROBABILITY CALCULATIONS ARE HERE #define XENO_SPAWN_T2 (1<<1) #define XENO_SPAWN_T3 (1<<2) +/// Special blockers for pathfinding or obstacle handling +#define XENO_AI_SPECIAL_BLOCKERS list(/obj/flamer_fire, /obj/vehicle/multitile) diff --git a/code/controllers/subsystem/pathfinding.dm b/code/controllers/subsystem/pathfinding.dm index 552da1fb8a..b87c65d42c 100644 --- a/code/controllers/subsystem/pathfinding.dm +++ b/code/controllers/subsystem/pathfinding.dm @@ -11,9 +11,6 @@ SUBSYSTEM_DEF(xeno_pathfinding) var/list/hash_path = list() var/current_position = 1 - /// Any special blockers we want to account for that do not normally block movement - var/list/special_blockers = list(/obj/flamer_fire) - /datum/controller/subsystem/xeno_pathfinding/stat_entry(msg) msg = "P:[length(paths_to_calculate)]" return ..() @@ -133,7 +130,7 @@ SUBSYSTEM_DEF(xeno_pathfinding) var/list/pass_back = list() for(var/atom/checked_atom as anything in checking_turf) - for(var/special_block in special_blockers) + for(var/special_block in XENO_AI_SPECIAL_BLOCKERS) if(istype(checked_atom, special_block)) pass_back += checked_atom diff --git a/code/modules/mob/living/carbon/xenomorph/ai/movement/base_define.dm b/code/modules/mob/living/carbon/xenomorph/ai/movement/base_define.dm index e85952a435..bb90128dc3 100644 --- a/code/modules/mob/living/carbon/xenomorph/ai/movement/base_define.dm +++ b/code/modules/mob/living/carbon/xenomorph/ai/movement/base_define.dm @@ -65,7 +65,6 @@ if(T == get_turf(X.current_target)) break - if(!X.move_to_next_turf(T)) X.current_target = null return TRUE diff --git a/code/modules/mob/living/carbon/xenomorph/ai/movement/linger.dm b/code/modules/mob/living/carbon/xenomorph/ai/movement/linger.dm index e22b9756be..bbaebfda6e 100644 --- a/code/modules/mob/living/carbon/xenomorph/ai/movement/linger.dm +++ b/code/modules/mob/living/carbon/xenomorph/ai/movement/linger.dm @@ -17,7 +17,13 @@ if(moving_xeno.throwing) return - if(moving_xeno.current_target.is_mob_incapacitated()) + // Always charge forward if sentries/APCs, no real reason to dodge and weave + var/incapacitated_check = TRUE + if(istype(moving_xeno.current_target, /mob)) + var/mob/current_target_mob = moving_xeno.current_target + incapacitated_check = current_target_mob.is_mob_incapacitated() + + if(incapacitated_check) return ..() check_for_travelling_turf_change(moving_xeno) diff --git a/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm b/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm index 732a463ade..89cc7b849a 100644 --- a/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm +++ b/code/modules/mob/living/carbon/xenomorph/ai/xeno_ai.dm @@ -1,7 +1,7 @@ /mob/living/carbon/xenomorph // AI stuff var/flags_ai = XENO_AI_NO_DESPAWN - var/mob/current_target + var/atom/movable/current_target var/next_path_generation = 0 var/list/current_path @@ -64,7 +64,12 @@ GLOBAL_LIST_INIT(ai_target_limbs, list( current_path = null return TRUE - if(QDELETED(current_target) || current_target.stat != CONSCIOUS || get_dist(current_target, src) > ai_range) + var/stat_check = FALSE + if(istype(current_target, /mob)) + var/mob/current_target_mob = current_target + stat_check = (current_target_mob != CONSCIOUS) + + if(QDELETED(current_target) || stat_check || get_dist(current_target, src) > ai_range) current_target = get_target(ai_range) if(QDELETED(src)) return TRUE @@ -96,8 +101,19 @@ GLOBAL_LIST_INIT(ai_target_limbs, list( if(XA.process_ai(src, delta_time) == PROCESS_KILL) unregister_ai_action(XA) - if(get_dist(src, current_target) <= 1 && DT_PROB(XENO_SLASH, delta_time)) + if(!current_target || !DT_PROB(XENO_SLASH, delta_time)) + return + + var/list/turf/turfs_to_dist_check = list(get_turf(current_target)) + + if(length(current_target.locs) > 1) + turfs_to_dist_check = get_multitile_turfs_to_check() + + for(var/turf/checked_turf as anything in turfs_to_dist_check) + if(get_dist(src, checked_turf) > 1) + continue INVOKE_ASYNC(src, PROC_REF(do_click), current_target, "", list()) + return /** Controls movement when idle. Called by process_ai */ /mob/living/carbon/xenomorph/proc/ai_move_idle(delta_time) @@ -172,9 +188,9 @@ GLOBAL_LIST_INIT(ai_target_limbs, list( if(!can_move_and_apply_move_delay()) return TRUE - var/turf/next_turf = current_path[current_path.len] var/list/L = LinkBlocked(src, loc, next_turf, list(src, current_target), TRUE) + L += SSxeno_pathfinding.check_special_blockers(src, next_turf) for(var/a in L) var/atom/A = a if(A.xeno_ai_obstacle(src, get_dir(loc, next_turf)) == INFINITY) @@ -262,60 +278,36 @@ GLOBAL_LIST_INIT(ai_target_limbs, list( SHOULD_CALL_PARENT(TRUE) SSxeno_ai.remove_ai(src) -GLOBAL_LIST_EMPTY_TYPED(xeno_ai_spawns, /obj/effect/landmark/xeno_ai) -/obj/effect/landmark/xeno_ai - name = "Xeno AI Spawn" - var/list/spawned_xenos - var/remaining_spawns = 5 - - var/spawn_radius = 5 - var/list/spawnable_turfs - -/obj/effect/landmark/xeno_ai/Initialize(mapload, ...) - . = ..() - spawned_xenos = list() - - GLOB.xeno_ai_spawns += src - spawnable_turfs = list() - for(var/i in RANGE_TURFS(spawn_radius, src)) - var/turf/T = i - if(T == get_turf(src)) - spawnable_turfs += T - continue - - if(T.density) - continue - - var/failed = FALSE - for(var/a in T) - var/atom/A = a - if(A.density) - failed = TRUE - break - - if(failed) - continue - - for(var/t in getline(T, src)) - var/turf/line = t - if(line.density) - failed = TRUE - break - - if(failed) - continue - - spawnable_turfs += T - -/obj/effect/landmark/xeno_ai/proc/reduce_remaining_spawns(mob/living/carbon/xenomorph/X) - SIGNAL_HANDLER - remaining_spawns-- - -/obj/effect/landmark/xeno_ai/proc/handle_xeno_delete(mob/living/carbon/xenomorph/X) - SIGNAL_HANDLER - spawned_xenos -= X - -/obj/effect/landmark/xeno_ai/Destroy() - spawnable_turfs = null - GLOB.xeno_ai_spawns -= src - return ..() +/mob/living/carbon/xenomorph/proc/get_multitile_turfs_to_check() + var/angle = get_angle(current_target, src) + var/turf/base_turf = current_target.locs[1] + + switch(angle) + if(315 to 360, 0 to 45) //northerly + var/max_y_value = base_turf.y + (round(current_target.bound_height / 32) - 1) + var/list/turf/max_y_turfs = list() + for(var/turf/cycled_turf as anything in current_target.locs) + if(cycled_turf.y == max_y_value) + max_y_turfs += cycled_turf + return max_y_turfs + if(45 to 135) //easterly + var/max_x_value = base_turf.x + (round(current_target.bound_width / 32) - 1) + var/list/turf/max_x_turfs = list() + for(var/turf/cycled_turf as anything in current_target.locs) + if(cycled_turf.x == max_x_value) + max_x_turfs += cycled_turf + return max_x_turfs + if(135 to 225) //southerly + var/min_y_value = base_turf.y + var/list/turf/min_y_turfs = list() + for(var/turf/cycled_turf as anything in current_target.locs) + if(cycled_turf.y == min_y_value) + min_y_turfs += cycled_turf + return min_y_turfs + if(225 to 315) //westerly + var/min_x_value = base_turf.x + var/list/turf/min_x_turfs = list() + for(var/turf/cycled_turf as anything in current_target.locs) + if(cycled_turf.x == min_x_value) + min_x_turfs += cycled_turf + return min_x_turfs diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm b/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm index a3b5158121..d95989693d 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Runner.dm @@ -114,7 +114,12 @@ if(get_dist(current_target, src) > 1) return - if(!current_target.is_mob_incapacitated()) + if(!istype(current_target, /mob)) + return + + var/mob/current_target_mob = current_target + + if(!current_target_mob.is_mob_incapacitated()) return if(isxeno(current_target.pulledby)) diff --git a/code/modules/vehicles/apc/apc.dm b/code/modules/vehicles/apc/apc.dm index 55e2cf2d11..f7f5f32105 100644 --- a/code/modules/vehicles/apc/apc.dm +++ b/code/modules/vehicles/apc/apc.dm @@ -61,8 +61,6 @@ GLOBAL_LIST_EMPTY(command_apc_list) vehicle_flags = VEHICLE_CLASS_LIGHT - mob_size_required_to_hit = MOB_SIZE_XENO - dmg_multipliers = list( "all" = 1, "acid" = 1.6, diff --git a/code/modules/vehicles/van/van.dm b/code/modules/vehicles/van/van.dm index 5969b73957..c017eae28d 100644 --- a/code/modules/vehicles/van/van.dm +++ b/code/modules/vehicles/van/van.dm @@ -57,8 +57,6 @@ door_locked = FALSE - mob_size_required_to_hit = MOB_SIZE_XENO - var/overdrive_next = 0 var/overdrive_cooldown = 15 SECONDS var/overdrive_duration = 3 SECONDS