diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm
index f1424f5560..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"
@@ -154,7 +155,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)
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/datums/components/phone.dm b/code/datums/components/phone.dm
index 5d3c25e84b..49cca0cdf0 100644
--- a/code/datums/components/phone.dm
+++ b/code/datums/components/phone.dm
@@ -369,13 +369,12 @@ 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 == 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)
@@ -418,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
@@ -596,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)
@@ -604,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)
diff --git a/code/game/area/almayer.dm b/code/game/area/almayer.dm
index 6200444949..21ff397665 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
@@ -64,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"
@@ -77,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"
@@ -96,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"
@@ -548,11 +540,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 +653,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"
@@ -749,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
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/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/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.
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 b2982ff8b6..82c9b70863 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)
@@ -384,8 +386,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()
/*
@@ -442,19 +445,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 d00a30a90e..df33fa5227 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
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/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
diff --git a/maps/derelict_almayer.json b/maps/derelict_almayer.json
new file mode 100644
index 0000000000..a4afb07b30
--- /dev/null
+++ b/maps/derelict_almayer.json
@@ -0,0 +1,18 @@
+{
+ "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",
+ "gamemodes": [
+ "Distress Signal",
+ "Hunter Games",
+ "Hive Wars",
+ "Faction Clash",
+ "Infection"
+ ]
+}
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/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm
index 2572036945..ce965c9e90 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;
@@ -181,10 +181,11 @@
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)
+/area/golden_arrow/platoon_commander_rooms)
"aX" = (
/obj/structure/platform_decoration{
dir = 4
@@ -193,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;
@@ -201,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
@@ -210,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
@@ -229,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";
@@ -257,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{
@@ -267,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"
@@ -281,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{
@@ -293,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;
@@ -305,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;
@@ -349,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
@@ -363,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{
@@ -374,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{
@@ -386,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"
@@ -408,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
@@ -417,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"
@@ -433,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"
@@ -458,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
@@ -469,7 +470,7 @@
dir = 5;
icon_state = "plating"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"cy" = (
/obj/structure/machinery/power/apc/almayer{
dir = 1
@@ -478,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;
@@ -488,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{
@@ -501,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{
@@ -515,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";
@@ -527,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
@@ -548,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";
@@ -570,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";
@@ -586,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
@@ -600,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
@@ -608,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
@@ -633,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{
@@ -643,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{
@@ -652,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
@@ -664,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
@@ -680,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
@@ -688,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
@@ -696,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
@@ -704,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
@@ -712,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{
@@ -721,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{
@@ -730,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";
@@ -750,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";
@@ -784,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
@@ -802,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{
@@ -817,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{
@@ -846,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";
@@ -866,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";
@@ -888,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";
@@ -901,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
@@ -916,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
@@ -924,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{
@@ -942,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()
@@ -950,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
@@ -959,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"
@@ -973,7 +968,7 @@
dir = 5;
icon_state = "plating"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"fx" = (
/obj/effect/decal/warning_stripes{
icon_state = "E";
@@ -985,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{
@@ -999,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";
@@ -1009,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{
@@ -1022,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{
@@ -1045,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{
@@ -1055,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{
@@ -1064,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{
@@ -1088,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
@@ -1097,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{
@@ -1107,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{
@@ -1117,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"
@@ -1132,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{
@@ -1142,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{
@@ -1157,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
@@ -1169,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
@@ -1182,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{
@@ -1191,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{
@@ -1200,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{
@@ -1217,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
@@ -1226,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
@@ -1240,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;
@@ -1255,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;
@@ -1264,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";
@@ -1277,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
@@ -1292,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,
@@ -1308,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;
@@ -1321,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";
@@ -1340,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{
@@ -1349,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
@@ -1366,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";
@@ -1387,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,
@@ -1395,13 +1390,22 @@
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/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{
icon_state = "cargo"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"ik" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -1415,7 +1419,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";
@@ -1425,7 +1429,7 @@
dir = 5;
icon_state = "plating"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"ip" = (
/obj/effect/decal/warning_stripes{
icon_state = "NE-out";
@@ -1441,7 +1445,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
@@ -1456,12 +1460,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;
@@ -1475,7 +1479,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,
@@ -1488,24 +1492,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";
@@ -1519,12 +1523,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{
@@ -1534,12 +1538,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;
@@ -1552,7 +1556,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"
@@ -1567,13 +1571,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";
@@ -1586,7 +1590,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"
@@ -1594,7 +1598,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"
@@ -1602,7 +1606,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";
@@ -1613,7 +1617,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";
@@ -1622,7 +1626,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"js" = (
/obj/structure/machinery/firealarm{
pixel_y = 28
@@ -1635,7 +1639,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{
@@ -1644,7 +1648,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"
@@ -1653,7 +1657,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{
@@ -1672,7 +1676,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,
@@ -1680,7 +1684,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"jO" = (
/obj/effect/decal/warning_stripes{
icon_state = "N";
@@ -1692,19 +1696,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"
@@ -1716,7 +1720,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{
@@ -1737,19 +1741,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
@@ -1769,13 +1773,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";
@@ -1785,7 +1789,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{
@@ -1794,13 +1798,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
@@ -1810,7 +1814,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{
@@ -1819,7 +1823,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"kH" = (
/obj/structure/machinery/computer/cryopod{
dir = 1
@@ -1835,7 +1839,7 @@
/turf/open/floor/almayer{
icon_state = "test_floor5"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"kI" = (
/obj/structure/machinery/light{
dir = 8
@@ -1844,24 +1848,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";
@@ -1872,7 +1876,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
@@ -1891,43 +1895,40 @@
/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,
-/obj/structure/machinery/light{
- unacidable = 1;
- unslashable = 1
- },
+/obj/structure/machinery/light,
/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";
@@ -1935,16 +1936,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"
@@ -1956,14 +1957,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
@@ -1971,7 +1972,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{
@@ -1980,7 +1981,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{
@@ -1989,7 +1990,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{
@@ -1998,7 +1999,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{
@@ -2008,14 +2009,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
@@ -2026,7 +2027,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;
@@ -2036,7 +2037,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,
@@ -2046,26 +2047,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,
@@ -2073,14 +2074,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"
@@ -2092,7 +2093,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"
@@ -2103,17 +2104,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{
@@ -2127,14 +2128,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";
@@ -2143,7 +2144,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"
@@ -2156,7 +2157,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";
@@ -2167,7 +2168,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{
@@ -2176,7 +2177,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"nj" = (
/obj/structure/window/reinforced{
dir = 4;
@@ -2211,25 +2212,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
@@ -2240,7 +2241,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
@@ -2255,7 +2256,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
@@ -2274,11 +2275,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{
@@ -2287,21 +2288,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;
@@ -2310,7 +2311,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
@@ -2327,7 +2328,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"nV" = (
/obj/structure/machinery/light{
dir = 1
@@ -2336,13 +2337,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{
@@ -2351,7 +2352,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
@@ -2359,7 +2360,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"og" = (
/obj/structure/machinery/light{
dir = 1
@@ -2367,19 +2368,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()
@@ -2387,14 +2389,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{
@@ -2407,13 +2409,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
@@ -2423,7 +2425,7 @@
/turf/open/floor/almayer{
icon_state = "sterile_green"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"oA" = (
/obj/structure/machinery/shower{
dir = 8
@@ -2431,7 +2433,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{
@@ -2446,7 +2448,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{
@@ -2455,7 +2457,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
@@ -2463,7 +2465,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
@@ -2471,13 +2473,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
@@ -2491,7 +2493,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/briefing)
+/area/golden_arrow/briefing)
"oM" = (
/obj/structure/bed/chair/comfy{
dir = 4
@@ -2504,14 +2506,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;
@@ -2530,7 +2532,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
@@ -2542,24 +2544,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;
@@ -2568,7 +2570,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{
@@ -2578,13 +2580,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";
@@ -2593,11 +2595,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";
@@ -2610,11 +2612,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{
@@ -2625,44 +2627,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
@@ -2670,7 +2672,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
@@ -2678,12 +2680,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;
@@ -2692,13 +2694,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;
@@ -2707,19 +2703,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";
@@ -2738,10 +2734,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{
@@ -2759,7 +2755,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
@@ -2768,29 +2764,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{
@@ -2803,7 +2799,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"rb" = (
/obj/structure/machinery/cryopod{
pixel_y = 6
@@ -2811,13 +2807,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
@@ -2826,7 +2822,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";
@@ -2835,35 +2831,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"
@@ -2873,7 +2869,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,
@@ -2884,13 +2880,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,
@@ -2901,13 +2897,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,
@@ -2934,19 +2930,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,
@@ -2956,7 +2952,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"
@@ -2968,26 +2964,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"
@@ -2996,7 +2992,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
@@ -3004,19 +3000,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";
@@ -3026,7 +3022,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";
@@ -3039,26 +3035,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";
@@ -3070,23 +3059,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";
@@ -3101,11 +3090,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{
@@ -3123,7 +3112,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
@@ -3133,7 +3122,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{
@@ -3146,7 +3135,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
@@ -3155,19 +3144,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{
@@ -3175,23 +3164,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{
@@ -3201,20 +3186,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,
@@ -3224,7 +3209,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
@@ -3232,13 +3217,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;
@@ -3248,7 +3233,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{
@@ -3256,7 +3241,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{
@@ -3266,7 +3251,7 @@
dir = 5;
icon_state = "plating"
},
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/supply)
"up" = (
/obj/structure/bed/chair/comfy{
dir = 1
@@ -3280,14 +3265,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";
@@ -3295,7 +3280,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
@@ -3303,25 +3288,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{
@@ -3340,7 +3325,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{
@@ -3356,7 +3341,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"
@@ -3369,27 +3354,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
@@ -3398,7 +3383,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
@@ -3409,7 +3394,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,
@@ -3417,7 +3402,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
@@ -3426,7 +3411,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
@@ -3438,7 +3423,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
@@ -3446,7 +3431,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";
@@ -3457,13 +3442,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
@@ -3479,7 +3464,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"
@@ -3499,7 +3484,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"vK" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -3512,7 +3497,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
@@ -3520,7 +3505,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";
@@ -3536,7 +3521,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{
@@ -3545,7 +3530,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";
@@ -3557,13 +3542,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"
@@ -3573,7 +3558,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"
@@ -3581,7 +3566,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";
@@ -3594,7 +3579,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";
@@ -3604,20 +3589,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";
@@ -3627,13 +3612,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";
@@ -3654,14 +3639,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{
@@ -3675,7 +3660,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{
@@ -3684,7 +3669,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"wN" = (
/obj/structure/closet/fireaxecabinet{
pixel_x = -32
@@ -3701,13 +3686,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;
@@ -3718,15 +3703,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{
@@ -3735,12 +3720,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{
@@ -3755,7 +3740,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,
@@ -3769,7 +3754,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()
@@ -3780,7 +3765,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"xK" = (
/obj/structure/machinery/light{
dir = 8
@@ -3795,7 +3780,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";
@@ -3804,7 +3789,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{
@@ -3813,13 +3798,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
@@ -3832,10 +3817,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,
@@ -3846,7 +3831,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;
@@ -3855,7 +3840,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{
@@ -3864,7 +3849,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;
@@ -3873,13 +3858,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
@@ -3891,7 +3876,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{
@@ -3900,13 +3885,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{
@@ -3916,7 +3901,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";
@@ -3926,7 +3911,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
@@ -3940,7 +3925,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,
@@ -3953,7 +3938,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{
@@ -3963,33 +3948,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
@@ -3997,7 +3982,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{
@@ -4007,7 +3992,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();
@@ -4016,7 +4001,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{
@@ -4026,7 +4011,7 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"zn" = (
/obj/structure/machinery/light{
dir = 4
@@ -4041,7 +4026,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
@@ -4049,23 +4034,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;
@@ -4076,7 +4061,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{
@@ -4088,13 +4073,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{
@@ -4104,7 +4089,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{
@@ -4119,7 +4104,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,
@@ -4127,20 +4112,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,
@@ -4148,7 +4133,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"
@@ -4156,18 +4141,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
@@ -4182,13 +4167,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
@@ -4196,7 +4181,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
@@ -4209,7 +4194,7 @@
dir = 5;
icon_state = "plating"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"AG" = (
/obj/structure/machinery/landinglight/ds1/delaythree{
dir = 1
@@ -4218,10 +4203,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"
@@ -4230,13 +4215,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{
@@ -4245,7 +4230,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
@@ -4256,14 +4241,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;
@@ -4272,7 +4257,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
@@ -4281,27 +4266,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";
@@ -4313,15 +4298,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{
@@ -4330,12 +4315,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{
@@ -4345,7 +4330,7 @@
dir = 5;
icon_state = "plating"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"Bu" = (
/obj/item/ammo_magazine/sentry{
layer = 3.01
@@ -4354,7 +4339,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";
@@ -4363,17 +4348,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,
@@ -4393,7 +4378,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{
@@ -4403,7 +4388,7 @@
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"BO" = (
/obj/structure/bed/chair{
dir = 1
@@ -4411,12 +4396,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;
@@ -4433,18 +4418,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{
@@ -4474,7 +4459,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{
@@ -4488,18 +4473,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";
@@ -4509,7 +4494,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
@@ -4518,7 +4503,7 @@
dir = 8
},
/turf/open/floor/almayer,
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/supply)
"Cr" = (
/turf/open/space/basic,
/area/space)
@@ -4535,7 +4520,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";
@@ -4544,12 +4529,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
@@ -4557,7 +4542,7 @@
/turf/open/floor/almayer{
icon_state = "test_floor4"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"Cy" = (
/obj/structure/machinery/conveyor{
dir = 8
@@ -4572,7 +4557,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,
@@ -4588,7 +4573,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
@@ -4604,7 +4589,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"
@@ -4613,7 +4598,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;
@@ -4622,7 +4607,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{
@@ -4631,7 +4616,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"CX" = (
/obj/structure/machinery/light{
dir = 1
@@ -4639,7 +4624,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{
@@ -4647,17 +4632,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,
@@ -4672,7 +4657,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{
@@ -4681,7 +4666,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{
@@ -4695,7 +4680,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
@@ -4711,7 +4696,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{
@@ -4731,7 +4716,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";
@@ -4740,10 +4725,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
@@ -4752,7 +4737,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{
@@ -4761,43 +4746,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{
@@ -4811,7 +4796,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{
@@ -4824,13 +4809,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";
@@ -4838,14 +4823,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"
@@ -4856,19 +4841,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{
@@ -4878,7 +4863,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,
@@ -4888,7 +4873,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";
@@ -4899,7 +4884,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{
@@ -4910,7 +4895,7 @@
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/living/cryo_cells)
+/area/golden_arrow/cryo_cells)
"EO" = (
/obj/structure/machinery/disposal{
density = 0;
@@ -4920,7 +4905,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;
@@ -4950,7 +4935,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"
@@ -4959,7 +4944,7 @@
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"EZ" = (
/obj/structure/machinery/landinglight/ds1{
dir = 4
@@ -4967,7 +4952,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
@@ -4982,7 +4967,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,
@@ -4995,17 +4980,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,
@@ -5017,7 +5002,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{
@@ -5029,17 +5014,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";
@@ -5052,28 +5037,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;
@@ -5083,20 +5068,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
@@ -5104,7 +5089,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";
@@ -5113,7 +5098,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{
@@ -5131,7 +5116,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{
@@ -5144,7 +5129,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{
@@ -5178,7 +5163,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";
@@ -5191,7 +5176,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;
@@ -5200,7 +5185,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";
@@ -5210,7 +5195,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
@@ -5218,12 +5203,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";
@@ -5234,23 +5219,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
@@ -5259,7 +5238,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
@@ -5268,13 +5247,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";
@@ -5296,7 +5275,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{
@@ -5310,7 +5289,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"
@@ -5318,7 +5297,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{
@@ -5327,7 +5306,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";
@@ -5335,7 +5314,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,
@@ -5343,7 +5322,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
@@ -5351,14 +5330,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{
@@ -5371,7 +5350,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
@@ -5379,7 +5358,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{
@@ -5389,7 +5368,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,
@@ -5397,13 +5376,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.";
@@ -5422,7 +5401,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
@@ -5433,7 +5412,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,
@@ -5441,7 +5420,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";
@@ -5453,7 +5432,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
@@ -5466,23 +5445,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
@@ -5491,14 +5470,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
@@ -5506,7 +5485,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";
@@ -5521,13 +5500,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;
@@ -5540,17 +5519,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";
@@ -5559,13 +5538,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,
@@ -5577,10 +5556,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";
@@ -5597,7 +5576,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{
@@ -5607,7 +5586,7 @@
/turf/open/floor/almayer{
icon_state = "cargo"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"IT" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -5619,20 +5598,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
@@ -5644,7 +5623,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"
@@ -5653,20 +5632,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{
@@ -5675,7 +5654,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";
@@ -5685,7 +5664,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{
@@ -5700,7 +5679,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
@@ -5709,7 +5688,7 @@
dir = 5;
icon_state = "plating"
},
-/area/almayer/hallways/starboard_hallway)
+/area/golden_arrow/supply)
"Jq" = (
/obj/structure/machinery/landinglight/ds1/delaytwo{
dir = 8
@@ -5717,7 +5696,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Jv" = (
/obj/structure/machinery/light{
dir = 8
@@ -5725,13 +5704,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
@@ -5741,7 +5720,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"JJ" = (
/obj/structure/machinery/sleep_console{
dir = 8;
@@ -5750,14 +5729,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
@@ -5766,7 +5745,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";
@@ -5776,7 +5755,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,
@@ -5788,7 +5767,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"
@@ -5800,7 +5779,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Ki" = (
/obj/structure/machinery/shower{
pixel_y = 16
@@ -5814,14 +5793,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{
@@ -5834,7 +5813,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{
@@ -5844,10 +5823,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";
@@ -5857,7 +5836,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";
@@ -5867,17 +5846,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,
@@ -5887,27 +5866,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";
@@ -5916,13 +5895,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;
@@ -5962,36 +5941,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,
-/obj/effect/landmark/observer_start,
/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
@@ -6002,7 +5980,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
@@ -6010,21 +5988,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,
@@ -6032,7 +6010,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
@@ -6041,12 +6019,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{
@@ -6055,12 +6033,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";
@@ -6074,7 +6052,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
@@ -6083,7 +6061,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{
@@ -6092,27 +6070,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
@@ -6130,7 +6108,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/synthcloset)
+/area/golden_arrow/synthcloset)
"Mi" = (
/obj/structure/machinery/light{
dir = 4
@@ -6138,22 +6116,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{
@@ -6171,14 +6140,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();
@@ -6187,7 +6156,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"
@@ -6198,20 +6167,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
@@ -6219,10 +6188,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{
@@ -6231,13 +6200,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
@@ -6253,13 +6222,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
@@ -6267,28 +6236,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";
@@ -6302,14 +6271,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
@@ -6318,7 +6287,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
@@ -6336,7 +6305,7 @@
dir = 5;
icon_state = "plating"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"NB" = (
/obj/structure/sign/safety/cryo{
pixel_x = 6;
@@ -6350,7 +6319,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;
@@ -6363,7 +6332,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
@@ -6381,7 +6350,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;
@@ -6390,13 +6359,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{
@@ -6408,7 +6377,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;
@@ -6418,7 +6387,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;
@@ -6427,13 +6396,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;
@@ -6447,7 +6416,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{
@@ -6455,20 +6424,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;
@@ -6476,24 +6445,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,
@@ -6503,7 +6472,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{
@@ -6512,7 +6481,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{
@@ -6522,7 +6491,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,
@@ -6537,13 +6506,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
@@ -6552,18 +6521,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;
@@ -6572,7 +6541,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
@@ -6583,7 +6552,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,
@@ -6609,7 +6578,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,
@@ -6620,7 +6589,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{
@@ -6629,7 +6598,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"
@@ -6639,7 +6608,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"
@@ -6647,7 +6616,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{
@@ -6662,7 +6631,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";
@@ -6672,7 +6641,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{
@@ -6682,7 +6651,7 @@
/turf/open/floor/almayer{
icon_state = "dark_sterile"
},
-/area/almayer/medical)
+/area/golden_arrow/medical)
"Ps" = (
/obj/item/stack/sheet/metal{
amount = 50
@@ -6697,14 +6666,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
@@ -6713,7 +6682,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{
@@ -6728,13 +6697,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;
@@ -6743,7 +6712,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
@@ -6751,7 +6720,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
@@ -6759,7 +6728,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";
@@ -6769,7 +6738,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
@@ -6786,13 +6755,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{
@@ -6811,7 +6780,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{
@@ -6824,7 +6793,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{
@@ -6833,13 +6802,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";
@@ -6850,7 +6819,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();
@@ -6862,7 +6831,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,
@@ -6877,7 +6846,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
@@ -6893,10 +6862,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;
@@ -6906,7 +6875,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
@@ -6915,7 +6884,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";
@@ -6924,14 +6893,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,
@@ -6942,12 +6911,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";
@@ -6961,7 +6930,7 @@
dir = 5;
icon_state = "plating"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"QM" = (
/obj/structure/pipes/standard/simple/hidden/supply{
dir = 4
@@ -6972,30 +6941,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
@@ -7006,7 +6975,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{
@@ -7015,7 +6984,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{
@@ -7033,7 +7002,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
@@ -7042,7 +7011,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
@@ -7050,7 +7019,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{
@@ -7064,11 +7033,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"
@@ -7076,7 +7045,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"Rh" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
@@ -7084,7 +7053,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{
@@ -7106,11 +7075,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{
@@ -7119,10 +7088,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{
@@ -7132,7 +7101,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,
@@ -7154,12 +7123,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
@@ -7171,14 +7140,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{
@@ -7199,7 +7168,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{
@@ -7209,7 +7178,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";
@@ -7217,25 +7186,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.";
@@ -7272,14 +7241,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";
@@ -7293,7 +7262,7 @@
dir = 5;
icon_state = "plating"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"Sl" = (
/obj/structure/surface/table/almayer,
/obj/item/paper_bin{
@@ -7303,7 +7272,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"
@@ -7312,7 +7281,7 @@
dir = 5;
icon_state = "plating"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
"So" = (
/obj/effect/decal/warning_stripes{
icon_state = "S"
@@ -7321,7 +7290,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"
@@ -7333,7 +7302,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{
@@ -7355,7 +7324,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
@@ -7369,7 +7338,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{
@@ -7379,7 +7348,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
@@ -7387,11 +7363,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";
@@ -7400,7 +7376,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,
@@ -7415,7 +7391,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,
@@ -7427,14 +7403,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";
@@ -7442,13 +7418,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;
@@ -7483,7 +7459,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/living/grunt_rnr)
+/area/golden_arrow/dorms)
"Tj" = (
/obj/structure/filingcabinet/chestdrawer{
density = 0;
@@ -7498,7 +7474,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;
@@ -7527,7 +7503,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"
@@ -7536,7 +7512,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
@@ -7544,7 +7520,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;
@@ -7565,7 +7541,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
@@ -7573,23 +7549,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;
@@ -7611,7 +7587,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,
@@ -7621,7 +7597,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";
@@ -7634,14 +7610,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"
@@ -7654,18 +7630,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;
@@ -7675,7 +7651,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,
@@ -7686,7 +7662,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";
@@ -7698,20 +7674,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{
@@ -7719,7 +7695,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{
@@ -7729,20 +7705,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{
@@ -7751,7 +7721,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
@@ -7759,7 +7729,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{
@@ -7771,7 +7741,7 @@
dir = 1;
icon_state = "cargo_arrow"
},
-/area/almayer/living/cafeteria_port)
+/area/golden_arrow/canteen)
"UO" = (
/obj/structure/bed/chair{
dir = 4
@@ -7780,7 +7750,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;
@@ -7790,7 +7760,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"
@@ -7800,20 +7770,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
@@ -7838,26 +7808,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{
@@ -7867,7 +7837,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";
@@ -7880,7 +7850,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/hallways/hangar)
+/area/golden_arrow/hangar)
"VJ" = (
/obj/structure/ladder{
height = 1;
@@ -7893,7 +7863,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{
@@ -7903,19 +7873,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{
@@ -7943,7 +7913,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";
@@ -7957,7 +7927,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
@@ -7969,7 +7939,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;
@@ -7983,19 +7953,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";
@@ -8003,7 +7973,7 @@
pixel_y = 2
},
/turf/open/floor/almayer,
-/area/almayer/hallways/port_hallway)
+/area/golden_arrow/prep_hallway)
"Wo" = (
/obj/structure/filingcabinet{
density = 0;
@@ -8023,17 +7993,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{
@@ -8043,13 +8013,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
@@ -8058,7 +8028,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{
@@ -8069,14 +8039,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{
@@ -8092,7 +8062,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
@@ -8100,7 +8070,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";
@@ -8117,7 +8087,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"
@@ -8125,7 +8095,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,
@@ -8135,18 +8105,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,
@@ -8163,13 +8133,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;
@@ -8178,7 +8148,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
@@ -8191,7 +8161,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";
@@ -8208,20 +8178,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;
@@ -8246,13 +8216,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;
@@ -8262,7 +8232,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
@@ -8271,7 +8241,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,
@@ -8287,20 +8257,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,
@@ -8311,7 +8275,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{
@@ -8319,7 +8283,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
@@ -8333,17 +8297,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;
@@ -8352,19 +8316,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,
@@ -8383,7 +8347,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";
@@ -8393,7 +8357,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;
@@ -8402,7 +8366,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{
@@ -8420,7 +8384,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
@@ -8430,10 +8394,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";
@@ -8447,7 +8411,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{
@@ -8461,7 +8425,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,
@@ -8477,10 +8441,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";
@@ -8490,12 +8454,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.";
@@ -8508,7 +8472,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{
@@ -8516,18 +8480,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
@@ -8536,13 +8500,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{
@@ -8551,46 +8515,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{
@@ -8599,7 +8563,7 @@
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/engineering)
+/area/golden_arrow/engineering)
(1,1,1) = {"
Cr
@@ -15522,12 +15486,12 @@ Cr
Cr
Cr
Cr
-ca
-ca
-ca
-ca
-ca
-ca
+SC
+SC
+SC
+sC
+sC
+sC
sC
sC
sC
@@ -15674,11 +15638,11 @@ Cr
Cr
Cr
Cr
-ca
+SC
Xz
Xz
-ca
-ca
+sC
+sC
VL
sC
sC
@@ -15826,10 +15790,10 @@ Cr
Cr
Cr
Cr
-ca
+SC
Xz
Xz
-ca
+sC
Ls
KQ
sC
@@ -15978,10 +15942,10 @@ Cr
Cr
Cr
Cr
-ca
+SC
Xz
Xz
-ca
+sC
sC
Uj
sC
@@ -16113,7 +16077,7 @@ Ln
So
KO
KO
-tG
+Rr
Kx
tV
ca
@@ -16130,10 +16094,10 @@ Cr
Cr
Cr
Cr
-ca
+SC
Xz
Xz
-ca
+sC
lS
KQ
bw
@@ -16263,7 +16227,7 @@ wz
ca
Xd
UX
-tG
+Rr
Ea
KO
Kx
@@ -16271,7 +16235,7 @@ Xd
ca
ml
UX
-tG
+Rr
Ea
KO
kV
@@ -16282,10 +16246,10 @@ Cr
Cr
Cr
Cr
-ca
+SC
Xz
Xz
-ca
+sC
mc
KQ
bw
@@ -16886,7 +16850,7 @@ qi
he
eU
gD
-tG
+Rr
KO
pD
ug
@@ -17175,8 +17139,8 @@ KO
KO
KO
MI
-tG
-tG
+Rr
+Rr
Bf
ua
Dc
@@ -17327,7 +17291,7 @@ KO
Ke
al
TP
-tG
+Rr
QW
Xd
qi
@@ -17487,8 +17451,8 @@ Wr
qi
Xd
KO
-tG
-tG
+Rr
+Rr
Xd
qi
lh
@@ -17660,7 +17624,7 @@ qu
XJ
kg
qu
-XJ
+Vp
Vp
Vp
Vp
@@ -17812,7 +17776,7 @@ Od
Sy
mk
vk
-XJ
+Vp
EQ
gL
sk
@@ -17964,7 +17928,7 @@ As
Vr
Vr
As
-XJ
+Vp
EQ
wl
wl
@@ -18107,7 +18071,7 @@ dJ
dJ
dJ
dA
-UA
+lg
Dc
eY
ag
@@ -18116,7 +18080,7 @@ Np
Np
rJ
As
-XJ
+Vp
EF
wl
wl
@@ -18259,7 +18223,7 @@ dJ
dJ
dJ
AG
-UA
+lg
Dc
eY
ag
@@ -18268,7 +18232,7 @@ qT
LJ
fg
Vr
-XJ
+Vp
Tk
wl
vU
@@ -18420,7 +18384,7 @@ rl
ol
rV
Vr
-XJ
+Vp
Tk
wl
FE
@@ -18572,7 +18536,7 @@ rr
OX
sm
uA
-XJ
+Vp
rX
wl
FI
@@ -18724,7 +18688,7 @@ Np
Np
rJ
As
-XJ
+Vp
Ld
pw
Wf
@@ -18867,7 +18831,7 @@ dJ
dJ
dJ
AG
-UA
+lg
Dc
eY
ag
@@ -18876,7 +18840,7 @@ FT
FT
sv
vB
-XJ
+Vp
EQ
Bg
FE
@@ -19019,7 +18983,7 @@ dJ
dJ
dJ
gh
-UA
+lg
Dc
eY
ag
@@ -19028,7 +18992,7 @@ WP
WP
WP
Jk
-XJ
+Vp
yx
Bo
UO
@@ -19171,7 +19135,7 @@ dJ
dJ
dJ
dB
-UA
+lg
Dc
eY
XJ
@@ -19180,7 +19144,7 @@ WP
WP
WP
KY
-XJ
+Vp
Tg
wl
FR
@@ -19332,7 +19296,7 @@ VX
VX
VX
vN
-XJ
+Vp
Sd
Cb
Gf
@@ -19484,13 +19448,13 @@ WP
WP
WP
KY
-XJ
-Vp
-Vp
-Vp
-Vp
-Vp
-Vp
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
+Ui
ZM
Fa
ZM
@@ -19636,7 +19600,7 @@ WP
WP
WP
KY
-XJ
+Ui
Ui
YK
Jv
@@ -19764,10 +19728,10 @@ JZ
SR
SR
pO
-Mk
+Rt
OH
SR
-SR
+fx
SR
Cl
JZ
@@ -19779,7 +19743,7 @@ je
Vv
SR
pG
-UA
+lg
Dc
eY
ag
@@ -19788,7 +19752,7 @@ Ob
Ob
Ob
oL
-XJ
+Ui
nK
Cf
ik
@@ -19932,15 +19896,15 @@ Bj
Bj
Nf
lg
-Yb
-co
+Dc
+eY
XJ
fy
fL
sS
sS
bS
-XJ
+Ui
oM
CF
dO
@@ -20069,7 +20033,7 @@ Mc
bo
eu
Dc
-Rg
+ie
Nf
Jb
Cv
@@ -20084,15 +20048,15 @@ jf
oJ
Nf
zJ
-Yb
-Gx
+Dc
+bf
XJ
Vr
Np
Uh
Np
As
-XJ
+Ui
Pc
FV
Zf
@@ -20235,7 +20199,7 @@ OA
jg
Cw
Nf
-DC
+KO
Ey
lg
me
@@ -20244,7 +20208,7 @@ Np
Np
rJ
As
-XJ
+Ui
yM
Dl
Zf
@@ -20387,16 +20351,16 @@ Pr
jG
xz
jV
-sK
+lm
ly
-nx
+ZL
XJ
yv
As
Ne
tT
IX
-XJ
+Ui
Gz
Dw
Gk
@@ -20541,14 +20505,14 @@ JJ
Nf
cB
lE
-sa
+wz
XJ
XJ
XJ
PW
XJ
XJ
-XJ
+Ui
tX
Uv
GL
@@ -20676,7 +20640,7 @@ hS
hS
hS
iX
-cI
+Er
Rg
Nf
ZR
@@ -20691,16 +20655,16 @@ hG
jb
FN
Nf
-DC
-Yb
-sa
+KO
+Dc
+wz
XJ
XJ
As
mk
uw
As
-XJ
+Ui
Ui
DF
oH
@@ -20820,7 +20784,7 @@ ca
ZL
Xs
QN
-ca
+MK
MK
Xv
iR
@@ -20828,7 +20792,7 @@ Bz
qU
hS
RK
-cI
+Er
vP
Nf
Nf
@@ -20843,9 +20807,9 @@ Nf
Nf
Nf
Nf
-DC
-Yb
-Gx
+KO
+Dc
+bf
YP
ni
ry
@@ -20859,10 +20823,10 @@ Ui
Ui
Ui
Ui
-qp
+ZM
Aw
-qp
-HK
+ZM
+Ui
HK
HK
hR
@@ -20972,7 +20936,7 @@ ca
Yw
Yw
Yw
-ca
+MK
MK
BZ
iR
@@ -20980,7 +20944,7 @@ Bz
OC
hS
pD
-cI
+Er
Rg
gE
gE
@@ -20996,8 +20960,8 @@ gE
gE
gE
aw
-Yb
-nx
+Dc
+ZL
YP
nM
Eb
@@ -21293,7 +21257,7 @@ VT
gE
ML
ny
-Rr
+SB
nx
de
sa
@@ -22042,7 +22006,7 @@ Cr
Cr
Cr
Cr
-ca
+MK
Yw
Yw
Yw
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}