From ffb49e0e20026c0cebbb25132608848d2dc0f599 Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Fri, 1 Nov 2024 13:29:59 +0100 Subject: [PATCH 01/60] =?UTF-8?q?=D0=9F=D0=B8=D1=81=D0=BE=D0=BD=D0=B8?= =?UTF-8?q?=D0=BA=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Пока что, Work In Progress --- baystation12.dme | 4 + code/controllers/subsystems/processing/psi.dm | 2 + code/modules/admin/admin.dm | 2 +- code/modules/psionics/complexus/complexus.dm | 2 + .../psionics/complexus/complexus_helpers.dm | 2 + .../psionics/complexus/complexus_latency.dm | 2 + .../complexus/complexus_power_cache.dm | 2 + .../psionics/complexus/complexus_process.dm | 2 + .../psionics/complexus/complexus_topic.dm | 2 + .../psionics/equipment/cerebro_enhancers.dm | 2 + .../equipment/foundation_implanter.dm | 2 + code/modules/psionics/equipment/implant.dm | 2 + code/modules/psionics/equipment/psimeter.dm | 2 + code/modules/psionics/equipment/psimonitor.dm | 2 + code/modules/psionics/equipment/psipower.dm | 2 + .../psionics/equipment/psipower_blade.dm | 4 +- .../psionics/equipment/psipower_tinker.dm | 2 + .../modules/psionics/equipment/psipower_tk.dm | 2 + code/modules/psionics/events/_psi.dm | 2 + code/modules/psionics/events/mini_spasm.dm | 2 + code/modules/psionics/events/psi_balm.dm | 2 + code/modules/psionics/events/psi_wail.dm | 2 + code/modules/psionics/faculties/_faculty.dm | 2 + code/modules/psionics/faculties/_power.dm | 2 + code/modules/psionics/faculties/coercion.dm | 2 + .../modules/psionics/faculties/energistics.dm | 2 + .../psionics/faculties/psychokinesis.dm | 2 + code/modules/psionics/faculties/redaction.dm | 2 + code/modules/psionics/interface/ui.dm | 2 + code/modules/psionics/interface/ui_hub.dm | 2 + code/modules/psionics/interface/ui_toggles.dm | 2 + code/modules/psionics/mob/mob.dm | 2 + code/modules/psionics/mob/mob_assay.dm | 2 + code/modules/psionics/mob/mob_interactions.dm | 2 + code/modules/psionics/null/_null.dm | 2 + code/modules/psionics/null/chemistry.dm | 2 + code/modules/psionics/null/flooring.dm | 2 + code/modules/psionics/null/material.dm | 2 + mods/global_modpacks.dm | 1 + mods/psionics/code/complexus/complexus.dm | 96 ++ .../code/complexus/complexus_helpers.dm | 113 +++ .../code/complexus/complexus_latency.dm | 18 + .../code/complexus/complexus_power_cache.dm | 49 ++ .../code/complexus/complexus_process.dm | 279 ++++++ .../code/complexus/complexus_topic.dm | 20 + .../code/equipment/cerebro_enhancers.dm | 167 ++++ .../code/equipment/foundation_implanter.dm | 18 + .../code/equipment/foundation_weapon.dm | 24 + mods/psionics/code/equipment/implant.dm | 113 +++ mods/psionics/code/equipment/null_ammo.dm | 17 + mods/psionics/code/equipment/psimeter.dm | 71 ++ mods/psionics/code/equipment/psimonitor.dm | 122 +++ mods/psionics/code/equipment/psipower.dm | 68 ++ .../psionics/code/equipment/psipower_blade.dm | 183 ++++ mods/psionics/code/equipment/psipower_bow.dm | 135 +++ .../code/equipment/psipower_cryokinesis.dm | 81 ++ .../code/equipment/psipower_electrokinesis.dm | 66 ++ .../code/equipment/psipower_engineering.dm | 347 ++++++++ mods/psionics/code/equipment/psipower_gun.dm | 167 ++++ .../code/equipment/psipower_medical.dm | 266 ++++++ mods/psionics/code/equipment/psipower_orbs.dm | 827 ++++++++++++++++++ .../code/equipment/psipower_tinker.dm | 39 + mods/psionics/code/equipment/psipower_tk.dm | 105 +++ mods/psionics/code/events/_psi.dm | 24 + mods/psionics/code/events/mini_spasm.dm | 67 ++ mods/psionics/code/events/psi_balm.dm | 20 + mods/psionics/code/events/psi_wail.dm | 17 + mods/psionics/code/faculties/_faculty.dm | 11 + mods/psionics/code/faculties/_power.dm | 50 ++ mods/psionics/code/faculties/coercion.dm | 291 ++++++ mods/psionics/code/faculties/consciousness.dm | 570 ++++++++++++ mods/psionics/code/faculties/energistics.dm | 420 +++++++++ mods/psionics/code/faculties/manifestation.dm | 193 ++++ mods/psionics/code/faculties/metakinesis.dm | 49 ++ mods/psionics/code/faculties/psychokinesis.dm | 578 ++++++++++++ mods/psionics/code/faculties/redaction.dm | 306 +++++++ mods/psionics/code/interface/ui.dm | 21 + mods/psionics/code/interface/ui_hub.dm | 96 ++ mods/psionics/code/interface/ui_toggles.dm | 106 +++ mods/psionics/code/misc/decoyobj.dm | 12 + mods/psionics/code/misc/defines.dm | 20 + mods/psionics/code/misc/mindcontrol.dm | 109 +++ mods/psionics/code/misc/psi.dm | 36 + mods/psionics/code/mob/mob.dm | 32 + mods/psionics/code/mob/mob_assay.dm | 93 ++ mods/psionics/code/mob/mob_interactions.dm | 75 ++ mods/psionics/code/null/_null.dm | 30 + mods/psionics/code/null/chemistry.dm | 182 ++++ mods/psionics/code/null/flooring.dm | 20 + mods/psionics/code/null/material.dm | 32 + mods/psionics/code/null/material_sheet.dm | 22 + mods/psionics/code/null/material_weapon.dm | 11 + mods/psionics/code/null/turf_floor.dm | 7 + mods/psionics/code/null/turf_wall.dm | 18 + mods/psionics/code/null/~null.dm | 3 + mods/psionics/icons/effects/heavyimpact.dmi | Bin 0 -> 4406 bytes mods/psionics/icons/effects/psi_effects.dmi | Bin 0 -> 23775 bytes mods/psionics/icons/effects/smoke.dmi | Bin 0 -> 8273 bytes mods/psionics/icons/psi_fd/freeze.dmi | Bin 0 -> 2774 bytes mods/psionics/icons/psi_fd/lefthand.dmi | Bin 0 -> 15096 bytes mods/psionics/icons/psi_fd/projectiles.dmi | Bin 0 -> 420 bytes mods/psionics/icons/psi_fd/righthand.dmi | Bin 0 -> 13217 bytes mods/psionics/psionics.dm | 4 + mods/psionics/psionics.dme | 73 ++ 104 files changed, 7068 insertions(+), 2 deletions(-) create mode 100644 mods/psionics/code/complexus/complexus.dm create mode 100644 mods/psionics/code/complexus/complexus_helpers.dm create mode 100644 mods/psionics/code/complexus/complexus_latency.dm create mode 100644 mods/psionics/code/complexus/complexus_power_cache.dm create mode 100644 mods/psionics/code/complexus/complexus_process.dm create mode 100644 mods/psionics/code/complexus/complexus_topic.dm create mode 100644 mods/psionics/code/equipment/cerebro_enhancers.dm create mode 100644 mods/psionics/code/equipment/foundation_implanter.dm create mode 100644 mods/psionics/code/equipment/foundation_weapon.dm create mode 100644 mods/psionics/code/equipment/implant.dm create mode 100644 mods/psionics/code/equipment/null_ammo.dm create mode 100644 mods/psionics/code/equipment/psimeter.dm create mode 100644 mods/psionics/code/equipment/psimonitor.dm create mode 100644 mods/psionics/code/equipment/psipower.dm create mode 100644 mods/psionics/code/equipment/psipower_blade.dm create mode 100644 mods/psionics/code/equipment/psipower_bow.dm create mode 100644 mods/psionics/code/equipment/psipower_cryokinesis.dm create mode 100644 mods/psionics/code/equipment/psipower_electrokinesis.dm create mode 100644 mods/psionics/code/equipment/psipower_engineering.dm create mode 100644 mods/psionics/code/equipment/psipower_gun.dm create mode 100644 mods/psionics/code/equipment/psipower_medical.dm create mode 100644 mods/psionics/code/equipment/psipower_orbs.dm create mode 100644 mods/psionics/code/equipment/psipower_tinker.dm create mode 100644 mods/psionics/code/equipment/psipower_tk.dm create mode 100644 mods/psionics/code/events/_psi.dm create mode 100644 mods/psionics/code/events/mini_spasm.dm create mode 100644 mods/psionics/code/events/psi_balm.dm create mode 100644 mods/psionics/code/events/psi_wail.dm create mode 100644 mods/psionics/code/faculties/_faculty.dm create mode 100644 mods/psionics/code/faculties/_power.dm create mode 100644 mods/psionics/code/faculties/coercion.dm create mode 100644 mods/psionics/code/faculties/consciousness.dm create mode 100644 mods/psionics/code/faculties/energistics.dm create mode 100644 mods/psionics/code/faculties/manifestation.dm create mode 100644 mods/psionics/code/faculties/metakinesis.dm create mode 100644 mods/psionics/code/faculties/psychokinesis.dm create mode 100644 mods/psionics/code/faculties/redaction.dm create mode 100644 mods/psionics/code/interface/ui.dm create mode 100644 mods/psionics/code/interface/ui_hub.dm create mode 100644 mods/psionics/code/interface/ui_toggles.dm create mode 100644 mods/psionics/code/misc/decoyobj.dm create mode 100644 mods/psionics/code/misc/defines.dm create mode 100644 mods/psionics/code/misc/mindcontrol.dm create mode 100644 mods/psionics/code/misc/psi.dm create mode 100644 mods/psionics/code/mob/mob.dm create mode 100644 mods/psionics/code/mob/mob_assay.dm create mode 100644 mods/psionics/code/mob/mob_interactions.dm create mode 100644 mods/psionics/code/null/_null.dm create mode 100644 mods/psionics/code/null/chemistry.dm create mode 100644 mods/psionics/code/null/flooring.dm create mode 100644 mods/psionics/code/null/material.dm create mode 100644 mods/psionics/code/null/material_sheet.dm create mode 100644 mods/psionics/code/null/material_weapon.dm create mode 100644 mods/psionics/code/null/turf_floor.dm create mode 100644 mods/psionics/code/null/turf_wall.dm create mode 100644 mods/psionics/code/null/~null.dm create mode 100644 mods/psionics/icons/effects/heavyimpact.dmi create mode 100644 mods/psionics/icons/effects/psi_effects.dmi create mode 100644 mods/psionics/icons/effects/smoke.dmi create mode 100644 mods/psionics/icons/psi_fd/freeze.dmi create mode 100644 mods/psionics/icons/psi_fd/lefthand.dmi create mode 100644 mods/psionics/icons/psi_fd/projectiles.dmi create mode 100644 mods/psionics/icons/psi_fd/righthand.dmi create mode 100644 mods/psionics/psionics.dm create mode 100644 mods/psionics/psionics.dme diff --git a/baystation12.dme b/baystation12.dme index b0f8c143381f5..920a4a2dcfc52 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -3374,5 +3374,9 @@ #include "mods\_master_files\maps\mapsystem\maps.dm" #include "mods\_master_files\maps\sierra\sierra_ranks.dm" #include "mods\_master_files\maps\sierra\items\rigs.dm" +#include "mods\psionics\code\misc\decoyobj.dm" +#include "mods\psionics\code\misc\defines.dm" +#include "mods\psionics\code\misc\mindcontrol.dm" +#include "mods\psionics\code\misc\psi.dm" #include "~code\global_init.dm" // END_INCLUDE diff --git a/code/controllers/subsystems/processing/psi.dm b/code/controllers/subsystems/processing/psi.dm index 94396a6fbd5bd..a0c7800d4720b 100644 --- a/code/controllers/subsystems/processing/psi.dm +++ b/code/controllers/subsystems/processing/psi.dm @@ -1,3 +1,4 @@ +/* GLOBAL_LIST_INIT(psychic_ranks_to_strings, list("Latent", "Operant", "Masterclass", "Grandmasterclass", "Paramount")) PROCESSING_SUBSYSTEM_DEF(psi) @@ -32,3 +33,4 @@ PROCESSING_SUBSYSTEM_DEF(psi) var/singleton/psionic_faculty/faculty = get_faculty(power.faculty) if(faculty) faculty.powers |= power +*/ diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index cdb0aaa9b4e96..8de76e0f1ef17 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -144,7 +144,7 @@ var/global/floorIsLava = 0 body += "Remove psionics.

" body += "Trigger latencies.
" body += "" - for(var/faculty in list(PSI_COERCION, PSI_PSYCHOKINESIS, PSI_REDACTION, PSI_ENERGISTICS)) + for(var/faculty in list(PSI_COERCION, PSI_PSYCHOKINESIS, PSI_ENERGISTICS, PSI_REDACTION)) var/singleton/psionic_faculty/faculty_singleton = SSpsi.get_faculty(faculty) var/faculty_rank = psyker.psi ? psyker.psi.get_rank(faculty) : 0 body += "" diff --git a/code/modules/psionics/complexus/complexus.dm b/code/modules/psionics/complexus/complexus.dm index 07916ae0f1484..cc1b85fab1ad8 100644 --- a/code/modules/psionics/complexus/complexus.dm +++ b/code/modules/psionics/complexus/complexus.dm @@ -1,3 +1,4 @@ +/* /datum/psi_complexus var/announced = FALSE // Whether or not we have been announced to our holder yet. @@ -92,3 +93,4 @@ qdel(thing) manifested_items.Cut() . = ..() +*/ diff --git a/code/modules/psionics/complexus/complexus_helpers.dm b/code/modules/psionics/complexus/complexus_helpers.dm index 86b969c70c850..1102738015ffd 100644 --- a/code/modules/psionics/complexus/complexus_helpers.dm +++ b/code/modules/psionics/complexus/complexus_helpers.dm @@ -1,3 +1,4 @@ +/* /datum/psi_complexus/proc/cancel() sound_to(owner, sound('sound/effects/psi/power_fail.ogg')) if(LAZYLEN(manifested_items)) @@ -102,3 +103,4 @@ stamina = min(stamina, max_stamina) cancel() update() +*/ diff --git a/code/modules/psionics/complexus/complexus_latency.dm b/code/modules/psionics/complexus/complexus_latency.dm index 3511c3ae0d655..bda1984be59ac 100644 --- a/code/modules/psionics/complexus/complexus_latency.dm +++ b/code/modules/psionics/complexus/complexus_latency.dm @@ -1,3 +1,4 @@ +/* /datum/psi_complexus/proc/check_latency_trigger(trigger_strength = 0, source, redactive = FALSE) if(!LAZYLEN(latencies) || world.time < next_latency_trigger) @@ -16,3 +17,4 @@ if(!redactive) owner.adjustBrainLoss(rand(trigger_strength * 2, trigger_strength * 4)) log_and_message_admins("gained the [faculty_singleton.name] psionic faculty by: [source].", owner) return TRUE +*/ diff --git a/code/modules/psionics/complexus/complexus_power_cache.dm b/code/modules/psionics/complexus/complexus_power_cache.dm index 0aad4bf1637f2..8b86d0399c700 100644 --- a/code/modules/psionics/complexus/complexus_power_cache.dm +++ b/code/modules/psionics/complexus/complexus_power_cache.dm @@ -1,3 +1,4 @@ +/* /datum/psi_complexus/proc/rebuild_power_cache() if(rebuild_power_cache) @@ -47,3 +48,4 @@ /datum/psi_complexus/proc/get_manifestations() rebuild_power_cache() return manifestation_powers +*/ diff --git a/code/modules/psionics/complexus/complexus_process.dm b/code/modules/psionics/complexus/complexus_process.dm index 3bfe06733cece..8ab10e4ad1ac7 100644 --- a/code/modules/psionics/complexus/complexus_process.dm +++ b/code/modules/psionics/complexus/complexus_process.dm @@ -1,3 +1,4 @@ +/* /datum/psi_complexus/proc/update(force) set waitfor = FALSE @@ -248,3 +249,4 @@ owner.adjustOxyLoss(-(heal_rate)) if(prob(25)) to_chat(owner, SPAN_NOTICE("Your skin crawls as your autoredactive faculty heals your body.")) +*/ diff --git a/code/modules/psionics/complexus/complexus_topic.dm b/code/modules/psionics/complexus/complexus_topic.dm index e785e99983a62..753a3e945e559 100644 --- a/code/modules/psionics/complexus/complexus_topic.dm +++ b/code/modules/psionics/complexus/complexus_topic.dm @@ -1,3 +1,4 @@ +/* /datum/psi_complexus/CanUseTopic(mob/user, datum/topic_state/state = GLOB.default_state) return (user.client && check_rights(R_ADMIN, FALSE, user.client)) @@ -18,3 +19,4 @@ var/datum/admins/admin = GLOB.admins[usr.key] if(istype(admin)) admin.show_player_panel(owner) +*/ diff --git a/code/modules/psionics/equipment/cerebro_enhancers.dm b/code/modules/psionics/equipment/cerebro_enhancers.dm index 3ab8a5c9fb92f..3b471e3f95cbf 100644 --- a/code/modules/psionics/equipment/cerebro_enhancers.dm +++ b/code/modules/psionics/equipment/cerebro_enhancers.dm @@ -1,4 +1,5 @@ //Psi-boosting item (antag only) +/* /obj/item/clothing/head/helmet/space/psi_amp name = "cerebro-energetic enhancer" desc = "A matte-black, eyeless cerebro-energetic enhancement helmet. It uses highly sophisticated, and illegal, techniques to drill into your brain and install psi-infected AIs into the fluid cavities between your lobes." @@ -165,3 +166,4 @@ H.update_action_buttons() set_light(3, 0.5, l_color = "#880000") +*/ diff --git a/code/modules/psionics/equipment/foundation_implanter.dm b/code/modules/psionics/equipment/foundation_implanter.dm index df190270dd60a..2f87380ae2676 100644 --- a/code/modules/psionics/equipment/foundation_implanter.dm +++ b/code/modules/psionics/equipment/foundation_implanter.dm @@ -1,3 +1,4 @@ +/* /obj/item/implanter/psi name = "psi-null implanter" desc = "An implant gun customized to interact with psi dampeners." @@ -16,3 +17,4 @@ /obj/item/implanter/psi/New() ..() imp = new /obj/item/implant/psi_control(src) +*/ diff --git a/code/modules/psionics/equipment/implant.dm b/code/modules/psionics/equipment/implant.dm index dff6440aa345a..455e503f1d482 100644 --- a/code/modules/psionics/equipment/implant.dm +++ b/code/modules/psionics/equipment/implant.dm @@ -1,3 +1,4 @@ +/* /obj/item/implant/psi_control name = "psi dampener implant" desc = "A safety implant for registered psi-operants." @@ -106,3 +107,4 @@ if(M.psi) M.psi.stunned(5) else if(use_psi_mode == PSI_IMPLANT_WARN) to_chat(imp_in, SPAN_WARNING("Your psi dampener primly informs you it has reported this violation.")) +*/ diff --git a/code/modules/psionics/equipment/psimeter.dm b/code/modules/psionics/equipment/psimeter.dm index c9b7247ea4537..e50e3688e6d84 100644 --- a/code/modules/psionics/equipment/psimeter.dm +++ b/code/modules/psionics/equipment/psimeter.dm @@ -1,3 +1,4 @@ +/* /obj/machinery/psi_meter name = "psi-meter" desc = "A bulky psi-meter for conducting assays of psi-operants." @@ -69,3 +70,4 @@ if(refresh) interact(usr) return TRUE +*/ diff --git a/code/modules/psionics/equipment/psimonitor.dm b/code/modules/psionics/equipment/psimonitor.dm index 05abf30815012..7e4b9b8092f12 100644 --- a/code/modules/psionics/equipment/psimonitor.dm +++ b/code/modules/psionics/equipment/psimonitor.dm @@ -1,3 +1,4 @@ +/* /obj/machinery/psi_monitor name = "psionic implant monitor" icon = 'icons/obj/machines/research/psimeter.dmi' @@ -115,3 +116,4 @@ /obj/machinery/psi_monitor/proc/report_violation(obj/item/implant/psi_control/implant, stress) psi_violations += "Sigma [round(stress/10)] event - [implant.imp_in.name]." +*/ diff --git a/code/modules/psionics/equipment/psipower.dm b/code/modules/psionics/equipment/psipower.dm index 359f24e4a393f..d6ee986c7133b 100644 --- a/code/modules/psionics/equipment/psipower.dm +++ b/code/modules/psionics/equipment/psipower.dm @@ -1,3 +1,4 @@ +/* /obj/item/psychic_power name = "psychic power" icon = 'icons/obj/psychic_powers.dmi' @@ -60,3 +61,4 @@ host.drop_from_inventory(src) else qdel(src) +*/ diff --git a/code/modules/psionics/equipment/psipower_blade.dm b/code/modules/psionics/equipment/psipower_blade.dm index 6ef449070e75a..86864d40b2324 100644 --- a/code/modules/psionics/equipment/psipower_blade.dm +++ b/code/modules/psionics/equipment/psipower_blade.dm @@ -1,3 +1,4 @@ +/* /obj/item/psychic_power/psiblade name = "psychokinetic slash" force = 10 @@ -9,7 +10,7 @@ /obj/item/psychic_power/psiblade/master force = 20 maintain_cost = 2 - + /obj/item/psychic_power/psiblade/master/grand force = 30 maintain_cost = 3 @@ -19,3 +20,4 @@ force = 50 maintain_cost = 4 icon_state = "psiblade_long" +*/ diff --git a/code/modules/psionics/equipment/psipower_tinker.dm b/code/modules/psionics/equipment/psipower_tinker.dm index 9b78389f40b27..bb47c300eb672 100644 --- a/code/modules/psionics/equipment/psipower_tinker.dm +++ b/code/modules/psionics/equipment/psipower_tinker.dm @@ -1,3 +1,4 @@ +/* /obj/item/psychic_power/tinker name = "psychokinetic crowbar" icon_state = "tinker" @@ -37,3 +38,4 @@ name = "psychokinetic [lowertext(emulating)]" to_chat(owner, SPAN_NOTICE("You begin emulating \a [lowertext(emulating)].")) sound_to(owner, 'sound/effects/psi/power_fabrication.ogg') +*/ diff --git a/code/modules/psionics/equipment/psipower_tk.dm b/code/modules/psionics/equipment/psipower_tk.dm index 6fef9a45f0561..b91fc3081d2eb 100644 --- a/code/modules/psionics/equipment/psipower_tk.dm +++ b/code/modules/psionics/equipment/psipower_tk.dm @@ -1,3 +1,4 @@ +/* /obj/item/psychic_power/telekinesis name = "telekinetic grip" maintain_cost = 6 @@ -103,3 +104,4 @@ flick("empdisable",O) sleep(5) qdel(O) +*/ diff --git a/code/modules/psionics/events/_psi.dm b/code/modules/psionics/events/_psi.dm index 14fa2cef20cea..073f18f7ab639 100644 --- a/code/modules/psionics/events/_psi.dm +++ b/code/modules/psionics/events/_psi.dm @@ -1,3 +1,4 @@ +/* /datum/event/psi startWhen = 30 endWhen = 120 @@ -22,3 +23,4 @@ /datum/event/psi/proc/apply_psi_effect(datum/psi_complexus/psi) return +*/ diff --git a/code/modules/psionics/events/mini_spasm.dm b/code/modules/psionics/events/mini_spasm.dm index ab3270cdaee95..cad399ef5aae4 100644 --- a/code/modules/psionics/events/mini_spasm.dm +++ b/code/modules/psionics/events/mini_spasm.dm @@ -1,3 +1,4 @@ +/* /datum/event/minispasm startWhen = 60 endWhen = 90 @@ -65,3 +66,4 @@ "PRIORITY ALERT: SIGNAL BROADCAST HAS CEASED. Personnel are cleared to resume use of non-hardened radio transmission equipment. Have a nice day.", \ "Cuchulain Sensor Array Automated Message" \ ) +*/ diff --git a/code/modules/psionics/events/psi_balm.dm b/code/modules/psionics/events/psi_balm.dm index 6859e9203e61a..0dc0dfad237d4 100644 --- a/code/modules/psionics/events/psi_balm.dm +++ b/code/modules/psionics/events/psi_balm.dm @@ -1,3 +1,4 @@ +/* /datum/event/psi/balm var/static/list/balm_messages = list( "A soothing balm washes over your psyche.", @@ -18,3 +19,4 @@ soothed = TRUE if(soothed && prob(10)) to_chat(psi.owner, SPAN_NOTICE("[pick(balm_messages)]")) +*/ diff --git a/code/modules/psionics/events/psi_wail.dm b/code/modules/psionics/events/psi_wail.dm index 59f2691c386ab..af2c9b46576ca 100644 --- a/code/modules/psionics/events/psi_wail.dm +++ b/code/modules/psionics/events/psi_wail.dm @@ -1,3 +1,4 @@ +/* /datum/event/psi/wail var/static/list/whine_messages = list( "A nerve-tearing psychic whine intrudes on your thoughts.", @@ -15,3 +16,4 @@ annoyed = TRUE if(annoyed && prob(1)) to_chat(psi.owner, SPAN_NOTICE("[pick(whine_messages)]")) +*/ diff --git a/code/modules/psionics/faculties/_faculty.dm b/code/modules/psionics/faculties/_faculty.dm index 5df834831bae5..6a2f61b383e12 100644 --- a/code/modules/psionics/faculties/_faculty.dm +++ b/code/modules/psionics/faculties/_faculty.dm @@ -1,3 +1,4 @@ +/* /singleton/psionic_faculty var/id var/name @@ -9,3 +10,4 @@ ..() for(var/atype in armour_types) SSpsi.armour_faculty_by_type[atype] = id +*/ diff --git a/code/modules/psionics/faculties/_power.dm b/code/modules/psionics/faculties/_power.dm index e9ee3fad1d25d..ce170e9f5876c 100644 --- a/code/modules/psionics/faculties/_power.dm +++ b/code/modules/psionics/faculties/_power.dm @@ -1,3 +1,4 @@ +/* /singleton/psionic_power abstract_type = /singleton/psionic_power var/name // Name. If null, psipower won't be generated on roundstart. @@ -45,3 +46,4 @@ admin_attack_log(user, target, "Used psipower ([name])", "Was subjected to a psipower ([name])", "used a psipower ([name]) on") if(use_sound) playsound(user.loc, use_sound, 75) +*/ diff --git a/code/modules/psionics/faculties/coercion.dm b/code/modules/psionics/faculties/coercion.dm index 96ce2d88d0750..1df8e137d2b4c 100644 --- a/code/modules/psionics/faculties/coercion.dm +++ b/code/modules/psionics/faculties/coercion.dm @@ -1,3 +1,4 @@ +/* /singleton/psionic_faculty/coercion id = PSI_COERCION name = "Coercion" @@ -222,3 +223,4 @@ var/mob/living/carbon/M = target M.adjust_hallucination(-30) return TRUE +*/ diff --git a/code/modules/psionics/faculties/energistics.dm b/code/modules/psionics/faculties/energistics.dm index 479d383b3b18f..41645b7296a67 100644 --- a/code/modules/psionics/faculties/energistics.dm +++ b/code/modules/psionics/faculties/energistics.dm @@ -1,3 +1,4 @@ +/* /singleton/psionic_faculty/energistics id = PSI_ENERGISTICS name = "Energistics" @@ -114,3 +115,4 @@ sparks.set_up(3, 0, get_turf(target)) sparks.start() return TRUE +*/ diff --git a/code/modules/psionics/faculties/psychokinesis.dm b/code/modules/psionics/faculties/psychokinesis.dm index d2118b9606a72..e83fa755eb590 100644 --- a/code/modules/psionics/faculties/psychokinesis.dm +++ b/code/modules/psionics/faculties/psychokinesis.dm @@ -1,3 +1,4 @@ +/* /singleton/psionic_faculty/psychokinesis id = PSI_PSYCHOKINESIS name = "Psychokinesis" @@ -91,3 +92,4 @@ machine.attack_hand(user) return TRUE return FALSE +*/ diff --git a/code/modules/psionics/faculties/redaction.dm b/code/modules/psionics/faculties/redaction.dm index 48b7524d2e7af..4bf523067e05b 100644 --- a/code/modules/psionics/faculties/redaction.dm +++ b/code/modules/psionics/faculties/redaction.dm @@ -1,3 +1,4 @@ +/* /singleton/psionic_faculty/redaction id = PSI_REDACTION name = "Redaction" @@ -188,3 +189,4 @@ target.adjustOxyLoss(-rand(15,20)) target.basic_revival() return TRUE +*/ diff --git a/code/modules/psionics/interface/ui.dm b/code/modules/psionics/interface/ui.dm index 032cfcaf8eb68..50d7ce7f0ea52 100644 --- a/code/modules/psionics/interface/ui.dm +++ b/code/modules/psionics/interface/ui.dm @@ -1,3 +1,4 @@ +/* /obj/screen/psi icon = 'icons/screen/psi.dmi' var/mob/living/owner @@ -19,3 +20,4 @@ invisibility = INVISIBILITY_ABSTRACT else invisibility = 0 +*/ diff --git a/code/modules/psionics/interface/ui_hub.dm b/code/modules/psionics/interface/ui_hub.dm index 02ca853d12b0f..11b40d068c57b 100644 --- a/code/modules/psionics/interface/ui_hub.dm +++ b/code/modules/psionics/interface/ui_hub.dm @@ -1,3 +1,4 @@ +/* /obj/screen/psi/hub name = "Psi" icon_state = "psi_suppressed" @@ -69,3 +70,4 @@ sound_to(owner, sound('sound/effects/psi/power_unlock.ogg')) owner.psi.show_auras() update_icon() +*/ diff --git a/code/modules/psionics/interface/ui_toggles.dm b/code/modules/psionics/interface/ui_toggles.dm index f69c1ed8c480e..67c09c3196cf9 100644 --- a/code/modules/psionics/interface/ui_toggles.dm +++ b/code/modules/psionics/interface/ui_toggles.dm @@ -1,3 +1,4 @@ +/* // Begin psi armour toggle. /obj/screen/psi/armour name = "Psi-Armour" @@ -43,3 +44,4 @@ else icon_state = "arrow_right" // End menu toggle. +*/ diff --git a/code/modules/psionics/mob/mob.dm b/code/modules/psionics/mob/mob.dm index 69a57fd663875..754d267fea14b 100644 --- a/code/modules/psionics/mob/mob.dm +++ b/code/modules/psionics/mob/mob.dm @@ -1,3 +1,4 @@ +/* /mob/living var/datum/psi_complexus/psi @@ -30,3 +31,4 @@ to_chat(src, SPAN_DANGER("\The [attacker] strikes out with a mental attack, but you deflect it!")) return TRUE return FALSE +*/ diff --git a/code/modules/psionics/mob/mob_assay.dm b/code/modules/psionics/mob/mob_assay.dm index ad28a9c49f657..1806ce47f773f 100644 --- a/code/modules/psionics/mob/mob_assay.dm +++ b/code/modules/psionics/mob/mob_assay.dm @@ -1,3 +1,4 @@ +/* /mob/living/proc/show_psi_assay(mob/viewer, obj/machinery/psi_meter/machine) if(!viewer) viewer = usr @@ -91,3 +92,4 @@ var/datum/browser/popup = new(viewer, "psi_assay_\ref[src]", "Psi-Assay") popup.set_content(jointext(dat,null)) popup.open() +*/ diff --git a/code/modules/psionics/mob/mob_interactions.dm b/code/modules/psionics/mob/mob_interactions.dm index 5a3955f20499b..f7b3907b42ca7 100644 --- a/code/modules/psionics/mob/mob_interactions.dm +++ b/code/modules/psionics/mob/mob_interactions.dm @@ -1,3 +1,4 @@ +/* #define INVOKE_PSI_POWERS(holder, powers, target, return_on_invocation) \ if(holder && holder.psi && holder.psi.can_use()) { \ for(var/thing in powers) { \ @@ -35,3 +36,4 @@ . = ..() #undef INVOKE_PSI_POWERS +*/ diff --git a/code/modules/psionics/null/_null.dm b/code/modules/psionics/null/_null.dm index 2f22237d7e0c6..32635a45d05bf 100644 --- a/code/modules/psionics/null/_null.dm +++ b/code/modules/psionics/null/_null.dm @@ -4,6 +4,7 @@ * Returns instance of `/atom/movable` or `FALSE`. Either the atom that can disrupt psionics, or `FALSE` if nothing will * disrupt. */ +/* /atom/proc/disrupts_psionics() for(var/thing in contents) var/atom/movable/AM = thing @@ -28,3 +29,4 @@ . = AM.withstand_psi_stress(., source) if(. <= 0) break +*/ diff --git a/code/modules/psionics/null/chemistry.dm b/code/modules/psionics/null/chemistry.dm index d8a6fd999e4e9..2f0517bba8b35 100644 --- a/code/modules/psionics/null/chemistry.dm +++ b/code/modules/psionics/null/chemistry.dm @@ -1,3 +1,4 @@ +/* /singleton/reaction/nullglass name = "Soulstone" result = null @@ -87,3 +88,4 @@ M.adjustBruteLoss(rand(3,6)) if(prob(10)) new /obj/item/material/shard(get_turf(M), result_mat) +*/ diff --git a/code/modules/psionics/null/flooring.dm b/code/modules/psionics/null/flooring.dm index b7c06e73c52a7..a99cf9ba5793b 100644 --- a/code/modules/psionics/null/flooring.dm +++ b/code/modules/psionics/null/flooring.dm @@ -1,3 +1,4 @@ +/* /singleton/flooring var/psi_null @@ -18,3 +19,4 @@ name = "nullglass floor tile" icon_state = "tile_nullglass" matter = list(MATERIAL_NULLGLASS = 937.5) +*/ diff --git a/code/modules/psionics/null/material.dm b/code/modules/psionics/null/material.dm index 983fc94ee9205..7d988499cca98 100644 --- a/code/modules/psionics/null/material.dm +++ b/code/modules/psionics/null/material.dm @@ -1,3 +1,4 @@ +/* /material var/is_psionic_nullifier @@ -30,3 +31,4 @@ /material/nullglass/generate_recipes() . = ..() . += new /datum/stack_recipe/tile/nullglass(src) +*/ diff --git a/mods/global_modpacks.dm b/mods/global_modpacks.dm index 2b0238f4439e2..05ee7dd90b5c1 100644 --- a/mods/global_modpacks.dm +++ b/mods/global_modpacks.dm @@ -36,5 +36,6 @@ #include "anomaly/_anomaly.dme" #include "integrated_circuits/_integrated_circuits.dme" #include "playable_away_yacht/_yacht.dme" +#include "psionics/psionics.dme" #include "../packs/sierra-tweaks/_pack.dm" diff --git a/mods/psionics/code/complexus/complexus.dm b/mods/psionics/code/complexus/complexus.dm new file mode 100644 index 0000000000000..94c8b177648a2 --- /dev/null +++ b/mods/psionics/code/complexus/complexus.dm @@ -0,0 +1,96 @@ +/datum/psi_complexus + + var/announced = FALSE // Whether or not we have been announced to our holder yet. + var/suppressed = TRUE // Whether or not we are suppressing our psi powers. + var/use_psi_armour = TRUE // Whether or not we should automatically deflect/block incoming damage. + var/rebuild_power_cache = TRUE // Whether or not we need to rebuild our cache of psi powers. + + var/rating = 0 // Overall psi rating. + var/cost_modifier = 1 // Multiplier for power use stamina costs. + var/stun = 0 // Number of process ticks we are stunned for. + var/next_power_use = 0 // world.time minimum before next power use. + var/stamina = 50 // Current psi pool. + var/max_stamina = 50 // Max psi pool. + var/armor_cost = 0 // Amount of power to substract this tick from psi armor blocking damage + + var/list/latencies // List of all currently latent faculties. + var/list/ranks // Assoc list of psi faculties to current rank. + var/list/base_ranks // Assoc list of psi faculties to base rank, in case reset is needed + var/list/manifested_items // List of atoms manifested/maintained by psychic power. + var/next_latency_trigger = 0 // world.time minimum before a trigger can be attempted again. + var/last_aura_size + var/last_aura_alpha + var/last_aura_color + var/aura_color = "#ff0022" + + // Cached powers. + var/list/melee_powers // Powers used in melee range. + var/list/grab_powers // Powers use by using a grab. + var/list/ranged_powers // Powers used at range. + var/list/manifestation_powers // Powers that create an item. + var/list/powers_by_faculty // All powers within a given faculty. + + var/obj/screen/psi/hub/ui // Reference to the master psi UI object. + var/mob/living/owner // Reference to our owner. + var/image/_aura_image // Client image + + var/list/ranks_stat // Assoc list of psi faculties to their state + +/datum/psi_complexus/proc/get_aura_image() + if(_aura_image && !istype(_aura_image)) + var/atom/A = _aura_image + log_debug("Non-image found in psi complexus: \ref[A] - \the [A] - [istype(A) ? A.type : "non-atom"]") + destroy_aura_image(_aura_image) + _aura_image = null + if(!_aura_image) + _aura_image = create_aura_image(owner) + return _aura_image + +/proc/create_aura_image(newloc) + RETURN_TYPE(/image) + var/image/aura_image = image(loc = newloc, icon = 'icons/effects/psi_aura_small.dmi', icon_state = "aura") + aura_image.blend_mode = BLEND_MULTIPLY + aura_image.appearance_flags = DEFAULT_APPEARANCE_FLAGS | NO_CLIENT_COLOR | RESET_COLOR | RESET_ALPHA | RESET_TRANSFORM + aura_image.layer = TURF_LAYER + 0.5 + aura_image.alpha = 0 + aura_image.pixel_x = -64 + aura_image.pixel_y = -64 + aura_image.mouse_opacity = 0 + aura_image.appearance_flags = DEFAULT_APPEARANCE_FLAGS + for(var/thing in SSpsi.processing) + var/datum/psi_complexus/psychic = thing + if(psychic.owner.client && !psychic.suppressed) + psychic.owner.client.images += aura_image + SSpsi.all_aura_images[aura_image] = TRUE + return aura_image + +/proc/destroy_aura_image(image/aura_image) + for(var/thing in SSpsi.processing) + var/datum/psi_complexus/psychic = thing + if(psychic.owner.client) + psychic.owner.client.images -= aura_image + SSpsi.all_aura_images -= aura_image + +/datum/psi_complexus/New(mob/_owner) + owner = _owner + START_PROCESSING(SSpsi, src) + set_extension(src, /datum/extension/armor/psionic) + +/datum/psi_complexus/Destroy() + destroy_aura_image(_aura_image) + STOP_PROCESSING(SSpsi, src) + if(owner) + cancel() + if(owner.client) + owner.client.screen -= list(ui, ui?.components) + for(var/thing in SSpsi.all_aura_images) + owner.client.images -= thing + QDEL_NULL(ui) + owner.psi = null + owner = null + + if(manifested_items) + for(var/thing in manifested_items) + qdel(thing) + manifested_items.Cut() + . = ..() diff --git a/mods/psionics/code/complexus/complexus_helpers.dm b/mods/psionics/code/complexus/complexus_helpers.dm new file mode 100644 index 0000000000000..a355703d8bda1 --- /dev/null +++ b/mods/psionics/code/complexus/complexus_helpers.dm @@ -0,0 +1,113 @@ +/datum/psi_complexus/proc/cancel() + sound_to(owner, sound('sound/effects/psi/power_fail.ogg')) + if(LAZYLEN(manifested_items)) + for(var/thing in manifested_items) + owner.drop_from_inventory(thing) + qdel(thing) + manifested_items = null + +/datum/psi_complexus/proc/stunned(amount) + var/old_stun = stun + stun = max(stun, amount) + if(amount && !old_stun) + to_chat(owner, SPAN_DANGER("Your concentration has been shattered! You cannot focus your psi power!")) + ui.update_icon() + cancel() + +/datum/psi_complexus/proc/get_armour(armourtype) + if(use_psi_armour && can_use_passive()) + return round(clamp(clamp(4 * rating, 0, 20) * get_rank(SSpsi.armour_faculty_by_type[armourtype]), 0, 100) * (stamina/max_stamina)) + else + return 0 + +/datum/psi_complexus/proc/get_rank(faculty) + return LAZYACCESS(ranks, faculty) + +/datum/psi_complexus/proc/set_rank(faculty, rank, defer_update, temporary) + if(get_rank(faculty) != rank) + LAZYSET(ranks, faculty, rank) + LAZYSET(ranks_stat, faculty, TRUE) + if(!temporary) + LAZYSET(base_ranks, faculty, rank) + if(!defer_update) + update() + +/datum/psi_complexus/proc/set_cooldown(value) + next_power_use = world.time + value + ui.update_icon() + +/datum/psi_complexus/proc/can_use_passive() + return (owner.stat == CONSCIOUS && !suppressed && !stun) + +/datum/psi_complexus/proc/can_use(incapacitation_flags) + return (owner.stat == CONSCIOUS && (!incapacitation_flags || !owner.incapacitated(incapacitation_flags)) && !suppressed && !stun && world.time >= next_power_use) + +/datum/psi_complexus/proc/spend_power(value = 0, check_incapacitated) + . = FALSE + if(isnull(check_incapacitated)) + check_incapacitated = (INCAPACITATION_STUNNED|INCAPACITATION_KNOCKOUT) + if(can_use(check_incapacitated)) + value = max(1, ceil(value * cost_modifier)) + if(value <= stamina) + stamina -= value + ui.update_icon() + . = TRUE + else + backblast(abs(stamina - value)) + stamina = 0 + . = FALSE + ui.update_icon() + +/datum/psi_complexus/proc/spend_power_armor(value = 0) + armor_cost += value + +/datum/psi_complexus/proc/hide_auras() + if(owner.client) + for(var/thing in SSpsi.all_aura_images) + owner.client.images -= thing + +/datum/psi_complexus/proc/show_auras() + if(owner.client) + for(var/image/I in SSpsi.all_aura_images) + owner.client.images |= I + +/datum/psi_complexus/proc/backblast(value) + + // Can't backblast if you're controlling your power. + if(!owner || suppressed) + return FALSE + + sound_to(owner, sound('sound/effects/psi/power_feedback.ogg')) + to_chat(owner, SPAN_DANGER(FONT_LARGE("Wild energistic feedback blasts across your psyche!"))) + stunned(value * 2) + set_cooldown(value * 100) + + if(prob(value*10)) owner.emote("scream") + + // Your head asplode. + owner.adjustBrainLoss(value) + if(ishuman(owner)) + var/mob/living/carbon/human/pop = owner +//FD PSIONICS// + if(pop.levitation) + pop.levitation = FALSE + pop.pass_flags &= ~PASS_FLAG_TABLE + pop.pixel_y = 0 + pop.overlays -= image('icons/screen/psi.dmi', "levitation") + pop.stop_floating() +//FD PSIONICS// + if(pop.should_have_organ(BP_BRAIN)) + var/obj/item/organ/internal/brain/sponge = pop.internal_organs_by_name[BP_BRAIN] + if(sponge && sponge.damage >= sponge.max_damage) + var/obj/item/organ/external/affecting = pop.get_organ(sponge.parent_organ) + if(affecting && !affecting.is_stump()) + affecting.droplimb(0, DROPLIMB_BLUNT) + if(sponge) qdel(sponge) + +/datum/psi_complexus/proc/reset() + aura_color = initial(aura_color) + ranks = base_ranks ? base_ranks.Copy() : null + max_stamina = initial(max_stamina) + stamina = min(stamina, max_stamina) + cancel() + update() diff --git a/mods/psionics/code/complexus/complexus_latency.dm b/mods/psionics/code/complexus/complexus_latency.dm new file mode 100644 index 0000000000000..3511c3ae0d655 --- /dev/null +++ b/mods/psionics/code/complexus/complexus_latency.dm @@ -0,0 +1,18 @@ +/datum/psi_complexus/proc/check_latency_trigger(trigger_strength = 0, source, redactive = FALSE) + + if(!LAZYLEN(latencies) || world.time < next_latency_trigger) + return FALSE + + if(!prob(trigger_strength)) + next_latency_trigger = world.time + rand(100, 300) + return FALSE + + var/faculty = pick(latencies) + var/new_rank = rand(2,5) + owner.set_psi_rank(faculty, new_rank) + var/singleton/psionic_faculty/faculty_singleton = SSpsi.get_faculty(faculty) + to_chat(owner, SPAN_DANGER("You scream internally as your [faculty_singleton.name] faculty is forced into operancy by [source]!")) + next_latency_trigger = world.time + rand(600, 1800) * new_rank + if(!redactive) owner.adjustBrainLoss(rand(trigger_strength * 2, trigger_strength * 4)) + log_and_message_admins("gained the [faculty_singleton.name] psionic faculty by: [source].", owner) + return TRUE diff --git a/mods/psionics/code/complexus/complexus_power_cache.dm b/mods/psionics/code/complexus/complexus_power_cache.dm new file mode 100644 index 0000000000000..0aad4bf1637f2 --- /dev/null +++ b/mods/psionics/code/complexus/complexus_power_cache.dm @@ -0,0 +1,49 @@ +/datum/psi_complexus/proc/rebuild_power_cache() + if(rebuild_power_cache) + + melee_powers = list() + grab_powers = list() + ranged_powers = list() + manifestation_powers = list() + powers_by_faculty = list() + + for(var/faculty in ranks) + var/relevant_rank = get_rank(faculty) + var/singleton/psionic_faculty/faculty_singleton = SSpsi.get_faculty(faculty) + for(var/thing in faculty_singleton.powers) + var/singleton/psionic_power/power = thing + if(relevant_rank >= power.min_rank) + if(!powers_by_faculty[power.faculty]) powers_by_faculty[power.faculty] = list() + powers_by_faculty[power.faculty] += power + if(power.use_ranged) + if(!ranged_powers[faculty]) ranged_powers[faculty] = list() + ranged_powers[faculty] += power + if(power.use_melee) + if(!melee_powers[faculty]) melee_powers[faculty] = list() + melee_powers[faculty] += power + if(power.use_manifest) + manifestation_powers += power + if(power.use_grab) + if(!grab_powers[faculty]) grab_powers[faculty] = list() + grab_powers[faculty] += power + rebuild_power_cache = FALSE + +/datum/psi_complexus/proc/get_powers_by_faculty(faculty) + rebuild_power_cache() + return powers_by_faculty[faculty] + +/datum/psi_complexus/proc/get_melee_powers(faculty) + rebuild_power_cache() + return melee_powers[faculty] + +/datum/psi_complexus/proc/get_ranged_powers(faculty) + rebuild_power_cache() + return ranged_powers[faculty] + +/datum/psi_complexus/proc/get_grab_powers(faculty) + rebuild_power_cache() + return grab_powers[faculty] + +/datum/psi_complexus/proc/get_manifestations() + rebuild_power_cache() + return manifestation_powers diff --git a/mods/psionics/code/complexus/complexus_process.dm b/mods/psionics/code/complexus/complexus_process.dm new file mode 100644 index 0000000000000..aa0a3165230dd --- /dev/null +++ b/mods/psionics/code/complexus/complexus_process.dm @@ -0,0 +1,279 @@ +/datum/psi_complexus/proc/update(force) + + set waitfor = FALSE + + var/last_rating = rating + var/highest_faculty + var/highest_rank = 0 + var/combined_rank = 0 + for(var/faculty in ranks) + var/check_rank = get_rank(faculty) + if(check_rank == 1) + LAZYADD(latencies, faculty) + else + if(check_rank <= 0) + ranks -= faculty + LAZYREMOVE(latencies, faculty) + combined_rank += check_rank + if(!highest_faculty || highest_rank < check_rank) + highest_faculty = faculty + highest_rank = check_rank + + UNSETEMPTY(latencies) + var/rank_count = max(1, LAZYLEN(ranks)) + if(force || last_rating != ceil(combined_rank/rank_count)) + if(highest_rank <= 1) + if(highest_rank == 0) + qdel(src) + return + else + rebuild_power_cache = TRUE + sound_to(owner, 'sound/effects/psi/power_unlock.ogg') + rating = ceil(combined_rank/rank_count) + cost_modifier = 1 + if(rating > 1) + cost_modifier -= min(1, max(0.1, (rating-1) / 10)) + if(!ui) + ui = new(owner) + +/* if(owner.client) + owner.client.screen += ui.components + owner.client.screen += ui + else + if(owner.client) + owner.client.screen |= ui.components + owner.client.screen |= ui*/ +//FD PSIONICS// + for(var/faculty in ranks) + var/existing_button = FALSE + for(var/obj/screen/psi/toggle_faculty/button in ui.components) + if(button.faculty_id == faculty) + existing_button = button + if(ranks[faculty] <= PSI_RANK_LATENT) + if(existing_button) + ui.components -= existing_button + qdel(existing_button) + continue + if(existing_button) + continue + var/obj/screen/psi/toggle_faculty/faculty_toggle = new(owner, faculty) + ui.components.Insert(2, faculty_toggle) + var/obj/screen/psi/toggle_psi_menu/arrow = ui.components[LAZYLEN(ui.components)] + faculty_toggle.hidden = arrow.hidden + if(owner.client) + owner.client.screen |= ui.components + owner.client.screen |= ui + if(!suppressed && owner.client) + for(var/thing in SSpsi.all_aura_images) + owner.client.images |= thing + ui.update_icon() +//FD PSIONICS// + + var/image/aura_image = get_aura_image() + if(rating >= PSI_RANK_GRANDMASTER) // spooky boosters + aura_color = "#aaffaa" + aura_image.blend_mode = BLEND_SUBTRACT + else + aura_image.blend_mode = BLEND_ADD + if(highest_faculty == PSI_COERCION) + aura_color = "#3333cc" + else if(highest_faculty == PSI_PSYCHOKINESIS) + aura_color = "#cc3333" + else if(highest_faculty == PSI_REDACTION) + aura_color = "#33cc33" + else if(highest_faculty == PSI_ENERGISTICS) + aura_color = "#cc8221" + else if(highest_faculty == PSI_CONSCIOUSNESS) + aura_color = "#5233cc" + else if(highest_faculty == PSI_METAKINESIS) + aura_color = "#cccc33" + else if(highest_faculty == PSI_MANIFESTATION) + aura_color = "#cc8221" + aura_image.pixel_x = -64 - owner.default_pixel_x + aura_image.pixel_y = -64 - owner.default_pixel_y + + if(!announced && owner && owner.client && !QDELETED(src)) + announced = TRUE + to_chat(owner, "
") + to_chat(owner, SPAN_NOTICE(FONT_LARGE("You are psionic, touched by powers beyond understanding."))) + to_chat(owner, SPAN_NOTICE("Shift-left-click your Psi icon on the bottom right to view a summary of how to use them, or left click it to suppress or unsuppress your psionics. Beware: overusing your gifts can have deadly consequences.")) + to_chat(owner, "
") + +/datum/psi_complexus/Process() + var/update_hud + if(armor_cost) + var/value = max(1, ceil(armor_cost * cost_modifier)) + if(value <= stamina) + stamina -= value + else + backblast(abs(stamina - value)) + stamina = 0 + update_hud = TRUE + armor_cost = 0 + + if(stun) + stun-- + if(stun) + if(!suppressed) + suppressed = TRUE + update_hud = TRUE + else + to_chat(owner, SPAN_NOTICE("You have recovered your mental composure.")) + update_hud = TRUE + else + var/psi_leech = owner.do_psionics_check() + if(psi_leech) + if(stamina > 10) + stamina = max(0, stamina - rand(15,20)) + //to_chat(owner, SPAN_DANGER("You feel your psi-power leeched away by \the [psi_leech]...")) + else + stamina++ + else if(stamina < max_stamina) + if(owner.stat == CONSCIOUS) + stamina = min(max_stamina, stamina + rand(1,3)) + else if(owner.stat == UNCONSCIOUS) + stamina = min(max_stamina, stamina + rand(3,5)) + + if(!owner.nervous_system_failure() && owner.stat == CONSCIOUS && stamina && !suppressed && get_rank(PSI_REDACTION) >= PSI_RANK_APPRENTICE) + attempt_regeneration() + + var/next_aura_size = max(0.1,((stamina/max_stamina)*min(3,rating))/5) + var/next_aura_alpha = round(((suppressed ? max(0,rating - 2) : rating)/5)*255) + + if(next_aura_alpha != last_aura_alpha || next_aura_size != last_aura_size || aura_color != last_aura_color) + last_aura_size = next_aura_size + last_aura_alpha = next_aura_alpha + last_aura_color = aura_color + animate( + get_aura_image(), + alpha = next_aura_alpha, + transform = matrix().Update(scale_x = next_aura_size, scale_y = next_aura_size), + color = aura_color, + time = 3 + ) + + if(update_hud) + ui.update_icon() + +/datum/psi_complexus/proc/attempt_regeneration() + + var/heal_general = FALSE + var/heal_poison = FALSE + var/heal_internal = FALSE + var/heal_bleeding = FALSE + var/heal_rate = 0 + var/mend_prob = 0 + + var/use_rank = get_rank(PSI_REDACTION) + if(use_rank >= PSI_RANK_GRANDMASTER) + heal_general = TRUE + heal_poison = TRUE + heal_internal = TRUE + heal_bleeding = TRUE + mend_prob = 50 + heal_rate = 7 + else if(use_rank == PSI_RANK_MASTER) + heal_poison = TRUE + heal_internal = TRUE + heal_bleeding = TRUE + mend_prob = 20 + heal_rate = 5 + else if(use_rank == PSI_RANK_OPERANT) + heal_internal = TRUE + heal_bleeding = TRUE + mend_prob = 10 + heal_rate = 3 + else if(use_rank == PSI_RANK_APPRENTICE) + heal_bleeding = TRUE + mend_prob = 5 + heal_rate = 1 + else + return + + if(!heal_rate || stamina < heal_rate) + return // Don't backblast from trying to heal ourselves thanks. + + if(ishuman(owner)) + + var/mob/living/carbon/human/H = owner + + // Fix some pain. + if(heal_rate > 0) + H.shock_stage = max(0, H.shock_stage - max(1, round(heal_rate/2))) + + // Mend internal damage. + if(prob(mend_prob)) + + // Fix our heart if we're paramount. + if(heal_general && H.is_asystole() && H.should_have_organ(BP_HEART) && spend_power(heal_rate)) + H.resuscitate() + + // Heal organ damage. + if(heal_internal) + for(var/obj/item/organ/I in H.internal_organs) + + if(BP_IS_ROBOTIC(I) || BP_IS_CRYSTAL(I)) + continue + + if(I.damage > 0 && spend_power(heal_rate)) + I.damage = max(I.damage - heal_rate, 0) + if(prob(25)) + to_chat(H, SPAN_NOTICE("Your innards itch as your autoredactive faculty mends your [I.name].")) + return + + // Heal broken bones. + if(length(H.bad_external_organs)) + for(var/obj/item/organ/external/E in H.bad_external_organs) + + if(BP_IS_ROBOTIC(E)) + continue + + if(heal_internal && (E.status & ORGAN_BROKEN) && E.damage < (E.min_broken_damage * config.organ_health_multiplier)) // So we don't mend and autobreak. + if(spend_power(heal_rate)) + if(E.mend_fracture()) + to_chat(H, SPAN_NOTICE("Your autoredactive faculty coaxes together the shattered bones in your [E.name].")) + return + + if(heal_bleeding) + + if((E.status & ORGAN_ARTERY_CUT) && spend_power(heal_rate)) + to_chat(H, SPAN_NOTICE("Your autoredactive faculty mends the torn artery in your [E.name], stemming the worst of the bleeding.")) + E.status &= ~ORGAN_ARTERY_CUT + return + + if(E.status & ORGAN_TENDON_CUT) + to_chat(H, SPAN_NOTICE("Your autoredactive faculty repairs the severed tendon in your [E.name].")) + E.status &= ~ORGAN_TENDON_CUT + return TRUE + + for(var/datum/wound/W in E.wounds) + + if(W.bleeding() && spend_power(heal_rate)) + to_chat(H, SPAN_NOTICE("Your autoredactive faculty knits together severed veins, stemming the bleeding from \a [W.desc] on your [E.name].")) + W.bleed_timer = 0 + W.clamped = TRUE + E.status &= ~ORGAN_BLEEDING + return + + // Heal radiation, cloneloss and poisoning. + if(heal_poison) + + if(owner.radiation && spend_power(heal_rate)) + if(prob(25)) + to_chat(owner, SPAN_NOTICE("Your autoredactive faculty repairs some of the radiation damage to your body.")) + owner.radiation = max(0, owner.radiation - heal_rate) + return + + if(owner.getCloneLoss() && spend_power(heal_rate)) + if(prob(25)) + to_chat(owner, SPAN_NOTICE("Your autoredactive faculty stitches together some of your mangled DNA.")) + owner.adjustCloneLoss(-heal_rate) + return + + // Heal everything left. + if(heal_general && prob(mend_prob) && (owner.getBruteLoss() || owner.getFireLoss() || owner.getOxyLoss()) && spend_power(heal_rate)) + owner.adjustBruteLoss(-(heal_rate)) + owner.adjustFireLoss(-(heal_rate)) + owner.adjustOxyLoss(-(heal_rate)) + if(prob(25)) + to_chat(owner, SPAN_NOTICE("Your skin crawls as your autoredactive faculty heals your body.")) diff --git a/mods/psionics/code/complexus/complexus_topic.dm b/mods/psionics/code/complexus/complexus_topic.dm new file mode 100644 index 0000000000000..e785e99983a62 --- /dev/null +++ b/mods/psionics/code/complexus/complexus_topic.dm @@ -0,0 +1,20 @@ +/datum/psi_complexus/CanUseTopic(mob/user, datum/topic_state/state = GLOB.default_state) + return (user.client && check_rights(R_ADMIN, FALSE, user.client)) + +/datum/psi_complexus/Topic(href, list/href_list) + . = ..() + if(!. && check_rights(R_ADMIN)) + if(href_list && href_list["remove_psionics"]) + if(!QDELETED(src) && !QDELETED(owner?.psi) && owner.psi == src) + log_and_message_admins("removed all psionics from [key_name(owner)].") + to_chat(owner, SPAN_NOTICE("Your psionic powers vanish abruptly, leaving you cold and empty.")) + QDEL_NULL(owner.psi) + . = TRUE + if(href_list && href_list["trigger_psi_latencies"]) + log_and_message_admins("triggered psi latencies for [key_name(owner)].") + check_latency_trigger(100, "outside intervention", redactive = TRUE) + . = TRUE + if(.) + var/datum/admins/admin = GLOB.admins[usr.key] + if(istype(admin)) + admin.show_player_panel(owner) diff --git a/mods/psionics/code/equipment/cerebro_enhancers.dm b/mods/psionics/code/equipment/cerebro_enhancers.dm new file mode 100644 index 0000000000000..e27db04f3262a --- /dev/null +++ b/mods/psionics/code/equipment/cerebro_enhancers.dm @@ -0,0 +1,167 @@ +//Psi-boosting item (antag only) +/obj/item/clothing/head/helmet/space/psi_amp + name = "cerebro-energetic enhancer" + desc = "A matte-black, eyeless cerebro-energetic enhancement helmet. It uses highly sophisticated, and illegal, techniques to drill into your brain and install psi-infected AIs into the fluid cavities between your lobes." + action_button_name = "Install Boosters" + icon_state = "cerebro" + + item_state_slots = list( + slot_l_hand_str = "helmet", + slot_r_hand_str = "helmet" + ) + + var/operating = FALSE + var/list/boosted_faculties + var/boosted_rank = PSI_RANK_GRANDMASTER + var/unboosted_rank = PSI_RANK_MASTER + var/max_boosted_faculties = 3 + var/boosted_psipower = 120 + +/obj/item/clothing/head/helmet/space/psi_amp/lesser + name = "psionic amplifier" + desc = "A crown-of-thorns cerebro-energetic enhancer that interfaces directly with the brain, isolating and strengthening psionic signals. It kind of looks like a tiara having sex with an industrial robot." + icon_state = "amp" + flags_inv = 0 + body_parts_covered = 0 + + max_boosted_faculties = 1 + boosted_rank = PSI_RANK_MASTER + unboosted_rank = PSI_RANK_OPERANT + boosted_psipower = 50 + +/obj/item/clothing/head/helmet/space/psi_amp/Initialize() + . = ..() + verbs += /obj/item/clothing/head/helmet/space/psi_amp/proc/integrate + +/obj/item/clothing/head/helmet/space/psi_amp/attack_self(mob/user) + + if(operating) + return + + if(!canremove) + deintegrate() + return + + var/mob/living/carbon/human/H = loc + if(istype(H) && H.head == src) + integrate() + return + + var/choice = input("Select a brainboard to install or remove.","Psionic Amplifier") as null|anything in SSpsi.faculties_by_name + if(!choice) + return + + var/removed + var/slots_left = max_boosted_faculties - LAZYLEN(boosted_faculties) + var/singleton/psionic_faculty/faculty = SSpsi.get_faculty(choice) + if(faculty.id in boosted_faculties) + LAZYREMOVE(boosted_faculties, faculty.id) + removed = TRUE + else + if(slots_left <= 0) + to_chat(user, SPAN_WARNING("There are no slots left to install brainboards into.")) + return + LAZYADD(boosted_faculties, faculty.id) + UNSETEMPTY(boosted_faculties) + + slots_left = max_boosted_faculties - LAZYLEN(boosted_faculties) + to_chat(user, SPAN_NOTICE("You [removed ? "remove" : "install"] the [choice] brainboard [removed ? "from" : "in"] \the [src]. There [slots_left!=1 ? "are" : "is"] [slots_left] slot\s left.")) + +/obj/item/clothing/head/helmet/space/psi_amp/proc/deintegrate() + + set name = "Remove Psi-Amp" + set desc = "Enhance your brainpower." + set category = "Abilities" + set src in usr + + if(operating) + return + + if(canremove) + return + + var/mob/living/carbon/human/H = loc + if(!istype(H) || H.head != src) + canremove = TRUE + return + + to_chat(H, SPAN_WARNING("You feel a strange tugging sensation as \the [src] begins removing the slave-minds from your brain...")) + playsound(H, 'sound/weapons/circsawhit.ogg', 50, 1, -1) + operating = TRUE + + sleep(80) + + if(H.psi) + H.psi.reset() + + to_chat(H, SPAN_NOTICE("\The [src] chimes quietly as it finishes removing the slave-minds from your brain.")) + + canremove = TRUE + operating = FALSE + + verbs -= /obj/item/clothing/head/helmet/space/psi_amp/proc/deintegrate + verbs |= /obj/item/clothing/head/helmet/space/psi_amp/proc/integrate + + action_button_name = "Integrate Psionic Amplifier" + H.update_action_buttons() + + set_light(0) + +/obj/item/clothing/head/helmet/space/psi_amp/Move() + var/lastloc = loc + . = ..() + if(.) + var/mob/living/carbon/human/H = lastloc + if(istype(H) && H.psi) + H.psi.reset() + H = loc + if(!istype(H) || H.head != src) + canremove = TRUE + +/obj/item/clothing/head/helmet/space/psi_amp/proc/integrate() + + set name = "Integrate Psionic Amplifier" + set desc = "Enhance your brainpower." + set category = "Abilities" + set src in usr + + if(operating) + return + + if(!canremove) + return + + if(LAZYLEN(boosted_faculties) < max_boosted_faculties) + to_chat(usr, SPAN_NOTICE("You still have [max_boosted_faculties - LAZYLEN(boosted_faculties)] facult[LAZYLEN(boosted_faculties) == 1 ? "y" : "ies"] to select. Use \the [src] in-hand to select them.")) + return + + var/mob/living/carbon/human/H = loc + if(!istype(H) || H.head != src) + to_chat(usr, SPAN_WARNING("\The [src] must be worn on your head in order to be activated.")) + return + + canremove = FALSE + operating = TRUE + to_chat(H, SPAN_WARNING("You feel a series of sharp pinpricks as \the [src] anaesthetises your scalp before drilling down into your brain.")) + playsound(H, 'sound/weapons/circsawhit.ogg', 50, 1, -1) + + sleep(80) + + for(var/faculty in list(PSI_COERCION, PSI_CONSCIOUSNESS, PSI_PSYCHOKINESIS, PSI_MANIFESTATION, PSI_METAKINESIS, PSI_ENERGISTICS, PSI_REDACTION)) + if(faculty in boosted_faculties) + H.set_psi_rank(faculty, boosted_rank, take_larger = TRUE, temporary = TRUE) + else + H.set_psi_rank(faculty, unboosted_rank, take_larger = TRUE, temporary = TRUE) + if(H.psi) + H.psi.max_stamina = boosted_psipower + H.psi.stamina = H.psi.max_stamina + H.psi.update(force = TRUE) + + to_chat(H, SPAN_NOTICE("You experience a brief but powerful wave of deja vu as \the [src] finishes modifying your brain.")) + verbs |= /obj/item/clothing/head/helmet/space/psi_amp/proc/deintegrate + verbs -= /obj/item/clothing/head/helmet/space/psi_amp/proc/integrate + operating = FALSE + action_button_name = "Remove Psionic Amplifier" + H.update_action_buttons() + + set_light(3, 0.5, l_color = "#880000") diff --git a/mods/psionics/code/equipment/foundation_implanter.dm b/mods/psionics/code/equipment/foundation_implanter.dm new file mode 100644 index 0000000000000..df190270dd60a --- /dev/null +++ b/mods/psionics/code/equipment/foundation_implanter.dm @@ -0,0 +1,18 @@ +/obj/item/implanter/psi + name = "psi-null implanter" + desc = "An implant gun customized to interact with psi dampeners." + var/implanter_mode = PSI_IMPLANT_AUTOMATIC + +/obj/item/implanter/psi/attack_self(mob/user) + var/choice = input("Select a new implant mode.", "Psi Dampener") as null|anything in list(PSI_IMPLANT_AUTOMATIC, PSI_IMPLANT_SHOCK, PSI_IMPLANT_WARN, PSI_IMPLANT_LOG, PSI_IMPLANT_DISABLED) + if(!choice || user != loc) return + var/obj/item/implant/psi_control/implant = imp + if(!istype(implant)) + to_chat(user, SPAN_WARNING("The implanter reports there is no compatible implant loaded.")) + return + implant.psi_mode = choice + to_chat(user, SPAN_NOTICE("You set \the [src] to configure implants with the '[implant.psi_mode]' setting.")) + +/obj/item/implanter/psi/New() + ..() + imp = new /obj/item/implant/psi_control(src) diff --git a/mods/psionics/code/equipment/foundation_weapon.dm b/mods/psionics/code/equipment/foundation_weapon.dm new file mode 100644 index 0000000000000..f259ca3e58c33 --- /dev/null +++ b/mods/psionics/code/equipment/foundation_weapon.dm @@ -0,0 +1,24 @@ +/obj/item/gun/projectile/revolver/foundation + name = "\improper Foundation revolver" + icon = 'icons/obj/guns/foundation.dmi' + icon_state = "foundation" + desc = "The CF 'Troubleshooter', a compact plastic-composite weapon designed for concealed carry by Cuchulain Foundation field agents. Smells faintly of copper." + ammo_type = /obj/item/ammo_casing/pistol/magnum/nullglass + +/obj/item/gun/projectile/revolver/foundation/disrupts_psionics() + return FALSE + +/obj/item/storage/briefcase/foundation + name = "\improper Foundation briefcase" + desc = "A handsome black leather briefcase embossed with a stylized radio telescope." + icon_state = "fbriefcase" + item_state = "fbriefcase" + +/obj/item/storage/briefcase/foundation/disrupts_psionics() + return FALSE + +/obj/item/storage/briefcase/foundation/New() + ..() + new /obj/item/ammo_magazine/speedloader/magnum/nullglass(src) + new /obj/item/gun/projectile/revolver/foundation(src) + make_exact_fit() diff --git a/mods/psionics/code/equipment/implant.dm b/mods/psionics/code/equipment/implant.dm new file mode 100644 index 0000000000000..3157821616eb3 --- /dev/null +++ b/mods/psionics/code/equipment/implant.dm @@ -0,0 +1,113 @@ +/obj/item/implant/psi_control + name = "psi dampener implant" + desc = "A safety implant for registered psi-operants." + known = TRUE + + var/overload = 0 + var/max_overload = 100 + var/psi_mode = PSI_IMPLANT_DISABLED + +/obj/item/implant/psi_control/islegal() + return TRUE + +/obj/item/implant/psi_control/Initialize() + . = ..() + SSpsi.psi_dampeners += src + +/obj/item/implant/psi_control/Destroy() + SSpsi.psi_dampeners -= src + . = ..() + +/obj/item/implant/psi_control/emp_act() + ..() + update_functionality() + +/obj/item/implant/psi_control/meltdown() + . = ..() + update_functionality() + +/obj/item/implant/psi_control/disrupts_psionics() + var/use_psi_mode = get_psi_mode() + return (!malfunction && (use_psi_mode == PSI_IMPLANT_SHOCK || use_psi_mode == PSI_IMPLANT_WARN)) ? src : FALSE + +/obj/item/implant/psi_control/removed() + var/mob/living/M = imp_in + if(disrupts_psionics() && istype(M) && M.psi) + to_chat(M, SPAN_NOTICE("You feel the chilly shackles around your psionic faculties fade away.")) + . = ..() + +/obj/item/implant/psi_control/proc/update_functionality(silent) + var/mob/living/M = imp_in + if(get_psi_mode() == PSI_IMPLANT_DISABLED || malfunction) + if(implanted && !silent && istype(M) && M.psi) + to_chat(M, SPAN_NOTICE("You feel the chilly shackles around your psionic faculties fade away.")) + else + if(implanted && !silent && istype(M) && M.psi) + to_chat(M, SPAN_NOTICE("Bands of hollow ice close themselves around your psionic faculties.")) + +/obj/item/implant/psi_control/meltdown() + if(!malfunction) + overload = 100 + if(imp_in) + for(var/thing in SSpsi.psi_monitors) + var/obj/machinery/psi_monitor/monitor = thing + monitor.report_failure(src) + . = ..() + +/obj/item/implant/psi_control/proc/get_psi_mode() + if(psi_mode == PSI_IMPLANT_AUTOMATIC) + var/singleton/security_state/security_state = GET_SINGLETON(GLOB.using_map.security_state) + return security_state.current_security_level.psionic_control_level + return psi_mode + +/obj/item/implant/psi_control/withstand_psi_stress(stress, atom/source) + + var/use_psi_mode = get_psi_mode() + + if(malfunction || use_psi_mode == PSI_IMPLANT_DISABLED) + return stress + + . = 0 + + if(stress > 0) + + // If we're disrupting psionic attempts at the moment, we might overload. + if(disrupts_psionics()) + var/overload_amount = floor(stress/10) + if(overload_amount > 0) + overload += overload_amount + if(overload >= 100) + if(imp_in) + to_chat(imp_in, SPAN_DANGER("Your psi dampener overloads violently!")) + meltdown() + update_functionality() + return + if(imp_in) + if(overload >= 75 && overload < 100) + to_chat(imp_in, SPAN_DANGER("Your psi dampener is searing hot!")) + else if(overload >= 50 && overload < 75) + to_chat(imp_in, SPAN_WARNING("Your psi dampener is uncomfortably hot...")) + else if(overload >= 25 && overload < 50) + to_chat(imp_in, SPAN_WARNING("You feel your psi dampener heating up...")) + + // If all we're doing is logging the incident then just pass back stress without changing it. + if(source && source == imp_in && implanted) + for(var/thing in SSpsi.psi_monitors) + var/obj/machinery/psi_monitor/monitor = thing + monitor.report_violation(src, stress) + if(use_psi_mode == PSI_IMPLANT_LOG) + return stress + else if(use_psi_mode == PSI_IMPLANT_SHOCK) + to_chat(imp_in, SPAN_DANGER("Your psi dampener punishes you with a violent neural shock!")) + imp_in.flash_eyes() + imp_in.Weaken(5) + if(isliving(imp_in)) + var/mob/living/M = imp_in + if(M.psi) M.psi.stunned(5) + else if(use_psi_mode == PSI_IMPLANT_WARN) + to_chat(imp_in, SPAN_WARNING("Your psi dampener primly informs you it has reported this violation.")) + //FD PSIONICS// + //Probably fixing problem with no actual logs coming to computer, dunno why it even have to be on the top of this block// + for(var/report in SSpsi.psi_monitors) + var/obj/machinery/psi_monitor/monitor = report + monitor.report_violation(src, stress) diff --git a/mods/psionics/code/equipment/null_ammo.dm b/mods/psionics/code/equipment/null_ammo.dm new file mode 100644 index 0000000000000..eb7fa46e428e7 --- /dev/null +++ b/mods/psionics/code/equipment/null_ammo.dm @@ -0,0 +1,17 @@ +/obj/item/projectile/bullet/nullglass + name = "nullglass bullet" + damage = 40 + shrapnel_type = /obj/item/material/shard/nullglass + +/obj/item/projectile/bullet/nullglass/disrupts_psionics() + return src + +/obj/item/ammo_casing/pistol/magnum/nullglass + desc = "A revolver bullet casing with a nullglass coating." + projectile_type = /obj/item/projectile/bullet/nullglass + +/obj/item/ammo_casing/pistol/magnum/nullglass/disrupts_psionics() + return src + +/obj/item/ammo_magazine/speedloader/magnum/nullglass + ammo_type = /obj/item/ammo_casing/pistol/magnum/nullglass diff --git a/mods/psionics/code/equipment/psimeter.dm b/mods/psionics/code/equipment/psimeter.dm new file mode 100644 index 0000000000000..c9b7247ea4537 --- /dev/null +++ b/mods/psionics/code/equipment/psimeter.dm @@ -0,0 +1,71 @@ +/obj/machinery/psi_meter + name = "psi-meter" + desc = "A bulky psi-meter for conducting assays of psi-operants." + icon = 'icons/obj/machines/research/psimeter.dmi' + icon_state = "meter_on" + use_power = POWER_USE_ACTIVE + anchored = TRUE + density = TRUE + opacity = FALSE + + var/list/last_assay + var/mob/living/last_assayed + +/obj/machinery/psi_meter/on_update_icon() + if(use_power && operable()) + icon_state = "meter_on" + else + icon_state = "meter_off" + +/obj/machinery/psi_meter/interface_interact(mob/user) + interact(user) + return TRUE + +/obj/machinery/psi_meter/interact(mob/user) + + if(!use_power) return + + var/list/dat = list() + if(LAZYLEN(last_assay)) + dat = last_assay + else + dat += "

TELESTO Mark I Psi-Meter


[faculty_singleton.name]
" + var/found + for(var/mob/living/H in range(1, src)) + found = TRUE + dat += "" + dat += "
Candidates
[H.name]Conduct Assay" + if(!found) + dat += "
No candidates found.
" + + var/datum/browser/popup = new(user, "psi_assay_\ref[src]", "Psi-Assay") + popup.set_content(jointext(dat,null)) + popup.open() + +/obj/machinery/psi_meter/Topic(href, href_list) + . = ..() + if(!.) + + if(!issilicon(usr) && !Adjacent(usr)) + return FALSE + + var/refresh + if(href_list["print"]) + if(last_assay) + var/obj/item/paper/P = new(loc) + P.name = "paper - Psi-Assay ([last_assayed.name])" + P.info = jointext(last_assay - last_assay[length(last_assay)],null) // Last line is 'print | clear' link line. + return TRUE + + if(href_list["clear"]) + last_assay = null + refresh = TRUE + else if(href_list["assay"]) + last_assayed = locate(href_list["assay"]) + if(istype(last_assayed)) + last_assayed.show_psi_assay(usr, src) + refresh = TRUE + + if(refresh) + interact(usr) + return TRUE diff --git a/mods/psionics/code/equipment/psimonitor.dm b/mods/psionics/code/equipment/psimonitor.dm new file mode 100644 index 0000000000000..a8ba54e7c8059 --- /dev/null +++ b/mods/psionics/code/equipment/psimonitor.dm @@ -0,0 +1,122 @@ +/obj/machinery/psi_monitor + name = "psionic implant monitor" + icon = 'icons/obj/machines/research/psimeter.dmi' + icon_state = "meter_on" + use_power = POWER_USE_ACTIVE + anchored = TRUE + density = TRUE + opacity = FALSE + req_access = list(list(access_psychiatrist, access_captain, access_cmo, access_hos)) + + var/list/psi_violations = list() + var/show_violations = FALSE + var/authorized + +/obj/machinery/psi_monitor/New() + SSpsi.psi_monitors += src + ..() + +/obj/machinery/psi_monitor/emag_act(remaining_charges, mob/user) + if(!emagged) + emagged = TRUE + remaining_charges-- + req_access.Cut() + to_chat(user, SPAN_NOTICE("You short out the access protocols.")) + return TRUE + return FALSE + +/obj/machinery/psi_monitor/Topic(href, href_list) + + . = ..() + if(!.) + + if(href_list["login"]) + + var/obj/item/card/id/ID = usr.GetIdCard() + if(!ID || !allowed(usr)) + to_chat(usr, SPAN_WARNING("Access denied.")) + else + authorized = "[ID.registered_name] ([ID.assignment])" + . = 1 + + else if(href_list["logout"]) + authorized = FALSE + . = 1 + + else if(href_list["show_violations"]) + show_violations = (href_list["show_violations"] == "1") + . = 1 + + else if(href_list["remove_violation"]) + var/remove_ind = text2num(href_list["remove_violation"]) + if(remove_ind > 0 && remove_ind <= length(psi_violations)) + psi_violations.Cut(remove_ind, remove_ind++) + . = 1 + + else if(href_list["change_mode"]) + var/obj/item/implant/psi_control/implant = locate(href_list["change_mode"]) + if(implant.imp_in && !implant.malfunction) + if(!AreConnectedZLevels(z, implant.imp_in.z)) + to_chat(usr, SPAN_WARNING("Signal to implant was lost")) + return 1 + var/choice = input("Select a new implant mode.", "Psi Dampener") as null|anything in list(PSI_IMPLANT_AUTOMATIC, PSI_IMPLANT_SHOCK, PSI_IMPLANT_WARN, PSI_IMPLANT_LOG, PSI_IMPLANT_DISABLED) + if(choice && implant && implant.imp_in && !implant.malfunction) + implant.psi_mode = choice + implant.update_functionality() + . = 1 + + if(. && usr) + interact(usr) + +/obj/machinery/psi_monitor/interface_interact(mob/user) + interact(user) + return TRUE + +/obj/machinery/psi_monitor/interact(mob/user) + + var/list/dat = list() + dat += "

Psi Dampener Monitor

" + if(authorized) + dat += "[authorized]Logout" + else + dat += "Login" + + dat += "

Active Psionic Dampeners


" + dat += "
" + dat += "" + for(var/thing in SSpsi.psi_dampeners) + var/obj/item/implant/psi_control/implant = thing + if(!implant.imp_in) + continue + if(!AreConnectedZLevels(z, implant.imp_in.z)) + continue + dat += "" + if(implant.malfunction) + dat += "" + else + dat += "" + dat += "" + dat += "
OperantSystem loadMode
[implant.imp_in.name]ERRORERROR[implant.overload]%[authorized ? "[implant.psi_mode]" : "[implant.psi_mode]"]

" + + if(show_violations) + dat += "

Psionic Control Violations -


" + if(length(psi_violations)) + for(var/i = 1 to length(psi_violations)) + var/entry = psi_violations[i] + dat += "" + else + dat += "" + dat += "

[entry]
[authorized ? "Remove" : ""]
None reported.

" + else + dat += "

Psionic Control Violations +


" + + var/datum/browser/popup = new(user, "psi_monitor_\ref[src]", "Psi-Monitor") + popup.set_content(jointext(dat,null)) + popup.open() + + +/obj/machinery/psi_monitor/proc/report_failure(obj/item/implant/psi_control/implant) + psi_violations += SPAN_COLOR("#ff0000", "Critical system failure - [implant.imp_in.name].") + +/obj/machinery/psi_monitor/proc/report_violation(obj/item/implant/psi_control/implant, stress) + psi_violations += "Sigma [round(stress/10)] event - [implant.imp_in.name]." diff --git a/mods/psionics/code/equipment/psipower.dm b/mods/psionics/code/equipment/psipower.dm new file mode 100644 index 0000000000000..3804d76e454d2 --- /dev/null +++ b/mods/psionics/code/equipment/psipower.dm @@ -0,0 +1,68 @@ +/obj/item/psychic_power + name = "psychic power" + icon = 'icons/obj/psychic_powers.dmi' + atom_flags = 0 + anchored = TRUE + var/maintain_cost = 3 + var/mob/living/owner +/* +/obj/item/psychic_power/AltClick(mob/user) + if(melee_strikes) + swap_stances(user) + + ..() +*/ +/obj/item/psychic_power/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/psychic_power/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/psychic_power/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/psychic_power/attack_self(mob/user) + sound_to(owner, 'sound/effects/psi/power_fail.ogg') + user.drop_from_inventory(src) + +/obj/item/psychic_power/use_before(mob/living/M, mob/living/user) + . = FALSE + if(M.do_psionics_check(max(force, maintain_cost), user)) + to_chat(user, SPAN_DANGER("\The [src] flickers violently out of phase!")) + return TRUE + +/obj/item/psychic_power/afterattack(atom/target, mob/living/user, proximity) + if(target.do_psionics_check(max(force, maintain_cost), user)) + to_chat(user, SPAN_DANGER("\The [src] flickers violently out of phase!")) + return + . = ..(target, user, proximity) + +/obj/item/psychic_power/dropped() + ..() + qdel(src) + +/obj/item/psychic_power/Process() + if(istype(owner)) + owner.psi.spend_power(maintain_cost) + if(!owner || owner.do_psionics_check(maintain_cost, owner) || !owner.IsHolding(src)) + if(istype(loc,/mob/living)) + var/mob/living/carbon/human/host = loc + if(istype(host)) + for(var/obj/item/organ/external/organ in host.organs) + for(var/obj/item/O in organ.implants) + if(O == src) + organ.implants -= src + host.pinned -= src + host.embedded -= src + host.drop_from_inventory(src) + else + qdel(src) diff --git a/mods/psionics/code/equipment/psipower_blade.dm b/mods/psionics/code/equipment/psipower_blade.dm new file mode 100644 index 0000000000000..e48db11d301f2 --- /dev/null +++ b/mods/psionics/code/equipment/psipower_blade.dm @@ -0,0 +1,183 @@ +/obj/item/carvable/Initialize() + var/list/add_to_tools = list(/obj/item/psychic_power/psiaxe, \ + /obj/item/psychic_power/psiblade) + allow_tool_types += add_to_tools + ..() + +/obj/item/psychic_power/psiblade/IsHatchet() + return TRUE + +/obj/item/psychic_power/psiblade + name = "psychokinetic slash" + force = 15 + sharp = TRUE + edge = TRUE + maintain_cost = 6 + + item_icons = list( + slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + ) + + icon_state = "psiblade_short" + item_state = "psiblade_short" + attack_cooldown = 8 + + base_parry_chance = 20 +/* + fail_chance = 20 + lunge_dist = 6 + melee_strikes = list(/singleton/combo_strike/precise_strike/fast_attacks,/singleton/combo_strike/swipe_strike/mixed_combo) +*/ +/obj/item/psychic_power/psiblade/master + force = 25 + maintain_cost = 5 + +/obj/item/psychic_power/psiblade/master/grand + force = 35 + maintain_cost = 4 + + item_icons = list( + slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + ) + + icon_state = "psiblade_long" + item_state = "psiblade_long" + + base_parry_chance = 50 +/* + lunge_dist = 4 + fail_chance = 40 + melee_strikes = list(/singleton/combo_strike/swipe_strike/sword_slashes,/singleton/combo_strike/swipe_strike/mixed_combo) +*/ +/obj/item/psychic_power/psiblade/master/grand/paramount // Silly typechecks because rewriting old interaction code is outside of scope. + force = 50 + maintain_cost = 3 + icon_state = "psiblade_long" + item_state = "psiblade_long" + +/obj/item/psychic_power/psiaxe/afterattack(atom/A as mob|obj|turf|area, mob/user as mob, proximity) + if(!proximity) return + + if(A) + if(istype(A,/obj/structure/window)) + var/obj/structure/window/W = A + W.shatter() + else if(istype(A,/obj/structure/grille)) + qdel(A) + else if(istype(A,/obj/vine)) + var/obj/vine/P = A + P.kill_health() + + ..() + +/obj/item/psychic_power/psiaxe/IsHatchet() + return TRUE + +/obj/item/psychic_power/psiaxe + name = "psychokinetic axe" + force = 25 + sharp = TRUE + edge = TRUE + maintain_cost = 8 + + item_icons = list( + slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + ) + + icon_state = "psiaxe" + item_state = "psiaxe" + attack_cooldown = 16 + + base_parry_chance = 50 +/* + lunge_delay = 10 SECONDS + lunge_dist = 2 + fail_chance = 40 + melee_strikes = list(/singleton/combo_strike/swipe_strike/polearm_slash, /singleton/combo_strike/swipe_strike/polearm_wide) +*/ +/obj/item/psychic_power/psiaxe/master + force = 35 + maintain_cost = 6 + +/obj/item/psychic_power/psiaxe/master/grand + force = 45 + maintain_cost = 4 + +/obj/item/psychic_power/psiaxe/master/grand/paramount + force = 60 + maintain_cost = 2 + + + +/obj/item/psychic_power/psiclub + name = "psychokinetic club" + force = 10 + edge = TRUE + maintain_cost = 5 + + item_icons = list( + slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + ) + + icon_state = "psiclub" + item_state = "psiclub" + attack_cooldown = 6 + + base_parry_chance = 10 +/* + lunge_dist = 4 + fail_chance = 10 + melee_strikes = list(/singleton/combo_strike/swipe_strike/blunt_swing/mixed_combo, /singleton/combo_strike/circle_strike/blunt) +*/ +/obj/item/psychic_power/psiclub/master + force = 20 + maintain_cost = 4 + +/obj/item/psychic_power/psiclub/master/grand + force = 30 + maintain_cost = 3 + +/obj/item/psychic_power/psiclub/master/grand/paramount + force = 45 + maintain_cost = 2 + + + +/obj/item/psychic_power/psispear + name = "psychokinetic spear" + force = 20 + sharp = TRUE + edge = TRUE + maintain_cost = 6 + + item_icons = list( + slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + ) + + icon_state = "psispear" + item_state = "psispear" + attack_cooldown = 12 + + base_parry_chance = 30 +/* + lunge_delay = 10 SECONDS + lunge_dist = 4 + fail_chance = 60 + melee_strikes = list(/singleton/combo_strike/swipe_strike/polearm_mixed, /singleton/combo_strike/swipe_strike/polearm_slash, /singleton/combo_strike/swipe_strike/polearm_wide) +*/ +/obj/item/psychic_power/psispear/master + force = 30 + maintain_cost = 5 + +/obj/item/psychic_power/psispear/master/grand + force = 40 + maintain_cost = 4 + +/obj/item/psychic_power/psispear/master/grand/paramount + force = 50 + maintain_cost = 3 diff --git a/mods/psionics/code/equipment/psipower_bow.dm b/mods/psionics/code/equipment/psipower_bow.dm new file mode 100644 index 0000000000000..803c16db32107 --- /dev/null +++ b/mods/psionics/code/equipment/psipower_bow.dm @@ -0,0 +1,135 @@ +/obj/item/psyarrow + name = "psionic projectile" + desc = "It's got a tip for you - get the point?" + icon = 'icons/obj/psychic_powers.dmi' + icon_state = "tinker" + throwforce = 8 + sharp = TRUE + var/mob/living/owner + +/obj/item/psyarrow/proc/removed(mob/user) + sleep(2) + qdel(src) + +/obj/item/psyarrow/throw_impact(atom/hit_atom) + ..() + if(isliving(hit_atom)) + qdel(src) + sleep(10) + qdel(src) + +/obj/item/psyarrow/master + throwforce = 12 + +/obj/item/psyarrow/master/grand + throwforce = 14 + +/obj/item/psyarrow/master/grand/paramount + throwforce = 16 + +/obj/item/gun/launcher/crossbow/psibow + name = "psychokinetic bow" + icon = 'icons/obj/guns/crossbow.dmi' + icon_state = "crossbow" + item_state = "crossbow-solid" + atom_flags = 0 + color = "#0095ff" + alpha = 110 + anchored = TRUE + release_speed = 6 + var/used_bolt = /obj/item/psyarrow + bolt = new/obj/item/psyarrow + var/maintain_cost = 8 + var/mob/living/owner + draw_time = 40 + +/obj/item/gun/launcher/crossbow/psibow/master + bolt = new/obj/item/psyarrow/master + used_bolt = /obj/item/psyarrow/master + draw_time = 8 + maintain_cost = 6 + draw_time = 30 + +/obj/item/gun/launcher/crossbow/psibow/master/grand + bolt = new/obj/item/psyarrow/master/grand + used_bolt = /obj/item/psyarrow/master/grand + draw_time = 6 + maintain_cost = 4 + draw_time = 20 + +/obj/item/gun/launcher/crossbow/psibow/master/grand/paramount + bolt = new/obj/item/psyarrow/master/grand/paramount + used_bolt = /obj/item/psyarrow/master/grand/paramount + draw_time = 4 + maintain_cost = 2 + draw_time = 10 + +/obj/item/gun/launcher/crossbow/psibow/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/gun/launcher/crossbow/psibow/attack_self(mob/living/user as mob) + if(!bolt) + user.visible_message("[user] starts to reconstruct arrow inside the [src].","You starting to create new arrow for the [src].") + bolt = new used_bolt + update_icon() + if(tension) + if(bolt) + user.visible_message("[user] relaxes the tension on [src]'s string and removes [bolt].","You relax the tension on [src]'s string and remove [bolt].") + bolt.dropInto(loc) + var/obj/item/psyarrow/A = bolt + bolt = null + A.removed(user) + else + user.visible_message("[user] relaxes the tension on [src]'s string.","You relax the tension on [src]'s string.") + tension = 0 + update_icon() + else + draw(user) + +/obj/item/gun/launcher/crossbow/psibow/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/gun/launcher/crossbow/psibow/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/gun/launcher/crossbow/psibow/use_before(mob/living/M, mob/living/user, target_zone) + if(M.do_psionics_check(max(force, maintain_cost), user)) + to_chat(user, "\The [src] flickers violently out of phase!") + return 1 + . = ..() + +/obj/item/gun/launcher/crossbow/psibow/afterattack(atom/target, mob/living/user, proximity) + if(target.do_psionics_check(max(force, maintain_cost), user)) + to_chat(user, "\The [src] flickers violently out of phase!") + return + . = ..(target, user, proximity) + +/obj/item/gun/launcher/crossbow/psibow/dropped() + ..() + qdel(src) + +/obj/item/gun/launcher/crossbow/psibow/Process() + if(istype(owner)) + owner.psi.spend_power(maintain_cost) + if(!owner || owner.do_psionics_check(maintain_cost, owner) || loc != owner || (owner.l_hand != src && owner.r_hand != src)) + if(istype(loc,/mob/living)) + var/mob/living/carbon/human/host = loc + if(istype(host)) + for(var/obj/item/organ/external/organ in host.organs) + for(var/obj/item/O in organ.implants) + if(O == src) + organ.implants -= src + host.pinned -= src + host.embedded -= src + host.drop_from_inventory(src) + else + STOP_PROCESSING(SSprocessing, src) diff --git a/mods/psionics/code/equipment/psipower_cryokinesis.dm b/mods/psionics/code/equipment/psipower_cryokinesis.dm new file mode 100644 index 0000000000000..6d5920827e3bc --- /dev/null +++ b/mods/psionics/code/equipment/psipower_cryokinesis.dm @@ -0,0 +1,81 @@ +/obj/item/cryokinesis + name = "ice" + icon = 'icons/obj/psychic_powers.dmi' + + item_icons = list( + slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + ) + + icon_state = "cryo" + + var/delete_on_drop = 0 //should we delete this item, if it isn't in our inventory? + var/uses = 5 //amount of time we can use this item before it shutters, similar to glass spear + +/obj/item/cryokinesis/New() + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/cryokinesis/Process() + if(uses <= 0) + Destroy() + +/obj/item/cryokinesis/apply_hit_effect(mob/living/target, mob/living/user, hit_zone) + uses -= 1 + ..() + +/obj/item/cryokinesis/afterattack(atom/A as mob|obj|turf|area, mob/living/user as mob) + uses -= 1 + +/obj/item/cryokinesis/Destroy() + playsound(src, "shatter", 70, 1) + src.visible_message("[src] рассыпается на тысячи мелких льдинок!") + ..() + +/obj/item/cryokinesis/dropped(mob/living/user as mob) + ..() + if(delete_on_drop) + Destroy() + +/obj/item/cryokinesis/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/cryokinesis/fists + name = "ice fists" + icon_state = "icefists" + desc = "A pair of cold, icy, punching gloves" + uses = 10 + delete_on_drop = 1 + force = 15 + attack_cooldown = 8 + + base_parry_chance = 10 +/* + lunge_dist = 5 + fail_chance = 10 + melee_strikes = list(/singleton/combo_strike/swipe_strike/blunt_swing/mixed_combo, /singleton/combo_strike/circle_strike/blunt) +*/ +/obj/item/cryokinesis/fists/apply_hit_effect(mob/living/target, mob/living/user, hit_zone) + if(user.psi) + var/tele_rank = user.psi.get_rank(PSI_PSYCHOKINESIS) + if(tele_rank >= PSI_RANK_OPERANT && !user.psi.suppressed) + force = 35 + ..() + +/obj/item/cryokinesis/rapier + name = "ice sword" + icon_state = "iceblade" + desc = "Sword, made of very fragile and sharp ice" + uses = 5 + force = 25 + attack_cooldown = 4 + + sharp = TRUE + edge = TRUE + + base_parry_chance = 40 +/* + lunge_dist = 3 + fail_chance = 50 + melee_strikes = list(/singleton/combo_strike/swipe_strike/sword_slashes,/singleton/combo_strike/swipe_strike/mixed_combo) +*/ diff --git a/mods/psionics/code/equipment/psipower_electrokinesis.dm b/mods/psionics/code/equipment/psipower_electrokinesis.dm new file mode 100644 index 0000000000000..0d792ed455761 --- /dev/null +++ b/mods/psionics/code/equipment/psipower_electrokinesis.dm @@ -0,0 +1,66 @@ +/obj/item/psychic_power/electric_whip + name = "electric whip" + force = 10 + maintain_cost = 4 + + item_icons = list( + slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + ) + + icon_state = "electrowhip" + attack_cooldown = 10 + + var/cooldown = 0 + base_parry_chance = 10 + +/obj/item/psychic_power/electric_whip/Process() + if(cooldown > 0) + cooldown-- + + . = ..() + +/obj/item/psychic_power/electric_whip/afterattack(atom/A as mob|obj|turf|area, mob/living/user as mob) + var/el_rank = user.psi.get_rank(PSI_METAKINESIS) + + if(istype(A, /mob/living)) + var/mob/living/target = A + + if(get_dist(user, target) > 4) + return FALSE + + if(cooldown > 0) + to_chat(user, "Ты не можешь использовать плеть настолько часто!") + return + + if(get_dist(user, target) >= 2) + + if(target == user) + to_chat(user, "Вы не можете зарядить самого себя!") + return + if(target.psi && !target.psi.suppressed) + var/el_rank_target = target.psi.get_rank(PSI_METAKINESIS) + if(el_rank_target >= el_rank && prob(50)) + user.visible_message("[target] пропускает ток через себя, возвращая его [user] в виде молнии!") + user.electrocute_act(rand(el_rank_target * 2, el_rank_target * 5), target, 1, target.zone_sel.selecting) + new /obj/temporary(get_turf(user),3, 'icons/effects/effects.dmi', "electricity_constant") + return TRUE + cooldown += 2 + target.electrocute_act(rand(el_rank * 2, el_rank * 5), user, 1, user.zone_sel.selecting) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "electricity_constant") + return TRUE + +/obj/item/psychic_power/electric_whip/apply_hit_effect(mob/living/target, mob/living/user, hit_zone) + var/el_rank = user.psi.get_rank(PSI_METAKINESIS) + + if(target.psi && !target.psi.suppressed) + var/el_rank_target = target.psi.get_rank(PSI_METAKINESIS) + if(el_rank_target >= el_rank && prob(50)) + user.visible_message("[target] пропускает ток через себя, возвращая его [user] в виде молнии!") + user.electrocute_act(rand(el_rank_target * 2, el_rank_target * 5), target, 1, target.zone_sel.selecting) + new /obj/temporary(get_turf(user),3, 'icons/effects/effects.dmi', "electricity_constant") + ..() + cooldown += 2 + target.electrocute_act(rand(el_rank * 2, el_rank * 5), user, 1, user.zone_sel.selecting) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "electricity_constant") + ..() diff --git a/mods/psionics/code/equipment/psipower_engineering.dm b/mods/psionics/code/equipment/psipower_engineering.dm new file mode 100644 index 0000000000000..960670e6c88ed --- /dev/null +++ b/mods/psionics/code/equipment/psipower_engineering.dm @@ -0,0 +1,347 @@ +/obj/item/clothing/gloves/insulated/psi + name = "psychokinetic gloves" + + var/maintain_cost = 2 + var/mob/living/carbon/human/owner + color = "#0095ff" + alpha = 110 + +/obj/item/clothing/gloves/insulated/psi/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/clothing/gloves/insulated/psi/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/clothing/gloves/insulated/psi/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/clothing/gloves/insulated/psi/dropped() + ..() + qdel(src) + +/obj/item/clothing/gloves/insulated/psi/Process() + if(istype(owner)) + owner.psi.spend_power(maintain_cost) + if(!owner || owner.do_psionics_check(maintain_cost, owner) || loc != owner || (owner.l_hand != src && owner.r_hand != src && owner.gloves != src)) + if(istype(loc,/mob/living)) + var/mob/living/carbon/human/host = loc + if(istype(host)) + for(var/obj/item/organ/external/organ in host.organs) + for(var/obj/item/O in organ.implants) + if(O == src) + organ.implants -= src + host.pinned -= src + host.embedded -= src + host.drop_from_inventory(src) + else + STOP_PROCESSING(SSprocessing, src) + + + +/obj/item/crowbar/psi + name = "psychokinetic crowbar" + + var/maintain_cost = 2 + var/mob/living/owner + color = "#0095ff" + alpha = 110 + +/obj/item/crowbar/psi/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/crowbar/psi/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/crowbar/psi/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/crowbar/psi/dropped() + ..() + qdel(src) + +/obj/item/crowbar/psi/Process() + if(istype(owner)) + owner.psi.spend_power(maintain_cost) + if(!owner || owner.do_psionics_check(maintain_cost, owner) || loc != owner || (owner.l_hand != src && owner.r_hand != src)) + if(istype(loc,/mob/living)) + var/mob/living/carbon/human/host = loc + if(istype(host)) + for(var/obj/item/organ/external/organ in host.organs) + for(var/obj/item/O in organ.implants) + if(O == src) + organ.implants -= src + host.pinned -= src + host.embedded -= src + host.drop_from_inventory(src) + else + STOP_PROCESSING(SSprocessing, src) + + + +/obj/item/screwdriver/psi + name = "psychokinetic screwdriver" + item_state = "screwdriver_preview" + + var/maintain_cost = 2 + var/mob/living/owner + color = "#0095ff" + alpha = 110 + +/obj/item/screwdriver/psi/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/screwdriver/psi/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/screwdriver/psi/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/screwdriver/psi/dropped() + ..() + qdel(src) + +/obj/item/screwdriver/psi/Process() + if(istype(owner)) + owner.psi.spend_power(maintain_cost) + if(!owner || owner.do_psionics_check(maintain_cost, owner) || loc != owner || (owner.l_hand != src && owner.r_hand != src)) + if(istype(loc,/mob/living)) + var/mob/living/carbon/human/host = loc + if(istype(host)) + for(var/obj/item/organ/external/organ in host.organs) + for(var/obj/item/O in organ.implants) + if(O == src) + organ.implants -= src + host.pinned -= src + host.embedded -= src + host.drop_from_inventory(src) + else + STOP_PROCESSING(SSprocessing, src) + + + +/obj/item/wirecutters/psi + name = "psychokinetic wirecutters" + item_state = "cutters_preview" + + var/maintain_cost = 2 + var/mob/living/owner + color = "#0095ff" + alpha = 110 + +/obj/item/wirecutters/psi/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/wirecutters/psi/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/wirecutters/psi/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/wirecutters/psi/dropped() + ..() + qdel(src) + +/obj/item/wirecutters/psi/Process() + if(istype(owner)) + owner.psi.spend_power(maintain_cost) + if(!owner || owner.do_psionics_check(maintain_cost, owner) || loc != owner || (owner.l_hand != src && owner.r_hand != src)) + if(istype(loc,/mob/living)) + var/mob/living/carbon/human/host = loc + if(istype(host)) + for(var/obj/item/organ/external/organ in host.organs) + for(var/obj/item/O in organ.implants) + if(O == src) + organ.implants -= src + host.pinned -= src + host.embedded -= src + host.drop_from_inventory(src) + else + STOP_PROCESSING(SSprocessing, src) + + + +/obj/item/wrench/psi + name = "psychokinetic wrench" + + var/maintain_cost = 2 + var/mob/living/owner + color = "#0095ff" + alpha = 110 + +/obj/item/wrench/psi/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/wrench/psi/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/wrench/psi/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/wrench/psi/dropped() + ..() + qdel(src) + +/obj/item/wrench/psi/Process() + if(istype(owner)) + owner.psi.spend_power(maintain_cost) + if(!owner || owner.do_psionics_check(maintain_cost, owner) || loc != owner || (owner.l_hand != src && owner.r_hand != src)) + if(istype(loc,/mob/living)) + var/mob/living/carbon/human/host = loc + if(istype(host)) + for(var/obj/item/organ/external/organ in host.organs) + for(var/obj/item/O in organ.implants) + if(O == src) + organ.implants -= src + host.pinned -= src + host.embedded -= src + host.drop_from_inventory(src) + else + STOP_PROCESSING(SSprocessing, src) + + + +/obj/item/welder_tank/experimental/special + max_fuel = 100 + +/obj/item/weldingtool/experimental/psi + name = "psychokinetic welding" + tank = /obj/item/welder_tank/experimental/special + + var/maintain_cost = 4 + var/mob/living/owner + color = "#0095ff" + alpha = 110 + +/obj/item/weldingtool/experimental/psi/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/weldingtool/experimental/psi/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/weldingtool/experimental/psi/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/weldingtool/experimental/psi/dropped() + ..() + qdel(src) + +/obj/item/weldingtool/experimental/psi/Process() + if(istype(owner)) + owner.psi.spend_power(maintain_cost) + if(!owner || owner.do_psionics_check(maintain_cost, owner) || loc != owner || (owner.l_hand != src && owner.r_hand != src)) + if(istype(loc,/mob/living)) + var/mob/living/carbon/human/host = loc + if(istype(host)) + for(var/obj/item/organ/external/organ in host.organs) + for(var/obj/item/O in organ.implants) + if(O == src) + organ.implants -= src + host.pinned -= src + host.embedded -= src + host.drop_from_inventory(src) + else + STOP_PROCESSING(SSprocessing, src) + + + +/obj/item/device/multitool/psi + name = "psychokinetic multitool" + item_state = "multitool" + + var/maintain_cost = 4 + var/mob/living/owner + color = "#0095ff" + alpha = 110 + +/obj/item/device/multitool/psi/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/device/multitool/psi/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/device/multitool/psi/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/device/multitool/psi/dropped() + ..() + qdel(src) + +/obj/item/device/multitool/psi/Process() + if(istype(owner)) + owner.psi.spend_power(maintain_cost) + if(!owner || owner.do_psionics_check(maintain_cost, owner) || loc != owner || (owner.l_hand != src && owner.r_hand != src)) + if(istype(loc,/mob/living)) + var/mob/living/carbon/human/host = loc + if(istype(host)) + for(var/obj/item/organ/external/organ in host.organs) + for(var/obj/item/O in organ.implants) + if(O == src) + organ.implants -= src + host.pinned -= src + host.embedded -= src + host.drop_from_inventory(src) + else + STOP_PROCESSING(SSprocessing, src) diff --git a/mods/psionics/code/equipment/psipower_gun.dm b/mods/psionics/code/equipment/psipower_gun.dm new file mode 100644 index 0000000000000..7044a84143944 --- /dev/null +++ b/mods/psionics/code/equipment/psipower_gun.dm @@ -0,0 +1,167 @@ +/obj/item/projectile/psi + name = "psionic projectile" + icon = 'icons/obj/projectiles.dmi' + icon_state = "dark_pellet" + damage = 20 + distance_falloff = 1 + penetration_modifier = 1.0 + damage_type = DAMAGE_BRUTE + damage_flags = DAMAGE_FLAG_BULLET | DAMAGE_FLAG_SHARP + miss_sounds = list('sound/weapons/guns/miss1.ogg','sound/weapons/guns/miss2.ogg','sound/weapons/guns/miss3.ogg','sound/weapons/guns/miss4.ogg') + ricochet_sounds = list('sound/weapons/guns/ricochet1.ogg', 'sound/weapons/guns/ricochet2.ogg', + 'sound/weapons/guns/ricochet3.ogg', 'sound/weapons/guns/ricochet4.ogg') + impact_sounds = list(BULLET_IMPACT_MEAT = SOUNDS_BULLET_MEAT, BULLET_IMPACT_METAL = SOUNDS_BULLET_METAL) + +/obj/item/projectile/psi/strong + damage = 25 + icon_state = "plasma_bolt" + color = "#c40eed" + var/explosion_power = EX_ACT_HEAVY + var/explosion_area = 5 + +/obj/item/projectile/psi/strong/on_hit(atom/target, blocked = 0) + explosion(get_turf(target), explosion_area, explosion_power) + ..() + +/obj/item/projectile/psi/strong_piercing + damage = 40 + icon_state = "plasma_bolt" + color = "#c40eed" + var/explosion_power = EX_ACT_DEVASTATING + var/explosion_area = 5 + var/exploded_inwall = FALSE + var/delay = 4 + + armor_penetration = 100 + penetrating = 2 + penetration_modifier = 1.1 + var/proximity_detonation = FALSE //should we explode near our target, and not inside of it? + var/exploded = FALSE + +/obj/item/projectile/psi/strong_piercing/Bump(atom/A as mob|obj|turf|area, forced=0) + ..() + if(exploded) + return + + exploded = TRUE + if(istype(A,/obj/shield)) + explosion(get_turf(A), explosion_area, explosion_power) + qdel(src) + return + + sleep(delay) + + if(src && !exploded_inwall) + explosion(get_turf(src), explosion_area, explosion_power) + qdel(src) + +/obj/item/projectile/psi/strong_piercing/Destroy() + if(src && !exploded_inwall && !istype(loc,/atom/movable)) + exploded = TRUE + exploded_inwall = TRUE + explosion(get_turf(src), explosion_area, explosion_power) + ..() + +/obj/item/gun/energy/psigun + name = "psychokinetic gun" + desc = "Result of Demiurgy and Hyloforia combinated factors." + icon = 'icons/obj/psychic_powers.dmi' + icon_state = "gun" + fire_sound = 'sound/weapons/Taser.ogg' + fire_sound_text = "energy blast" + + var/maintain_cost = 10 + var/mob/living/owner + + max_shots = 20 //Determines the capacity of the weapon's power cell. Specifying a cell_type overrides this value. + projectile_type = /obj/item/projectile/psi + + self_recharge = 1 //if set, the weapon will recharge itself + +/obj/item/gun/energy/psigun/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/gun/energy/psigun/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/gun/energy/psigun/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/gun/energy/psigun/use_before(mob/living/M, mob/living/user, target_zone) + if(M.do_psionics_check(max(force, maintain_cost), user)) + to_chat(user, "\The [src] flickers violently out of phase!") + return 1 + . = ..() + +/obj/item/gun/energy/psigun/afterattack(atom/target, mob/living/user, proximity) + if(target.do_psionics_check(max(force, maintain_cost), user)) + to_chat(user, "\The [src] flickers violently out of phase!") + return + . = ..(target, user, proximity) + +/obj/item/gun/energy/psigun/special_check(mob/user) + + if(!istype(user, /mob/living)) + return 0 + if(!user.IsAdvancedToolUser()) + return 0 + + var/mob/living/M = user + if(!safety() && world.time > last_safety_check + 5 MINUTES && !user.skill_check(SKILL_WEAPONS, SKILL_BASIC)) + if(prob(30)) + toggle_safety() + return 1 + if(MUTATION_FERAL in M.mutations) + to_chat(M, "Your fingers are much too large for the trigger guard!") + return 0 + if(M.psi) + var/hilo_rank = M.psi.get_rank(PSI_ENERGISTICS) + if(hilo_rank <= PSI_RANK_LATENT) + to_chat(M, "���, �� �������� ������ ��������! ������ ��� �� ������ ������ ��������� �� ���� ����?") + return 0 + if((MUTATION_CLUMSY in M.mutations) && prob(40)) //Clumsy handling + var/obj/P = consume_next_projectile() + if(P) + if(process_projectile(P, user, user, pick(BP_L_FOOT, BP_R_FOOT))) + handle_post_fire(user, user) + user.visible_message( + "\The [user] shoots \himself in the foot with \the [src]!", + "You shoot yourself in the foot with \the [src]!" + ) + M.unequip_item() + else + handle_click_empty(user) + return 0 + return 1 + +/obj/item/gun/energy/psigun/dropped() + ..() + qdel(src) + +/obj/item/gun/energy/psigun/Process() + if(istype(owner)) + owner.psi.spend_power(maintain_cost) + if(!owner || owner.do_psionics_check(maintain_cost, owner) || loc != owner || (owner.l_hand != src && owner.r_hand != src)) + if(istype(loc,/mob/living)) + var/mob/living/carbon/human/host = loc + if(istype(host)) + for(var/obj/item/organ/external/organ in host.organs) + for(var/obj/item/O in organ.implants) + if(O == src) + organ.implants -= src + host.pinned -= src + host.embedded -= src + host.drop_from_inventory(src) + else + STOP_PROCESSING(SSprocessing, src) + + ..() diff --git a/mods/psionics/code/equipment/psipower_medical.dm b/mods/psionics/code/equipment/psipower_medical.dm new file mode 100644 index 0000000000000..ce815dc9e4a8b --- /dev/null +++ b/mods/psionics/code/equipment/psipower_medical.dm @@ -0,0 +1,266 @@ +//Yeah, that's another bunch of copypasted shit, but i'm not a coder and don't have enough time to do it better +//Also, no cautery, bone gel and fixOvein until someone will not figure out how to make they effects(mending bones and etc) temp + +/obj/item/clothing/gloves/latex/psi + name = "psychokinetic gloves" + + var/maintain_cost = 2 + var/mob/living/owner + color = "#0095ff" + alpha = 110 + +/obj/item/clothing/gloves/latex/psi/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/clothing/gloves/latex/psi/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/clothing/gloves/latex/psi/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/clothing/gloves/latex/psi/dropped() + ..() + qdel(src) + +/obj/item/clothing/gloves/latex/psi/Process() + if(istype(owner)) + owner.psi.spend_power(maintain_cost) + var/mob/living/carbon/human/H = owner + if(!H || H.do_psionics_check(maintain_cost, H) || loc != H || (H.l_hand != src && H.r_hand != src && H.gloves != src)) + if(istype(loc,/mob/living)) + var/mob/living/carbon/human/host = loc + if(istype(host)) + for(var/obj/item/organ/external/organ in host.organs) + for(var/obj/item/O in organ.implants) + if(O == src) + organ.implants -= src + host.pinned -= src + host.embedded -= src + host.drop_from_inventory(src) + else + STOP_PROCESSING(SSprocessing, src) + +//RETRACTOR + +/obj/item/retractor/psi + name = "psychokinetic retractor" + item_state = "retractor" + + var/mob/living/owner + color = "#0095ff" + alpha = 110 + +/obj/item/retractor/psi/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/retractor/psi/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/retractor/psi/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/retractor/psi/attack_self(mob/user) + sound_to(owner, 'sound/effects/psi/power_fail.ogg') + user.drop_from_inventory(src) + +/obj/item/retractor/psi/dropped() + ..() + qdel(src) + +//HEMOSTAT + +/obj/item/hemostat/psi + name = "psychokinetic hemostat" + item_state = "hemostat" + + var/mob/living/owner + color = "#0095ff" + alpha = 110 + +/obj/item/hemostat/psi/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/hemostat/psi/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/hemostat/psi/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/hemostat/psi/attack_self(mob/user) + sound_to(owner, 'sound/effects/psi/power_fail.ogg') + user.drop_from_inventory(src) + +/obj/item/hemostat/psi/dropped() + ..() + qdel(src) + +//DRILL + +/obj/item/surgicaldrill/psi + name = "psychokinetic drill" + item_state = "drill" + + var/mob/living/owner + color = "#0095ff" + alpha = 110 + +/obj/item/surgicaldrill/psi/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/surgicaldrill/psi/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/surgicaldrill/psi/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/surgicaldrill/psi/attack_self(mob/user) + sound_to(owner, 'sound/effects/psi/power_fail.ogg') + user.drop_from_inventory(src) + +/obj/item/surgicaldrill/psi/dropped() + ..() + qdel(src) + +//SCALPEL + +/obj/item/scalpel/psi + name = "psychokinetic scalpel" + item_state = "scalpel" + + var/mob/living/owner + color = "#0095ff" + alpha = 110 + +/obj/item/scalpel/psi/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/scalpel/psi/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/scalpel/psi/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/scalpel/psi/attack_self(mob/user) + sound_to(owner, 'sound/effects/psi/power_fail.ogg') + user.drop_from_inventory(src) + +/obj/item/scalpel/psi/dropped() + ..() + qdel(src) + +//SAW + +/obj/item/circular_saw/psi + name = "psychokinetic saw" + item_state = "saw3" + + var/mob/living/owner + color = "#0095ff" + alpha = 110 + +/obj/item/circular_saw/psi/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/circular_saw/psi/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/circular_saw/psi/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/circular_saw/psi/attack_self(mob/user) + sound_to(owner, 'sound/effects/psi/power_fail.ogg') + user.drop_from_inventory(src) + +/obj/item/circular_saw/psi/dropped() + ..() + qdel(src) + +//BONE SETTER + +/obj/item/bonesetter/psi + name = "psychokinetic bone setter" + item_state = "bone setter" + + var/mob/living/owner + color = "#0095ff" + alpha = 110 + +/obj/item/bonesetter/psi/New(mob/living/_owner) + owner = _owner + if(!istype(owner)) + qdel(src) + return + START_PROCESSING(SSprocessing, src) + ..() + +/obj/item/bonesetter/psi/Destroy() + if(istype(owner) && owner.psi) + LAZYREMOVE(owner.psi.manifested_items, src) + UNSETEMPTY(owner.psi.manifested_items) + STOP_PROCESSING(SSprocessing, src) + . = ..() + +/obj/item/bonesetter/psi/get_storage_cost() + return ITEM_SIZE_NO_CONTAINER + +/obj/item/bonesetter/psi/attack_self(mob/user) + sound_to(owner, 'sound/effects/psi/power_fail.ogg') + user.drop_from_inventory(src) + +/obj/item/bonesetter/psi/dropped() + ..() + qdel(src) diff --git a/mods/psionics/code/equipment/psipower_orbs.dm b/mods/psionics/code/equipment/psipower_orbs.dm new file mode 100644 index 0000000000000..5bd3f3f4be504 --- /dev/null +++ b/mods/psionics/code/equipment/psipower_orbs.dm @@ -0,0 +1,827 @@ +///ELECTRIC ORB/// + +//ATOM related things, that cannot be putted in orb itself +/obj/machinery/vending/use_tool(obj/item/W as obj, mob/living/user as mob) + + if(istype(W, /obj/item/psychic_power/psielectro)) + if(istype(user) && user.psi && !user.psi.suppressed && user.psi.get_rank(PSI_METAKINESIS) >= PSI_RANK_APPRENTICE) + var/option = input(user, "Do something!", "What do you want to do?") in list("Hack", "Electrify") + if (!option) + return + if(option == "Hack") + if(do_after(user, 30)) + to_chat(user, "Вы аккуратно меняете настройки автомата...") + if(!emagged) + emag_act() + if(option == "Electrify") + if(do_after(user, 50)) + to_chat(user, "Вы прикладываете руку к автомату, наполняя его избыточной энергией...") + new /obj/temporary(get_turf(src),3, 'icons/effects/effects.dmi', "electricity_constant") + src.seconds_electrified = 50 + + ..() + +/obj/machinery/smartfridge/use_tool(obj/item/O as obj, mob/living/user as mob) + + if(istype(O, /obj/item/psychic_power/psielectro)) + if(istype(user) && user.psi && !user.psi.suppressed && user.psi.get_rank(PSI_METAKINESIS) >= PSI_RANK_APPRENTICE) + if(do_after(user, 30)) + to_chat(user, "Вы аккуратно меняете настройки автомата...") + if(!emagged) + emag_act() + new /obj/temporary(get_turf(src),3, 'icons/effects/effects.dmi', "electricity_constant") + . = TRUE + + ..() + +/obj/machinery/atm/use_tool(obj/item/I as obj, mob/living/user as mob) + + if(istype(I, /obj/item/psychic_power/psielectro)) + if(istype(user) && user.psi && !user.psi.suppressed && user.psi.get_rank(PSI_METAKINESIS) >= PSI_RANK_OPERANT) + if(do_after(user, 30)) + to_chat(user, "Вы прислоняете руку к терминалу, запуская в него мощный поток тока!") + if(!emagged) + emag_act() + new /obj/temporary(get_turf(src),3, 'icons/effects/effects.dmi', "electricity_constant") + . = TRUE + + ..() + +/mob/living/carbon/electrocute_act(shock_damage, obj/source, siemens_coeff = 1.0, def_zone = null) +//По всем законам логики оно не должно работать, но если ставить тут == вместо != - оно волшебным образом ломается + var/obj/item/psychic_power/psielectro/carried_orb + if(carried_orb != src.get_active_hand()) + if(src.psi && src.psi.get_rank(PSI_METAKINESIS) >= PSI_RANK_MASTER) + if(prob(80)) + src.visible_message("[src] absorbed all pure energy, sent into them!") + src.psi.stamina = min(src.psi.max_stamina, src.psi.stamina + rand(15,20)) + carried_orb.charge += 1 + + var/datum/effect/spark_spread/l = new /datum/effect/spark_spread + l.set_up(5, 1, loc) + l.start() + return 0 + + ..() + +/obj/machinery/psi_monitor/use_tool(obj/item/O as obj, mob/living/user as mob) + + if(istype(O, /obj/item/psychic_power/psielectro)) + if(istype(user) && user.psi && !user.psi.suppressed && user.psi.get_rank(PSI_METAKINESIS) >= PSI_RANK_OPERANT) + if(do_after(user, 30)) + to_chat(user, "Вы прислоняете руку к монитору, пропуская мощный поток тока, ломающий все электронные замки!") + if(!emagged) + emag_act() + new /obj/temporary(get_turf(src),3, 'icons/effects/effects.dmi', "electricity_constant") + . = TRUE + return ..() + +/obj/structure/holoplant/use_tool(obj/item/I, mob/living/user, click_params) + + if(istype(I, /obj/item/psychic_power/psielectro)) + if(istype(user) && user.psi && !user.psi.suppressed && user.psi.get_rank(PSI_METAKINESIS) >= PSI_RANK_APPRENTICE) + if(do_after(user, 30)) + to_chat(user, "Вы аккуратно меняете настройки голо-цветка...") + if(!emagged) + emag_act() + new /obj/temporary(get_turf(src),3, 'icons/effects/effects.dmi', "electricity_constant") + else + rollback() + . = TRUE + + ..() + +//ATOM related stuff ending here + +//ELECTRIC ORB itself +/obj/item/psychic_power/psielectro + name = "orb of energy" + force = 5 + edge = TRUE + maintain_cost = 10 + + item_icons = list( + slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + ) + + icon_state = "electro" + item_state = "electro" + attack_cooldown = 5 + var/charge = 0 + var/cooldown = 0 + +/obj/item/psychic_power/psielectro/attack_self(mob/living/user as mob) + var/el_rank = user.psi.get_rank(PSI_METAKINESIS) + if(el_rank >= PSI_RANK_MASTER) + user.put_in_hands(new /obj/item/psychic_power/electric_whip(user)) + qdel(src) + +/obj/item/psychic_power/psielectro/Process() + if(cooldown > 0) + cooldown-- + + . = ..() + +/obj/item/psychic_power/psielectro/New(mob/living/user) + var/el_rank = user.psi.get_rank(PSI_METAKINESIS) + maintain_cost -= el_rank + + ..() + +/obj/item/psychic_power/psielectro/apply_hit_effect(mob/living/target, mob/living/user, hit_zone) + var/el_rank = user.psi.get_rank(PSI_METAKINESIS) + + if(target.psi && !target.psi.suppressed) + var/el_rank_target = target.psi.get_rank(PSI_METAKINESIS) + if(el_rank_target >= el_rank && prob(50)) + user.visible_message("[target] пропускает ток через себя, возвращая его [user] в виде молнии!") + user.electrocute_act(rand(el_rank_target * 2, el_rank_target * 5), target, 1, target.zone_sel.selecting) + new /obj/temporary(get_turf(user),3, 'icons/effects/effects.dmi', "electricity_constant") + ..() + target.electrocute_act(rand(el_rank * 2, el_rank * 5), user, 1, user.zone_sel.selecting) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "electricity_constant") + ..() + +/obj/item/psychic_power/psielectro/afterattack(atom/A as mob|obj|turf|area, mob/living/user as mob, proximity) + +//TURFS AND ANYTHING ELSE + + if(proximity) + var/datum/effect/spark_spread/sparks = new () + sparks.set_up(3, 0, get_turf(A)) + sparks.start() + + if(!proximity) + return + + var/el_rank = user.psi.get_rank(PSI_METAKINESIS) + +//MOBS + + if(istype(A, /mob/living)) + var/mob/living/target = A + + if(cooldown > 0) + to_chat(user, "Ты не можешь использовать данную способность настолько часто!") + return + if(target == user) + to_chat(user, "Вы не можете зарядить самого себя!") + return + if(user.psi && !user.psi.suppressed && user.psi.get_rank(PSI_METAKINESIS) <= PSI_RANK_OPERANT) + user.visible_message("[user] направляет свору еле-заметных молний в тело [target]!") + if(user.psi && !user.psi.suppressed && user.psi.get_rank(PSI_METAKINESIS) >= PSI_RANK_MASTER) + user.visible_message("[user] поражает [target] мощным электрическим шквалом!") + if(target.psi && !target.psi.suppressed) + var/el_rank_target = target.psi.get_rank(PSI_METAKINESIS) + if(el_rank_target >= el_rank && prob(50)) + user.visible_message("[target] пропускает ток через себя, возвращая его [user] в виде молнии!") + user.electrocute_act(rand(el_rank_target * 2,el_rank_target * 5), target, 1, target.zone_sel.selecting) + cooldown += 1 + new /obj/temporary(get_turf(user),3, 'icons/effects/effects.dmi', "electricity_constant") + return TRUE + target.electrocute_act(rand(el_rank + charge * 2,el_rank + charge * 5), user, 1, user.zone_sel.selecting) + cooldown += 1 + if(charge >= 1) + charge -= 1 + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "electricity_constant") + return TRUE + +//LIGHT + + if(istype(A, /obj/machinery/light)) + + if(A.do_psionics_check(maintain_cost, user)) + to_chat(user, SPAN_WARNING("Your power skates across \the [A.name], but cannot get a grip...")) + return FALSE + + var/obj/machinery/light/lighting = A + if(lighting.on) + if(user.psi && !user.psi.suppressed && user.psi.get_rank(PSI_METAKINESIS) >= PSI_RANK_OPERANT) + if(do_after(user, 30)) + if(proximity) + user.visible_message("[user] прислоняет руку к источнику света, и уже через пару секунд он угасает!") + to_chat(user, "Вы прислоняете руку к рабочей лампе, высасывая из неё всё содержимое!") + else + user.visible_message("[user] протягивает руку к [lighting], и затем, резким взмахом вырывает всю энергию, которая в нём хранилась!") + to_chat(user, "Вы с скрипом разбиваете источник света, вытягивая всё электричество, которое в нём было.") + lighting.broken(TRUE) + user.psi.stamina = min(user.psi.max_stamina, user.psi.stamina + rand(5,10)) + charge += 1 + else + return + +//CELLS + + var/obj/item/cell/charging_cell = A.get_cell() + if(istype(charging_cell)) + + if(A.do_psionics_check(maintain_cost, user)) + to_chat(user, SPAN_WARNING("Your power skates across \the [A.name], but cannot get a grip...")) + return FALSE + + if(proximity) + user.visible_message("[user] прикладывает руку к [charging_cell], наполняя её энергией!") + else + user.visible_message("[user] направляет руку к [charging_cell], посылая в неё поток молний!") + charging_cell.give(rand(el_rank * 3,el_rank * 6)) + new /obj/temporary(get_turf(A),3, 'icons/effects/effects.dmi', "electricity_constant") + return TRUE + +//AIRLOCKS + + if(istype(A,/obj/machinery/door/airlock)) + var/obj/machinery/door/airlock/D = A + var/option = input(user, "Do something!", "What do you want to do?") in list("Open/Close", "Bolt/Unbolt", "Electrify") + if (!option) + return + + if(A.do_psionics_check(maintain_cost, user)) + to_chat(user, SPAN_WARNING("Your power skates across \the [A.name], but cannot get a grip...")) + return FALSE + + if(option == "Open/Close") + if(user.psi && !user.psi.suppressed && user.psi.get_rank(PSI_METAKINESIS) <= PSI_RANK_OPERANT) + if(prob(30)) + to_chat("Вы несколько раз щёлкаете пальцами у [D.name], но ничего не происходит!") + user.visible_message("[user] несколько раз щёлкает пальцами у [D.name] в непонимании.") + return + if(D && AIRLOCK_OPEN) + D.open() + user.visible_message("[user] щёлкает пальцами и [D.name] открывается.") + new /obj/temporary(get_turf(A),3, 'icons/effects/effects.dmi', "electricity_constant") + playsound(D.loc, "sparks", 50, 1) + if(D && AIRLOCK_CLOSED) + D.close() + user.visible_message("[user] щёлкает пальцами и [D.name] закрывается.") + new /obj/temporary(get_turf(A),3, 'icons/effects/effects.dmi', "electricity_constant") + playsound(D.loc, "sparks", 50, 1) + + if(option == "Electrify") + D.electrify(50, 0) + if(proximity) + user.visible_message("[user] прикладывает руку к панели [D.name], пропуская через неё поток тока.") + else + user.visible_message("[user] посылает в [D.name] мощный поток электричества.") + new /obj/temporary(get_turf(A),3, 'icons/effects/effects.dmi', "electricity_constant") + playsound(D.loc, "sparks", 50, 1) + + if(option == "Bolt/Unbolt") + if(user.psi && !user.psi.suppressed && user.psi.get_rank(PSI_METAKINESIS) >= PSI_RANK_MASTER) + D.toggle_lock() + if(proximity) + user.visible_message("[user] прислоняет обе руки к [D.name], приводя болты в движение.") + else + user.visible_message("[user] сжимает руку в кулак, приводя болты [D.name] в движение.") + new /obj/temporary(get_turf(A),3, 'icons/effects/effects.dmi', "electricity_constant") + playsound(D.loc, "sparks", 50, 1) + else + user.visible_message("[user] прислоняет обе руки к [D.name], но ничего не происходит.") + to_chat("Вы прислоняете свои руки к [D.name], пытаясь пропустить поток через его внутренние механизмы, но ничего не получается!") + return + + ..() + +///FIRE ORB/// + +//ATOM related things, that cannot be putted in orb itself + +/obj/item/psychic_power/psifire/IsFlameSource() + return TRUE + +/obj/item/psychic_power/psifire/IsWelder() + return TRUE + +/mob/living/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume) +//По всем законам логики оно не должно работать, но если ставить тут == вместо != - оно волшебным образом ломается + var/obj/item/psychic_power/psifire/carried_orb + if(carried_orb != src.get_active_hand()) + if(src.psi && src.psi.get_rank(PSI_METAKINESIS) >= PSI_RANK_OPERANT) + return + ..() + +//ATOM related stuff ending here + +//FIRE ORB itself +/obj/item/psychic_power/psifire + name = "orb of eternal flame" + force = 5 + edge = TRUE + maintain_cost = 10 + + item_icons = list( + slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + ) + + icon_state = "pyro" + item_state = "pyro" + attack_cooldown = 5 + + var/combat_mode = TRUE + var/turf/previousturf = null + + var/attack_type = "FIRE WALL" + + var/range = 2 + var/flame_power = 25 + var/flame_color = COLOR_RED + +/obj/item/psychic_power/psifire/New(mob/living/user) + var/fire_rank = user.psi.get_rank(PSI_METAKINESIS) + + maintain_cost -= fire_rank + flame_power += fire_rank + range += fire_rank + + if(user.psi && !user.psi.suppressed && user.psi.get_rank(PSI_METAKINESIS) >= PSI_RANK_MASTER) + flame_color = "#33ccc9" + flame_power += 5 + + ..() + +/obj/item/psychic_power/psifire/attack_self(mob/living/user as mob) + var/pyro_rank = user.psi.get_rank(PSI_METAKINESIS) + if(combat_mode) + var/list/options = list( + "FIRE WALL" = image('icons/screen/psi.dmi', "FIRE PUNCH"), + "FIRE JUMP" = image('icons/screen/psi.dmi', "FIRE JUMP") + ) + var/chosen_option = show_radial_menu(user, user, options, radius = 25, require_near = TRUE) + if (!chosen_option) + return 0 + if(user.psi.suppressed) + return 0 + if(!combat_mode) + return 0 + switch(chosen_option) + if("FIRE WALL") + attack_type = "FIRE WALL" + to_chat(user, "Теперь вы будете стрелять огнём из рук!") + return 1 + if("FIRE JUMP") + if(pyro_rank < PSI_RANK_OPERANT) + to_chat(user, "Вы ещё недостаточно обучены для подобного приёма!") + return 0 + attack_type = "FIRE JUMP" + to_chat(user, "Теперь вы будете использовать огонь в качестве средства передвижения!") + return 1 + +/obj/item/psychic_power/psifire/AltClick(mob/living/carbon/user) + var/list/options = list( + "HELP" = image('icons/screen/psi.dmi', "HELP"), + "HARM" = image('icons/screen/psi.dmi', "HARM") + ) + + var/chosen_option = show_radial_menu(user, user, options, radius = 25, require_near = TRUE) + if (!chosen_option) + return 0 + if(user.psi.suppressed) + return 0 + switch(chosen_option) + if("HARM") + combat_mode = TRUE + to_chat(user, "Вы приготовились к бою. Теперь, ваше касание будет поджигать людей.") + if("HELP") + combat_mode = FALSE + to_chat(user, "Вы вновь можете безопасно прикасаться к вещам вокруг.") + +/obj/item/psychic_power/psifire/apply_hit_effect(mob/living/target, mob/living/user, hit_zone) + if(combat_mode) + user.visible_message("[user] прислоняет руку к [target], зажигая его как спичку!") + target.fire_act(exposed_temperature = 300, exposed_volume = 250) + ..() + +/obj/item/psychic_power/psifire/afterattack(atom/A as mob|obj|turf|area, mob/living/user as mob, proximity) +//TURFS + + if(istype(A, /turf/) && !proximity && combat_mode) + if(attack_type == "FIRE WALL") + var/turf/target_turf = get_turf(A) + if(target_turf) + var/turflist = getline(user, target_turf) + flame_turf(turflist) + user.visible_message("[user] взмахивает рукой, создавая стену из огня!") + if(attack_type == "FIRE JUMP") + if(get_dist(user, A) > range) + return 0 + var/turf/target_turf = get_step(get_turf(A), pick(GLOB.alldirs)) + var/list/line_list = getline(user, target_turf) + for(var/i = 1 to length(line_list)) + var/turf/T = line_list[i] + var/obj/temp_visual/decoy/D = new /obj/temp_visual/decoy(T, user.dir, user) + D.alpha = min(150 + i*15, 255) + animate(D, alpha = 0, time = 2 + i*2) + user.forceMove(target_turf) + user.visible_message("[user] делает рывок, используя свои ноги как двигатели!") + flame_turf(line_list) + else if(!proximity) + return + +//EATING FIRE + + if(istype(A, /obj/turf_fire)) + var/obj/turf_fire/fire = A + if(fire.fire_power >= 20) + if(user.psi && !user.psi.suppressed && user.psi.get_rank(PSI_METAKINESIS) >= PSI_RANK_OPERANT) + if(do_after(user, 30)) + user.visible_message("[user] протягивает руку к [fire], постепенно поглащая его!") + to_chat(user, "Вы подводите руку к [fire], вытягивая всю энергии, что в нём скопилась. Огонь приятно обвивает вашу руку.") + qdel(fire) + user.psi.stamina = min(user.psi.max_stamina, user.psi.stamina + rand(5,10)) + else + return + +//OTHER STUFF + + var/obj/OBJ = A + if(istype(OBJ)) + if(istype(A, /obj/item/clothing/mask/smokable/cigarette)) + var/obj/item/clothing/mask/smokable/cigarette/S = A + S.light("[user] щёлкает пальцами как зажигалкой, подпаливая [S.name].") + playsound(S.loc, "light_bic", 100, 1, -4) + else + user.visible_message("[user] прислоняет руку к [OBJ]. Можно заметить, как от места соприкосновения идёт пар.") + OBJ.HandleObjectHeating(src, user, 700) + +//MOBS + + if(istype(A, /mob/living) && combat_mode) + var/mob/living/target = A + + user.visible_message("[user] прислоняет руку к [target], зажигая его как спичку!") + target.fire_act(exposed_temperature = 300, exposed_volume = 250) + else if(istype(A, /mob/living)) + var/mob/living/target = A + if(istype(target.wear_mask, /obj/item/clothing/mask/smokable/cigarette) && user.zone_sel.selecting == BP_MOUTH) + var/obj/item/clothing/mask/smokable/cigarette/cig = target.wear_mask + if(target == user) + cig.use_tool(src, user) + else + cig.light("[user] щёлкает пальцами как зажигалкой, подпаливая [cig.name] во рту [target].") + +/obj/item/psychic_power/psifire/proc/flame_turf(list/turflist) + var/length = LAZYLEN(turflist) + if(length < 1) + return + turflist.len = min(length, range) + + playsound(src, pick('sound/weapons/guns/flamethrower1.ogg','sound/weapons/guns/flamethrower2.ogg','sound/weapons/guns/flamethrower3.ogg' ), 50, TRUE, -3) + + for(var/turf/T in turflist) + if(T.density || istype(T, /turf/space)) + break + if(!previousturf && length(turflist)>1) + previousturf = get_turf(src) + continue //so we don't burn the tile we be standin on + if(previousturf && (!T.CanPass(null, previousturf, 0,0) || !previousturf.CanPass(null, T, 0,0))) + break + previousturf = T + + //Consume part of our fuel to create a fire spot + var/obj/turf_fire/TF = T.IgniteTurf(flame_power, flame_color) + if(istype(TF)) + TF.interact_with_atmos = FALSE + T.hotspot_expose((flame_power * 3) + 300, 50) + sleep(1) + previousturf = null + +///ICE ORB/// + +//ATOM related things, that cannot be putted in orb itself +/obj/item/projectile/bullet/pellet/ice + damage = 20 + pellets = 4 + range_step = 1 + spread_step = 50 + armor_penetration = 20 + icon = 'icons/psi_fd/projectiles.dmi' + icon_state = "ice_spikes" + color = "#9ee0dd" + +/obj/structure/girder/ice_wall + icon_state = "ice wall" + anchored = TRUE + density = TRUE + layer = ABOVE_HUMAN_LAYER + w_class = ITEM_SIZE_NO_CONTAINER + health_max = 200 + icon = 'icons/psi_fd/freeze.dmi' + icon_state = "ice_cube" + var/timer = 30 + +/obj/structure/girder/ice_wall/New() + . = ..() + run_timer() + +/obj/structure/girder/ice_wall/use_tool(obj/item/W, mob/user) + if (user.a_intent == I_HURT) + ..() + return + + if(istype(W, /obj/item/gun/energy/plasmacutter) || istype(W, /obj/item/psychic_power/psiblade/master/grand/paramount)) + if(istype(W, /obj/item/gun/energy/plasmacutter)) + var/obj/item/gun/energy/plasmacutter/cutter = W + if(!cutter.slice(user)) + return + playsound(src.loc, 'sound/items/Welder.ogg', 100, 1) + to_chat(user, "Now slicing apart the wall...") + if(do_after(user,reinf_material ? 40: 20,src)) + to_chat(user, "You slice apart the wall!") + if(reinf_material) + reinf_material.place_dismantled_product(get_turf(src)) + dismantle() + return + + if(istype(W, /obj/item/pickaxe/diamonddrill)) + playsound(src.loc, 'sound/weapons/Genhit.ogg', 100, 1) + if(do_after(user,reinf_material ? 60 : 40,src)) + to_chat(user, "You drill through the wall!") + if(reinf_material) + reinf_material.place_dismantled_product(get_turf(src)) + dismantle() + return + +/obj/structure/girder/ice_wall/dismantle() + qdel(src) + +/obj/structure/girder/ice_wall/proc/run_timer() + set waitfor = 0 + var/T = timer + while(T > 0) + sleep(1 SECOND) + T-- + src.visible_message(SPAN_WARNING("[src] тает!")) + src.alpha = 200 + sleep(2) + src.alpha = 150 + sleep(2) + src.alpha = 100 + sleep(2) + src.alpha = 50 + sleep(2) + src.alpha = 20 + sleep(2) + src.alpha = 10 + qdel(src) + +//ATOM related stuff ending here + +//ICE ORB itself +/obj/item/psychic_power/psiice + name = "orb of eternal cold" + force = 5 + edge = TRUE + maintain_cost = 10 + + item_icons = list( + slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + ) + + icon_state = "cryo" + item_state = "cryo" + attack_cooldown = 5 + var/combat_mode = TRUE + var/structure_attack = "ICE WALL" + var/range = 2 + var/cooldown = 0 + var/turf/previousturf = null + var/inner_radius = -1 //for all your ring spell needs + var/outer_radius = 2 + +/obj/item/psychic_power/psiice/New(mob/living/user) + var/cryo_rank = user.psi.get_rank(PSI_METAKINESIS) + + maintain_cost -= cryo_rank + range += cryo_rank + + ..() + +/obj/item/psychic_power/psiice/Process() + if(cooldown > 0) + cooldown-- + + . = ..() + +/obj/item/psychic_power/psiice/attack_self(mob/living/user as mob) + var/cryo_rank = user.psi.get_rank(PSI_METAKINESIS) + if(combat_mode) + var/list/options = list( + "ICE WALL" = image('icons/screen/psi.dmi', "WALL"), + "ICE SPIKES" = image('icons/screen/psi.dmi', "SPIKES"), + "ICE FISTS" = image('icons/screen/psi.dmi', "FISTS"), + "ICE SWORD" = image('icons/screen/psi.dmi', "SWORD") + ) + var/chosen_option = show_radial_menu(user, user, options, radius = 25, require_near = TRUE) + if (!chosen_option) + return 0 + if(user.psi.suppressed) + return 0 + if(!combat_mode) + return 0 + switch(chosen_option) + if("ICE WALL") + structure_attack = "ICE WALL" + to_chat(user, "Теперь вы будете возводить ледяные стены при использовании дальней атаки!") + return 1 + if("ICE SPIKES") + if(cryo_rank < PSI_RANK_OPERANT) + to_chat(user, "Вы ещё недостаточно обучены для подобного приёма!") + return 0 + structure_attack = "ICE SPIKES" + to_chat(user, "Теперь вы будете метать ледяные иглы при использовании дальней атаки!") + return 1 + if("ICE FISTS") + user.put_in_hands(new /obj/item/cryokinesis/fists(user)) + qdel(src) + return 1 + if("ICE SWORD") + user.put_in_hands(new /obj/item/cryokinesis/rapier(user)) + qdel(src) + return 1 + +/obj/item/psychic_power/psiice/AltClick(mob/living/user as mob) + var/list/options = list( + "HELP" = image('icons/screen/psi.dmi', "HELP"), + "HARM" = image('icons/screen/psi.dmi', "HARM") + ) + + var/chosen_option = show_radial_menu(user, user, options, radius = 25, require_near = TRUE) + if (!chosen_option) + return 0 + if(user.psi.suppressed) + return 0 + switch(chosen_option) + if("HARM") + combat_mode = TRUE + to_chat(user, "Вы приготовились к бою. Теперь, ваше касание будет замораживать людей, вы сможете создавать ледяные стены и прочие приспособления.") + if("HELP") + combat_mode = FALSE + to_chat(user, "Вы вновь можете безопасно прикасаться к вещам вокруг.") + +/obj/item/psychic_power/psiice/apply_hit_effect(mob/living/target, mob/living/user, hit_zone) + var/cryo_rank = user.psi.get_rank(PSI_METAKINESIS) + + if(target.do_psionics_check(maintain_cost, user)) + to_chat(user, SPAN_WARNING("Your power skates across \the [target.name], but cannot get a grip...")) + return FALSE + cooldown += 2 + + if(target == user && cryo_rank >= PSI_RANK_MASTER) + var/list/targets = list() + for(var/turf/point in oview_or_orange(outer_radius, user, "range")) + if(!(point in oview_or_orange(inner_radius, user, "range"))) + if(point.density) + continue + if(istype(point, /turf/space)) + continue + targets += point + + if(!targets.len) + return FALSE + + var/turf/user_turf = get_turf(user) + for(var/turf/T in targets) + var/obj/structure/girder/ice_wall/IW = new(T) + if(istype(IW)) + IW.pixel_x = (user_turf.x - T.x) * world.icon_size + IW.pixel_y = (user_turf.y - T.y) * world.icon_size + animate(IW, pixel_x = 0, pixel_y = 0, time = 3, easing = EASE_OUT) + + ..() + + new /obj/structure/girder/ice_wall(get_turf(target)) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "extinguish") + target.Stun(3*cryo_rank) + user.visible_message("[user] прикасается к телу [target] побледневшей рукой, обращая его в лёд!") + target.bodytemperature = 500 / cryo_rank + ..() + +/obj/item/psychic_power/psiice/afterattack(atom/A as mob|obj|turf|area, mob/living/user as mob, proximity) + var/cryo_rank = user.psi.get_rank(PSI_METAKINESIS) + + if(cooldown > 0) + to_chat(user, "Ты не можешь использовать данную способность настолько часто!") + return + + if(!proximity && cryo_rank >= PSI_RANK_OPERANT && structure_attack == "ICE SPIKES") + var/obj/item/projectile/pew + var/pew_sound + cooldown += 2 + user.visible_message("[user] запускает вперёд град ледяных пик!") + pew = new /obj/item/projectile/bullet/pellet/ice(get_turf(user)) + pew.name = "stack of ice spikes" + pew_sound = 'sound/weapons/guns/ricochet4.ogg' + if(istype(pew)) + playsound(pew.loc, pew_sound, 25, 1) + pew.original = A + pew.current = A + pew.starting = get_turf(user) + pew.shot_from = user + pew.launch(A, user.zone_sel.selecting, (A.x-user.x), (A.y-user.y)) + +//TURFS + + if(istype(A, /turf/)) + var/turf/target = A + if(combat_mode) + if(!proximity && cryo_rank >= PSI_RANK_MASTER && structure_attack == "ICE WALL") + if(do_after(user, 10)) + cooldown += 2 + user.visible_message("[user] возводит стену из льда!") + var/turf/target_turf = get_turf(target) + if(target_turf) + var/turflist = getline(user, target_turf) + ice_turf(turflist) + if(!proximity) + return + if(do_after(user, 10)) + cooldown += 2 + user.visible_message("[user] возводит стену из льда!") + new /obj/temporary(target,3, 'icons/effects/effects.dmi', "blueshatter") + sleep(1) + new /obj/structure/girder/ice_wall(get_turf(target)) + return TRUE + else + if(!proximity) + return + if(istype(A, /turf/simulated/)) + var/turf/simulated/sim = target + cooldown += 2 + user.visible_message("[user] покрывает [sim] ледяной коркой!") + sim.wet_floor(5 * cryo_rank) + new /obj/temporary(sim,3, 'icons/effects/effects.dmi', "blueshatter") + return TRUE + + if(!proximity) + return + +//MOBS + + if(istype(A, /mob/living) && combat_mode == TRUE) + if(A.do_psionics_check(maintain_cost, user)) + to_chat(user, SPAN_WARNING("Your power skates across \the [A.name], but cannot get a grip...")) + return FALSE + cooldown += 2 + var/mob/living/target = A + + if(target == user && cryo_rank >= PSI_RANK_MASTER) + var/list/targets = list() + + for(var/turf/point in oview_or_orange(outer_radius, user, "range")) + if(!(point in oview_or_orange(inner_radius, user, "range"))) + if(point.density) + continue + if(istype(point, /turf/space)) + continue + targets += point + + if(!targets.len) + return FALSE + + var/turf/user_turf = get_turf(user) + for(var/turf/T in targets) + var/obj/structure/girder/ice_wall/IW = new(T) + if(istype(IW)) + IW.pixel_x = (user_turf.x - T.x) * world.icon_size + IW.pixel_y = (user_turf.y - T.y) * world.icon_size + animate(IW, pixel_x = 0, pixel_y = 0, time = 3, easing = EASE_OUT) + + return TRUE + + new /obj/structure/girder/ice_wall(get_turf(target)) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "extinguish") + target.Stun(3*cryo_rank) + user.visible_message("[user] прикасается к телу [target] побледневшей рукой, обращая его в лёд!") + target.bodytemperature = 500 / cryo_rank + return TRUE + +//ITEMS + + if(istype(A,/obj/item)) + var/obj/item/S = A + S.temperature = T0C - 20 + +/obj/item/psychic_power/psiice/proc/ice_turf(list/turflist) + var/length = LAZYLEN(turflist) + if(length < 1) + return + turflist.len = min(length, range) + + playsound(src, pick('sound/weapons/guns/flamethrower1.ogg','sound/weapons/guns/flamethrower2.ogg','sound/weapons/guns/flamethrower3.ogg' ), 50, TRUE, -3) + + for(var/turf/T in turflist) + if(T.density || istype(T, /turf/space)) + break + if(!previousturf && length(turflist)>1) + previousturf = get_turf(src) + continue //so we don't burn the tile we be standin on + if(previousturf && (!T.CanPass(null, previousturf, 0,0) || !previousturf.CanPass(null, T, 0,0))) + break + previousturf = T + + //Consume part of our fuel to create a fire spot + new /obj/structure/girder/ice_wall(get_turf(T)) + sleep(1) + previousturf = null diff --git a/mods/psionics/code/equipment/psipower_tinker.dm b/mods/psionics/code/equipment/psipower_tinker.dm new file mode 100644 index 0000000000000..9b78389f40b27 --- /dev/null +++ b/mods/psionics/code/equipment/psipower_tinker.dm @@ -0,0 +1,39 @@ +/obj/item/psychic_power/tinker + name = "psychokinetic crowbar" + icon_state = "tinker" + force = 1 + var/emulating = "Crowbar" + +/obj/item/psychic_power/tinker/IsCrowbar() + return emulating == "Crowbar" + +/obj/item/psychic_power/tinker/IsWrench() + return emulating == "Wrench" + +/obj/item/psychic_power/tinker/IsScrewdriver() + return emulating == "Screwdriver" + +/obj/item/psychic_power/tinker/IsWirecutter() + return emulating == "Wirecutters" + +/obj/item/psychic_power/tinker/attack_self() + + if(!owner || loc != owner) + return + + var/choice = input("Select a tool to emulate.","Power") as null|anything in list("Crowbar","Wrench","Screwdriver","Wirecutters","Dismiss") + if(!choice) + return + + if(!owner || loc != owner) + return + + if(choice == "Dismiss") + sound_to(owner, 'sound/effects/psi/power_fail.ogg') + owner.drop_from_inventory(src) + return + + emulating = choice + name = "psychokinetic [lowertext(emulating)]" + to_chat(owner, SPAN_NOTICE("You begin emulating \a [lowertext(emulating)].")) + sound_to(owner, 'sound/effects/psi/power_fabrication.ogg') diff --git a/mods/psionics/code/equipment/psipower_tk.dm b/mods/psionics/code/equipment/psipower_tk.dm new file mode 100644 index 0000000000000..d0f5cda6f0dd2 --- /dev/null +++ b/mods/psionics/code/equipment/psipower_tk.dm @@ -0,0 +1,105 @@ +/obj/item/psychic_power/telekinesis + name = "telekinetic grip" + maintain_cost = 6 + icon_state = "telekinesis" + var/atom/movable/focus + +/obj/item/psychic_power/telekinesis/Destroy() + focus = null + . = ..() + +/obj/item/psychic_power/telekinesis/Process() + if(!focus || !istype(focus.loc, /turf) || get_dist(get_turf(focus), get_turf(owner)) > owner.psi.get_rank(PSI_PSYCHOKINESIS)) + owner.drop_from_inventory(src) + return + . = ..() + +/obj/item/psychic_power/telekinesis/proc/set_focus(atom/movable/_focus) + + if(!_focus.simulated || !istype(_focus.loc, /turf)) + return FALSE + + var/check_paramount + if(ismob(_focus)) + var/mob/victim = _focus + check_paramount = (victim.mob_size >= MOB_MEDIUM) + else if(isobj(_focus)) + var/obj/thing = _focus + check_paramount = (thing.w_class >= 5) + else + return FALSE + + if(_focus.anchored || (check_paramount && owner.psi.get_rank(PSI_PSYCHOKINESIS) < PSI_RANK_GRANDMASTER)) + focus = _focus + . = attack_self(owner) + if(!.) + to_chat(owner, SPAN_WARNING("\The [_focus] is too hefty for you to get a mind-grip on.")) + return FALSE + + focus = _focus + ClearOverlays() + var/image/I = image(icon = focus.icon, icon_state = focus.icon_state) + I.color = focus.color + I.CopyOverlays(focus) + AddOverlays(I) + return TRUE + +/obj/item/psychic_power/telekinesis/attack_self(mob/user) + user.visible_message(SPAN_NOTICE("\The [user] makes a strange gesture.")) + sparkle() + return focus.do_simple_ranged_interaction(user) + +/obj/item/psychic_power/telekinesis/afterattack(atom/target, mob/living/user, proximity) + + if(!target || !user || (isobj(target) && !isturf(target.loc)) || !user.psi || !user.psi.can_use() || !user.psi.spend_power(8)) + return + + user.setClickCooldown(DEFAULT_ATTACK_COOLDOWN * 2) + user.psi.set_cooldown(8) + + var/user_psi_leech = user.do_psionics_check(5, user) + if(user_psi_leech) + to_chat(user, SPAN_WARNING("You reach for \the [target] but your telekinetic power is leeched away by \the [user_psi_leech]...")) + return + + if(target.do_psionics_check(5, user)) + to_chat(user, SPAN_WARNING("Your telekinetic power skates over \the [target] but cannot get a grip...")) + return + + var/distance = get_dist(get_turf(user), get_turf(focus ? focus : target)) + if(distance > user.psi.get_rank(PSI_PSYCHOKINESIS)) + to_chat(user, SPAN_WARNING("Your telekinetic power won't reach that far.")) + return FALSE + + if(target == focus) + attack_self(user) + else + user.visible_message(SPAN_DANGER("\The [user] gestures sharply!")) + sparkle() + if(!istype(target, /turf) && istype(focus,/obj/item) && target.Adjacent(focus)) + var/obj/item/I = focus + var/resolved = I.resolve_attackby(target, user) + if(!resolved && target && I) + I.afterattack(target,user,1) // for splashing with beakers + else + if(!focus.anchored) + var/user_rank = owner.psi.get_rank(PSI_PSYCHOKINESIS) + focus.throw_at(target, user_rank*2, user_rank*3, owner) + sleep(1) + sparkle() + owner.drop_from_inventory(src) + +/obj/item/psychic_power/telekinesis/proc/sparkle() + set waitfor = 0 + if(focus) + var/obj/overlay/O = new /obj/overlay(get_turf(focus)) + O.name = "sparkles" + O.anchored = TRUE + O.density = FALSE + O.layer = FLY_LAYER + O.set_dir(pick(GLOB.cardinal)) + O.icon = 'icons/effects/effects.dmi' + O.icon_state = "nothing" + flick("empdisable",O) + sleep(5) + qdel(O) diff --git a/mods/psionics/code/events/_psi.dm b/mods/psionics/code/events/_psi.dm new file mode 100644 index 0000000000000..14fa2cef20cea --- /dev/null +++ b/mods/psionics/code/events/_psi.dm @@ -0,0 +1,24 @@ +/datum/event/psi + startWhen = 30 + endWhen = 120 + +/datum/event/psi/announce() + priority_announcement.Announce( \ + "A localized disruption within the neighboring psionic continua has been detected. All psi-operant crewmembers \ + are advised to cease any sensitive activities and report to medical personnel in case of damage.", \ + "Cuchulain Sensor Array Automated Message" \ + ) + +/datum/event/psi/end() + priority_announcement.Announce( \ + "The psi-disturbance has ended and baseline normality has been re-asserted. \ + Anything you still can't cope with is therefore your own problem.", \ + "Cuchulain Sensor Array Automated Message" \ + ) + +/datum/event/psi/tick() + for(var/thing in SSpsi.processing) + apply_psi_effect(thing) + +/datum/event/psi/proc/apply_psi_effect(datum/psi_complexus/psi) + return diff --git a/mods/psionics/code/events/mini_spasm.dm b/mods/psionics/code/events/mini_spasm.dm new file mode 100644 index 0000000000000..ab3270cdaee95 --- /dev/null +++ b/mods/psionics/code/events/mini_spasm.dm @@ -0,0 +1,67 @@ +/datum/event/minispasm + startWhen = 60 + endWhen = 90 + var/static/list/psi_operancy_messages = list( + "There's something in your skull!", + "Something is eating your thoughts!", + "You can feel your brain being rewritten!", + "Something is crawling over your frontal lobe!", + "THE SIGNAL THE SIGNAL THE SIGNAL THE SIGNAL THE" + ) + +/datum/event/minispasm/announce() + priority_announcement.Announce( \ + "PRIORITY ALERT: SIGMA-[rand(50,80)] PSIONIC SIGNAL LOCAL TRAMISSION DETECTED (97% MATCH, NONVARIANT) \ + (SIGNAL SOURCE TRIANGULATED ADJACENT LOCAL SITE): All personnel are advised to avoid \ + exposure to active audio transmission equipment including radio headsets and intercoms \ + for the duration of the signal broadcast.", \ + "Cuchulain Sensor Array Automated Message" \ + ) + +/datum/event/minispasm/start() + var/list/victims = list() + for(var/obj/item/device/radio/radio in GLOB.listening_objects) + if(radio.on) + for(var/mob/living/victim in range(radio.canhear_range, radio.loc)) + if(isnull(victims[victim]) && victim.stat == CONSCIOUS && !victim.ear_deaf) + victims[victim] = radio + for(var/thing in victims) + var/mob/living/victim = thing + var/obj/item/device/radio/source = victims[victim] + do_spasm(victim, source) + +/datum/event/minispasm/proc/do_spasm(mob/living/victim, obj/item/device/radio/source) + set waitfor = 0 + + if(iscarbon(victim) && !victim.isSynthetic()) + var/list/disabilities = list(NEARSIGHTED, EPILEPSY, NERVOUS) + for(var/disability in disabilities) + if(victim.disabilities & disability) + disabilities -= disability + if(length(disabilities)) + victim.disabilities |= pick(disabilities) + + if(victim.psi) + to_chat(victim, SPAN_DANGER("A hauntingly familiar sound hisses from [icon2html(source, victim)] \the [source], and your vision flickers!")) + victim.psi.backblast(rand(5,15)) + victim.Paralyse(5) + victim.make_jittery(100) + else + to_chat(victim, SPAN_DANGER("An indescribable, brain-tearing sound hisses from [icon2html(source, victim)] \the [source], and you collapse in a seizure!")) + victim.seizure() + var/new_latencies = rand(2,4) + var/list/faculties = list(PSI_COERCION, PSI_REDACTION, PSI_ENERGISTICS, PSI_PSYCHOKINESIS) + for(var/i = 1 to new_latencies) + to_chat(victim, SPAN_DANGER(FONT_LARGE(pick(psi_operancy_messages)))) + victim.adjustBrainLoss(rand(10,20)) + victim.set_psi_rank(pick_n_take(faculties), 1) + sleep(30) + victim.psi.update() + sleep(45) + victim.psi.check_latency_trigger(100, "a psionic scream", redactive = TRUE) + +/datum/event/minispasm/end() + priority_announcement.Announce( \ + "PRIORITY ALERT: SIGNAL BROADCAST HAS CEASED. Personnel are cleared to resume use of non-hardened radio transmission equipment. Have a nice day.", \ + "Cuchulain Sensor Array Automated Message" \ + ) diff --git a/mods/psionics/code/events/psi_balm.dm b/mods/psionics/code/events/psi_balm.dm new file mode 100644 index 0000000000000..6859e9203e61a --- /dev/null +++ b/mods/psionics/code/events/psi_balm.dm @@ -0,0 +1,20 @@ +/datum/event/psi/balm + var/static/list/balm_messages = list( + "A soothing balm washes over your psyche.", + "For a moment, you can hear a distant, familiar voice singing a quiet lullaby.", + "A sense of peace and comfort falls over you like a warm blanket." + ) + +/datum/event/psi/balm/apply_psi_effect(datum/psi_complexus/psi) + var/soothed + if(psi.stun > 1) + psi.stun-- + soothed = TRUE + else if(psi.stamina < psi.max_stamina) + psi.stamina = min(psi.max_stamina, psi.stamina + rand(1,3)) + soothed = TRUE + else if(psi.owner.getBrainLoss() > 0) + psi.owner.adjustBrainLoss(-1) + soothed = TRUE + if(soothed && prob(10)) + to_chat(psi.owner, SPAN_NOTICE("[pick(balm_messages)]")) diff --git a/mods/psionics/code/events/psi_wail.dm b/mods/psionics/code/events/psi_wail.dm new file mode 100644 index 0000000000000..59f2691c386ab --- /dev/null +++ b/mods/psionics/code/events/psi_wail.dm @@ -0,0 +1,17 @@ +/datum/event/psi/wail + var/static/list/whine_messages = list( + "A nerve-tearing psychic whine intrudes on your thoughts.", + "A horrible, distracting humming sound breaks your train of thought.", + "Your head aches as a psychic wail intrudes on your psyche." + ) + +/datum/event/psi/wail/apply_psi_effect(datum/psi_complexus/psi) + var/annoyed + if(prob(1)) + psi.stunned(1) + annoyed = TRUE + else if(psi.stamina > 0) + psi.stamina = max(0, psi.stamina - rand(1,3)) + annoyed = TRUE + if(annoyed && prob(1)) + to_chat(psi.owner, SPAN_NOTICE("[pick(whine_messages)]")) diff --git a/mods/psionics/code/faculties/_faculty.dm b/mods/psionics/code/faculties/_faculty.dm new file mode 100644 index 0000000000000..5df834831bae5 --- /dev/null +++ b/mods/psionics/code/faculties/_faculty.dm @@ -0,0 +1,11 @@ +/singleton/psionic_faculty + var/id + var/name + var/associated_intent + var/list/armour_types = list() + var/list/powers = list() + +/singleton/psionic_faculty/New() + ..() + for(var/atype in armour_types) + SSpsi.armour_faculty_by_type[atype] = id diff --git a/mods/psionics/code/faculties/_power.dm b/mods/psionics/code/faculties/_power.dm new file mode 100644 index 0000000000000..0143ea04a4dfd --- /dev/null +++ b/mods/psionics/code/faculties/_power.dm @@ -0,0 +1,50 @@ +/singleton/psionic_power + abstract_type = /singleton/psionic_power + var/name // Name. If null, psipower won't be generated on roundstart. + var/faculty // Associated psi faculty. + var/min_rank // Minimum psi rank to use this power. + var/cost // Base psi stamina cost for using this power. + var/cooldown // Deciseconds cooldown after using this power. + var/admin_log = TRUE // Whether or not using this power prints an admin attack log. + var/use_ranged // This power functions from a distance. + var/use_melee // This power functions at melee range. + var/use_grab // This power has a variant invoked via grab. + var/use_manifest // This power manifests an item in the user's hands. + var/use_description // A short description of how to use this power, shown via assay. + // A sound effect to play when the power is used. + var/use_sound = 'sound/effects/psi/power_used.ogg' + +/singleton/psionic_power/proc/invoke(mob/living/user, atom/target) + + if(!user.psi) + return FALSE + + if(!user.psi.ranks_stat[faculty]) + return FALSE + + if(faculty && min_rank) + var/user_rank = user.psi.get_rank(faculty) + if(user_rank < min_rank) + return FALSE + + if(cost && !user.psi.spend_power(cost)) + return FALSE + + var/user_psi_leech = user.do_psionics_check(cost, user) + if(user_psi_leech) + to_chat(user, SPAN_WARNING("Your power is leeched away by \the [user_psi_leech] as fast as you can focus it...")) + return FALSE + + if(target.do_psionics_check(cost, user)) + to_chat(user, SPAN_WARNING("Your power skates across \the [target], but cannot get a grip...")) + return FALSE + + return TRUE + +/singleton/psionic_power/proc/handle_post_power(mob/living/user, atom/target) + if(cooldown) + user.psi.set_cooldown(cooldown) + if(admin_log && ismob(user) && ismob(target)) + admin_attack_log(user, target, "Used psipower ([name])", "Was subjected to a psipower ([name])", "used a psipower ([name]) on") + if(use_sound) + playsound(user.loc, use_sound, 75) diff --git a/mods/psionics/code/faculties/coercion.dm b/mods/psionics/code/faculties/coercion.dm new file mode 100644 index 0000000000000..14f2fbb815029 --- /dev/null +++ b/mods/psionics/code/faculties/coercion.dm @@ -0,0 +1,291 @@ +/singleton/psionic_faculty/coercion + id = PSI_COERCION + name = "Catastellia" + associated_intent = I_DISARM + armour_types = list(DAMAGE_PSIONIC) + +/singleton/psionic_power/coercion + faculty = PSI_COERCION + abstract_type = /singleton/psionic_power/coercion + +/singleton/psionic_power/coercion/invoke(mob/living/user, mob/living/target) + . = ..() + if (!.) + return FALSE + + if (!istype(target)) + to_chat(user, SPAN_WARNING("Вы не можете пробиться в сознание [target].")) + return FALSE + + if(. && target.deflect_psionic_attack(user)) + return FALSE + +/singleton/psionic_power/coercion/blindstrike + name = "Blindstrike" + cost = 25 + cooldown = 120 + use_ranged = TRUE + use_melee = TRUE + min_rank = PSI_RANK_OPERANT + use_description = "Выберите глаза и переключитесь на синий интент. Затем, нажмите куда угодно чтобы применить радиальную атаку, слепящую и оглушающую всех, кто оказался поблизости." + +/singleton/psionic_power/coercion/blindstrike/invoke(mob/living/user, mob/living/target) + if(user.zone_sel.selecting != BP_EYES) + return FALSE + . = ..() + if(.) + user.visible_message(SPAN_DANGER("[user] закидывает голову назад, издавая пронзительный крик!")) + to_chat(user, SPAN_DANGER("Вы издаёте пронзительный псионический крик, оглушая всех вокруг!")) + var/cn_rank = user.psi.get_rank(PSI_COERCION) + for(var/mob/living/M in range(user, user.psi.get_rank(PSI_COERCION))) + if(M == user) + continue + if(prob(cn_rank * 20) && iscarbon(M)) + var/mob/living/carbon/C = M + if(C.can_feel_pain()) + M.emote("scream") + to_chat(M, SPAN_DANGER("Ты ощущаешь, как земля уходит у тебя из под ног!")) + M.flash_eyes() + new /obj/temporary(get_turf(user),6, 'icons/effects/effects.dmi', "summoning") + new /obj/temporary(get_turf(M),3, 'icons/effects/effects.dmi', "purple_electricity_constant") + M.eye_blind = max(M.eye_blind,cn_rank) + M.ear_deaf = max(M.ear_deaf,cn_rank * 2) + M.mod_confused(cn_rank * rand(1,3)) + return TRUE + +/singleton/psionic_power/coercion/emotions + name = "Emotion Amplifier" + cost = 20 + cooldown = 30 + use_melee = TRUE + use_ranged = TRUE + min_rank = PSI_RANK_OPERANT + use_description = "Выберите грудь и переключитесь на синий интент. Затем, нажмите по вашей цели, чтобы многократно усилить одну из её эмоций." + +/singleton/psionic_power/coercion/emotions/invoke(mob/living/user, mob/living/target) + var/list/options = list( + "Joy" = image('icons/screen/psi.dmi', "JOY"), + "Sadness" = image('icons/screen/psi.dmi', "SADNESS"), + "Fear" = image('icons/screen/psi.dmi', "FEAR"), + "Caution" = image('icons/screen/psi.dmi', "ANXIETY"), + "Anger" = image('icons/screen/psi.dmi', "ANGER"), + "Stillness" = image('icons/screen/psi.dmi', "STILLNESS") + ) + + if(user.zone_sel.selecting != BP_CHEST) + return FALSE + if(target == user) + return FALSE + if(isrobot(target)) + return FALSE + . = ..() + if(.) + + var/chosen_option = show_radial_menu(user, user, options, radius = 25, require_near = TRUE) + if (!chosen_option) + return 0 + if(user.psi.suppressed) + return 0 + switch(chosen_option) + if("Joy") + var/funny_option = pick("вспоминаете крайне смешную шутку", "вспоминаете очень глупую историю", "всматриваетесь в лицо [user]") + to_chat(target, SPAN_WARNING("Внезапно, вы [funny_option], начиная истошно смеяться и кататься по полу.")) + var/mob/living/carbon/C = target + C.Weaken(5) + C.spin(32,2) + C.emote("giggle") + spawn(3 SECONDS) + C.emote("giggle") + spawn(6 SECONDS) + C.emote("giggle") + return 1 + if("Sadness") + var/sad_option = pick("погружаетесь в ваши детские воспоминания", "вспоминаете о ужасной потере", "на секунду замечаете перед собой знакомый силуэт", "вспоминаете о своих прошлых ошибках") + to_chat(target, SPAN_WARNING("Внезапно, вы [sad_option], не замечая, как по вашим щекам текут слёзы.")) + var/mob/living/carbon/C = target + C.eye_blurry = max(C.eye_blurry, 10) + C.emote("whimper") + spawn(3 SECONDS) + C.emote("whimper") + spawn(6 SECONDS) + C.emote("whimper") + return 1 + if("Fear") + to_chat(target, SPAN_OCCULT("Внезапно, ваше тело цепенеет от одного только взгляда в сторону [user]. Вы дрожите, словно ваш мозг испытывает какой-то подсознательный страх.")) + var/cn_rank = user.psi.get_rank(PSI_COERCION) + var/mob/living/carbon/C = target + C.make_dizzy(10) + C.Stun(5 + cn_rank) + return 1 + if("Caution") + var/strange_option = pick("ощущаете чьё-то зловещее присутствие", "сильно потеете", "чувствуете, что за вами что-то наблюдает", "ощущаете странный холод", "чувствуете, как что-то ползает по вам") + to_chat(target, SPAN_DANGER("Вы [strange_option].")) + return 1 + if("Anger") + var/anger_option = pick("к самому себе", "к человеку, что стоит рядом", "к месту, в котором вы находитесь", "к своей жизни", "по отношению к данной ситуации", "к сегодняшнему дню", "к сегодняшней погоде", "к вашей работе", "к тому, что было вчера") + to_chat(target, SPAN_DANGER("Внезапно, вы ощущаете странную злобу [anger_option].")) + return 1 + if("Stillness") + to_chat(target, SPAN_NOTICE("Вы ощущаете странное умиротворение.")) + if(target.psi) + target.psi.stamina = min(target.psi.max_stamina, target.psi.stamina + rand(15,20)) + return 1 + +/singleton/psionic_power/coercion/agony + name = "Agony" + cost = 8 + cooldown = 60 + use_melee = TRUE + min_rank = PSI_RANK_APPRENTICE + use_description = "Выберите нижнюю часть тела на синем интенте, а затем нажмите по цели вблизи, дабы совершить по ней удар, по силе сравнимый с шоковой дубинкой." + +/singleton/psionic_power/coercion/agony/invoke(mob/living/user, mob/living/target) + if(!istype(target)) + return FALSE + if(user.zone_sel.selecting != BP_GROIN) + return FALSE + . = ..() + if(.) + user.visible_message("\ [target] ударяет [user], и тот складывается в АГОНИИ!") + playsound(user.loc, 'sound/weapons/Egloves.ogg', 50, 1, -1) + var/cn_rank = user.psi.get_rank(PSI_COERCION) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "blue_electricity_constant") + target.stun_effect_act(0, cn_rank * 30, user.zone_sel.selecting) + return TRUE + +/singleton/psionic_power/coercion/spasm + name = "Spasm" + cost = 15 + cooldown = 100 + use_ranged = TRUE + min_rank = PSI_RANK_APPRENTICE + use_description = "Выберите кисти или руки на синем интенте. Затем, совершите дистанционную атаку по цели, чтобы попытаться вырвать оружие(или иной предмет) из ранее выбранной конечности." + +/singleton/psionic_power/coercion/spasm/invoke(mob/living/user, mob/living/carbon/human/target) + if(!istype(target)) + return FALSE + + if(!(user.zone_sel.selecting in list(BP_L_ARM, BP_R_ARM, BP_L_HAND, BP_R_HAND))) + return FALSE + + . = ..() + + if(.) + var/cn_rank = user.psi.get_rank(PSI_COERCION) + to_chat(user, "Вы выкидываете кисть вперёд, представляя как сжимаете в ней [target].") + to_chat(target, "Всё ваше тело сковывает ужасающий СПАЗМ!") + if(prob(80)) + target.emote("scream") + if(prob(cn_rank * 20) && target.l_hand && target.l_hand.simulated && target.unEquip(target.l_hand)) + target.visible_message("[target] невольно роняет предмет, находившийся в его левой руке!") + if(prob(cn_rank * 20) && target.r_hand && target.r_hand.simulated && target.unEquip(target.r_hand)) + target.visible_message("[target] невольно роняет предмет, находившийся в его правой руке!") + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "white_electricity_constant") + return TRUE + +/singleton/psionic_power/coercion/mind_control + name = "Mind Control" + cost = 28 + cooldown = 10 SECONDS + use_ranged = TRUE + use_melee = TRUE + min_rank = PSI_RANK_OPERANT + use_description = "Переключитесь на синий интент, затем выберите голову и нажмите по цели дабы ВРЕМЕННО обратить её в своего верного подчинённого." + + var/invoking = FALSE + +/singleton/psionic_power/coercion/mind_control/invoke(mob/living/user, mob/living/target) + if(!istype(target)) + return FALSE + + if(user.zone_sel.selecting != BP_HEAD) + return FALSE + + if(!can_use(user, target)) + return FALSE + + if(user == target) + return FALSE + + if(!..()) + return FALSE + + user.visible_message("[user] прижимает палец к веску, старательно концентрируясь над чем-то...") + to_chat(user, "Вы проникаете в хрупкое сознание [target]...") + to_chat(target, "Вы ощущаете присутствие [user] в своей голове! Его настойчивые мысли и желания постепенно заражают ваш разум!") + + invoking = TRUE + + var/rank = user.psi.get_rank(faculty) + var/delay = 30 SECONDS / (rank - 2) // 30, 20, 10 + if(!do_after(user, delay, target, DO_SHOW_PROGRESS|DO_USER_SAME_HAND|DO_BOTH_CAN_TURN|DO_TARGET_CAN_MOVE)) + user.psi.backblast(rand(2,10)) + invoking = FALSE + return TRUE + + invoking = FALSE + + if(get_dist(user, target) > world.view) + to_chat(user, "[target] находится слишком далеко!") + return TRUE + + if(!can_use(user, target)) + return TRUE + + var/flags = rank > PSI_RANK_OPERANT ? null : MIND_CONTROL_ALLOW_SAY + var/duration = 1 MINUTE + 2 MINUTE * (rank - 3) // 1, 3, 5 + + user.set_control_mind(target, duration, flags) + handle_mind_link(user, duration, target) + + to_chat(user, "Вы вторгаетесь в сознание [target], ощущая частичный контроль над его телом!") + to_chat(target, "Ваши стены наконец пали, и вы потеряли контроль над своим телом!") + + return TRUE + +/singleton/psionic_power/coercion/mind_control/proc/can_use(mob/living/user, mob/living/target) + if(invoking) + return FALSE + + if(target.stat == UNCONSCIOUS) + to_chat(user, "[target] находится в бессознательном состоянии!") + return FALSE + + if(target.stat == DEAD || (target.status_flags & FAKEDEATH)) + to_chat(user, "[target] мёртв!") + return FALSE + + var/datum/mind_control/mind_controller = user.mind_controller + if(mind_controller && (target in mind_controller.affected)) + to_chat(user, "[target] уже находится под чьим-то контролем!") + return FALSE + + return TRUE + +/singleton/psionic_power/coercion/mind_control/proc/handle_mind_link(mob/user, duration, target) + set waitfor = FALSE + + if(user.client) + user.client.verbs += /client/proc/order_move + + do_after(user, duration, null, DO_SHOW_PROGRESS|DO_BOTH_CAN_TURN|DO_BOTH_CAN_MOVE) + to_chat(user, "Разум [target] более не находится в вашем подчинении!") + + var/datum/mind_control/mind_controller = user.mind_controller + if(!mind_controller) + mind_controller.affected -= target + return + + if(user.client) + user.client.verbs -= /client/proc/order_move + +/client/proc/order_move(atom/A as mob|obj|turf in view()) + set name = "Mind Control: Move" + set category = "IC" + + var/datum/mind_control/mind_controller = mob.mind_controller + if(!mind_controller) + verbs -= /client/proc/order_move + return + + mind_controller.target = A diff --git a/mods/psionics/code/faculties/consciousness.dm b/mods/psionics/code/faculties/consciousness.dm new file mode 100644 index 0000000000000..abf3ac79f4470 --- /dev/null +++ b/mods/psionics/code/faculties/consciousness.dm @@ -0,0 +1,570 @@ +/singleton/psionic_faculty/consciousness + id = PSI_CONSCIOUSNESS + name = "Allaxetia" + associated_intent = I_HELP + armour_types = list(DAMAGE_PSIONIC) + +/singleton/psionic_power/consciousness + faculty = PSI_CONSCIOUSNESS + abstract_type = /singleton/psionic_power/consciousness + +/singleton/psionic_power/consciousness/invoke(mob/living/user, mob/living/target) + . = ..() + if (!.) + return FALSE + + if (!istype(target)) + to_chat(user, SPAN_WARNING("Вы не можете пробиться в сознание [target].")) + return FALSE + + if(. && target.deflect_psionic_attack(user) && target != user) + return FALSE + +/singleton/psionic_power/consciousness/telepathy + name = "Telepathy" + cost = 2 + cooldown = 50 + use_ranged = TRUE + use_melee = TRUE + min_rank = PSI_RANK_APPRENTICE + use_description = "Выберите рот на зелёном интенте, и затем нажмите по цели с любого расстояния, чтобы установить с ней ментальную связь." + +/mob/living + var/space = 0 + var/linked_soul + +/mob/living/proc/ContactSoulmate() + set name = "Contact your friend" + set category = "Psionics" + + if (!linked_soul) + return + + var/phrase = input(usr, "Что вы хотите сказать?", "Связаться", "Ты меня слышишь?") as null|text + if(!phrase || usr.incapacitated()) + return FALSE + + to_chat(usr, SPAN_NOTICE("Вы пытаетесь установить контакт с сознанием [linked_soul], дабы донести до него следующее: [phrase]")) + to_chat(linked_soul, SPAN_OCCULT("Вы слышите отчётливый голос [usr] в своей голове, он говорит вам: [phrase]")) + var/option = alert(linked_soul, "Вы хотите ответить этому зову?", "Обратная связь", "Да", "Нет") + switch(option) + if("Да") + var/answer = input(linked_soul, "Что вы хотите передать в ответ?", "Связаться", "...") as null|text + to_chat(usr, SPAN_OCCULT("[linked_soul] отвечает вам: [answer]")) + else + return + +/singleton/psionic_power/consciousness/telepathy/invoke(mob/living/user, mob/living/target) + if(user.zone_sel.selecting != BP_MOUTH || user.a_intent != I_HELP || target == user) + return FALSE + . = ..() + if(.) + if(target.stat == DEAD || (target.status_flags & FAKEDEATH) || !target.client) + to_chat(user, SPAN_WARNING("[target] не в состоянии ответить вам. Его мозг погрузился в вечный сон.")) + return FALSE + + if(user.psi.get_rank(PSI_CONSCIOUSNESS) >= PSI_RANK_MASTER && target != user) + var/option = input(user, "Связь!", "Что вы хотите сделать?") in list("Поговорить", "Привязать", "Отвязать") + if (!option) + return + if(option == "Привязать") + if(user.space >= 1) + to_chat(user, SPAN_NOTICE("Вы не можете поддерживать столь личную связь с более чем одним человеком! Это неправильно!")) + return 0 + var/answer = alert(target, "[user] пытается связать ваши разумы воедино. Вы позволите ему сделать это?", "Слияние", "Да", "Нет") + switch(answer) + if("Да") + user.linked_soul = target + user.space = 1 + user.verbs += /mob/living/proc/ContactSoulmate + to_chat(user, SPAN_NOTICE("Вы ощущаете, как ваше сознание становится единым целым с сознанием [target]")) + return 0 + else + to_chat(user, SPAN_NOTICE("[target] отказался от вашего предложения.")) + return 0 + if(option == "Отвязать") + if(user.linked_soul == target) + user.verbs -= /mob/living/proc/ContactSoulmate + user.linked_soul = null + user.space = 0 + to_chat(user, SPAN_NOTICE("Вы раз и навсегда рвёте ваши узы с [target]!")) + to_chat(target, SPAN_WARNING("Вы ощущаете странную потерю...")) + return 0 + else + to_chat(user, SPAN_NOTICE("У вас нет никаких уз с [target]!")) + if(option == "Поговорить") + + ///Yes. And no, i don't know how to do it better/// + + var/phrase = input(user, "Что вы хотите сказать?", "Связаться", "Ты меня слышишь?") as null|text + if(!phrase || user.incapacitated() || !do_after(user, 40 / user.psi.get_rank(PSI_CONSCIOUSNESS))) + return 0 + + var/con_rank_user = user.psi.get_rank(PSI_CONSCIOUSNESS) + to_chat(user, SPAN_NOTICE("Вы пытаетесь установить контакт с сознанием [target], дабы донести до него следующее: [phrase]")) + if(target.psi) + var/con_rank_target = target.psi.get_rank(PSI_CONSCIOUSNESS) + if(con_rank_target >= con_rank_user) + to_chat(target, SPAN_OCCULT("Вы слышите отчётливый голос [user] в своей голове, он говорит вам: [phrase]")) + if(con_rank_target > con_rank_user) + var/what = alert(target, "Вы хотите ответить этому зову?", "Обратная связь", "Да", "Нет") + switch(what) + if("Да") + var/answer = input(user, "Что вы хотите передать в ответ?", "Связаться", "...") as null|text + to_chat(user, SPAN_OCCULT("[target] отвечает вам: [answer]")) + else + return 0 + else + to_chat(target, SPAN_OCCULT("Вы слышите чей-то отдалённый голос в своей голове, больше напоминающий шёпот...голос говорит вам: [phrase]")) + else if(!target.psi) + to_chat(target, SPAN_OCCULT("Вы слышите чей-то отдалённый голос в своей голове, больше напоминающий шёпот...голос говорит вам: [phrase]")) + return 1 + + /// /// + + var/phrase = input(user, "Что вы хотите сказать?", "Связаться", "Ты меня слышишь?") as null|text + if(!phrase || user.incapacitated() || !do_after(user, 40 / user.psi.get_rank(PSI_CONSCIOUSNESS))) + return FALSE + + var/con_rank_user = user.psi.get_rank(PSI_CONSCIOUSNESS) + to_chat(user, SPAN_NOTICE("Вы пытаетесь установить контакт с сознанием [target], дабы донести до него следующее: [phrase]")) + if(target.psi) + var/con_rank_target = target.psi.get_rank(PSI_CONSCIOUSNESS) + if(con_rank_target >= con_rank_user) + to_chat(target, SPAN_OCCULT("Вы слышите отчётливый голос [user] в своей голове, он говорит вам: [phrase]")) + if(con_rank_target > con_rank_user) + var/option = alert(target, "Вы хотите ответить этому зову?", "Обратная связь", "Да", "Нет") + switch(option) + if("Да") + var/answer = input(target, "Что вы хотите передать в ответ?", "Связаться", "...") as null|text + to_chat(user, SPAN_OCCULT("[target] отвечает вам: [answer]")) + else + return + else + to_chat(target, SPAN_OCCULT("Вы слышите чей-то отдалённый голос в своей голове, больше напоминающий шёпот...голос говорит вам: [phrase]")) + else if(!target.psi) + to_chat(target, SPAN_OCCULT("Вы слышите чей-то отдалённый голос в своей голове, больше напоминающий шёпот...голос говорит вам: [phrase]")) + return TRUE + + +/singleton/psionic_power/consciousness/mindread + name = "Read Mind" + cost = 6 + cooldown = 80 + use_ranged = TRUE + use_melee = TRUE + min_rank = PSI_RANK_APPRENTICE + use_description = "Выберите голову на зелёном интенте и затем нажмите по цели находясь на любом расстоянии, чтобы попытаться прочитать его мысли." + +/singleton/psionic_power/consciousness/mindread/invoke(mob/living/user, mob/living/target) + if(user.zone_sel.selecting != BP_HEAD || user.a_intent != I_HELP || target == user) + return FALSE + . = ..() + if(.) + + if(target.stat == DEAD || (target.status_flags & FAKEDEATH) || !target.client) + to_chat(user, SPAN_WARNING("[target] не в состоянии ответить вам. Его мозг погрузился в вечный сон.")) + return FALSE + + var/question = input(user, "Что вы хотите сказать?", "Чтение мыслей", "Идеи?") as null|text + if(!question || user.incapacitated() || !do_after(user, 40 / user.psi.get_rank(PSI_CONSCIOUSNESS))) + return FALSE + + var/con_rank_user = user.psi.get_rank(PSI_CONSCIOUSNESS) + var/started_mindread = world.time + to_chat(user, SPAN_NOTICE("Вы погружаетесь в глубины сознания [target], ища ответ на вопрос: [question]")) + var/option = alert(target, "Кто-то пытается проникнуть в ваше сознание, дабы получить доступ к его воспоминаниям! Вы позволите этому случиться?", "Выбирай!", "Да", "Нет") + if (!option) + if(target.psi) + var/con_rank_target = target.psi.get_rank(PSI_CONSCIOUSNESS) + if(con_rank_target > con_rank_user) + to_chat(user, SPAN_NOTICE("[target]без каких-либо проблем блокирует ваши попытки узнать что-либо!")) + to_chat(target, SPAN_NOTICE("Вы без проблем защитили свой разум от вторжения!")) + return + else + target.adjustBrainLoss(25) + to_chat(user, SPAN_NOTICE("[target] удаётся предотвратить ваше проникновение, но часть его мозга была повреждена в процессе!")) + to_chat(target, SPAN_NOTICE("Вам удаётся защитить свои воспоминания, но ваше сопротивление повлекло за собой куда больше проблем. Ваша голова просто раскалывается.")) + return + else if(!target.psi) + target.adjustBrainLoss(25) + to_chat(user, SPAN_NOTICE("[target] удаётся предотвратить ваше проникновение, но часть его мозга была повреждена в процессе!")) + to_chat(target, SPAN_NOTICE("Вам удаётся защитить свои воспоминания, но ваше сопротивление повлекло за собой куда больше проблем. Ваша голова просто раскалывается.")) + return + if(option == "Yes") + to_chat(target, SPAN_NOTICE("Некто пытается получить ответ на вопрос: [question]")) + if(option == "No") + if(target.psi) + var/con_rank_target = target.psi.get_rank(PSI_CONSCIOUSNESS) + if(con_rank_target > con_rank_user) + to_chat(user, SPAN_NOTICE("[target]без каких-либо проблем блокирует ваши попытки узнать что-либо!")) + to_chat(target, SPAN_NOTICE("Вы без проблем защитили свой разум от вторжения!")) + return + else + target.adjustBrainLoss(25) + to_chat(user, SPAN_NOTICE("[target] удаётся предотвратить ваше проникновение, но часть его мозга была повреждена в процессе!")) + to_chat(target, SPAN_NOTICE("Вам удаётся защитить свои воспоминания, но ваше сопротивление повлекло за собой куда больше проблем. Ваша голова просто раскалывается.")) + return + else if(!target.psi) + target.adjustBrainLoss(25) + to_chat(user, SPAN_NOTICE("[target] удаётся предотвратить ваше проникновение, но часть его мозга была повреждена в процессе!")) + to_chat(target, SPAN_NOTICE("Вам удаётся защитить свои воспоминания, но ваше сопротивление повлекло за собой куда больше проблем. Ваша голова просто раскалывается.")) + return + + + var/answer = input(target, question, "Чтение мыслей") as null|text + if(!answer || world.time > started_mindread + 60 SECONDS || user.stat != CONSCIOUS || target.stat == DEAD) + to_chat(user, SPAN_NOTICE("Вам не удалось добиться чего-либо полезного от [target].")) + else + to_chat(user, SPAN_NOTICE("В поисках ответов в голове [target], вы нахоите следующее: [answer]")) + msg_admin_attack("[key_name(user)] использует чтение мыслей на [key_name(target)] с вопросом \"[question]\" и [answer?"следующим ответом \"[answer]\".":"не получил никакого ответа."]") + return TRUE + +/singleton/psionic_power/consciousness/focus + name = "Focus" + cost = 10 + cooldown = 80 + use_grab = TRUE + min_rank = PSI_RANK_APPRENTICE + use_description = "Схватите цель, затем выберите рот на зелёном интенте и нажмите по ней захватом ещё раз, дабы частично очистить её сознание от возможного урона." + +/singleton/psionic_power/consciousness/focus/invoke(mob/living/user, mob/living/target) + if(user.zone_sel.selecting != BP_MOUTH || user.a_intent != I_HELP) + return FALSE + . = ..() + if(.) + user.visible_message(SPAN_WARNING("[user] целует [target] в лоб...")) + to_chat(user, SPAN_NOTICE("Вы проверяете разум [target] на наличие повреждений...")) + to_chat(target, SPAN_WARNING("Вы ощущаете, как ваш разум очищается, становясь яснее.")) + if(!do_after(user, (target.stat == CONSCIOUS ? 50 : 25), target)) + user.psi.backblast(rand(5,10)) + return TRUE + to_chat(user, SPAN_WARNING("Вы полностью очистили сознание [target] от проблем и ран.")) + to_chat(target, SPAN_WARNING("Вы ощущаете полную ясность мыслей. Словно стали новым человеком.")) + + var/coercion_rank = user.psi.get_rank(PSI_COERCION) + if(coercion_rank > PSI_RANK_APPRENTICE) + target.AdjustParalysis(-1) + target.drowsyness = 0 + if(istype(target, /mob/living/carbon)) + var/mob/living/carbon/M = target + M.adjust_hallucination(-30) + M.adjustBrainLoss(-rand(20,35)) + return TRUE + +/singleton/psionic_power/consciousness/assay + name = "Assay" + cost = 15 + cooldown = 100 + use_grab = TRUE + min_rank = PSI_RANK_APPRENTICE + use_description = "Схватите цель, затем выберите голову и зелёном интент. После этого, нажмите по цели захватом, чтобы погрузится в глубины её разума и отыскать там скрытый потенциал." + +/singleton/psionic_power/consciousness/assay/invoke(mob/living/user, mob/living/target) + if(user.zone_sel.selecting != BP_HEAD || user.a_intent != I_HELP) + return FALSE + . = ..() + if(.) + user.visible_message(SPAN_WARNING("[user] обхватывает голову [target] обеими руками...")) + to_chat(user, SPAN_NOTICE("Вы погружаетесь в глубины сознания [target]...")) + to_chat(target, SPAN_WARNING("Вы ощущаете, как [user] копается в вашем подсознании, что-то выискивая.")) + if(!do_after(user, (target.stat == CONSCIOUS ? 50 : 25), target)) + user.psi.backblast(rand(5,10)) + return TRUE + to_chat(user, SPAN_NOTICE("Вы покидаете разум [target], получив желаемое.")) + to_chat(target, SPAN_DANGER("[user] наконец покидает ваше сознание, узнав желаемое.")) + target.show_psi_assay(user) + return TRUE + +/singleton/psionic_power/consciousness/absorb + name = "Absorption" + cost = 10 + cooldown = 40 + use_ranged = TRUE + use_melee = TRUE + min_rank = PSI_RANK_APPRENTICE + use_description = "Выберите верхнюю часть тела на зелёном интенте, и затем нажмите по цели с любого расстояния, чтобы попытаться поглатить часть его псионической силы." + +/singleton/psionic_power/consciousness/absorb/invoke(mob/living/user, mob/living/target) + var/con_rank_user = user.psi.get_rank(PSI_CONSCIOUSNESS) + if(user.zone_sel.selecting != BP_CHEST || user.a_intent != I_HELP) + return FALSE + . = ..() + if(.) + if(target == user) + to_chat(user, "Вы не можете применить эту способность на себе!") + return 0 + if(target.psi) + var/con_rank_target = target.psi.get_rank(PSI_CONSCIOUSNESS) + if(con_rank_user > con_rank_target) + sound_to(user, 'sound/effects/psi/power_fail.ogg') + if(prob(30)) + to_chat(user, SPAN_DANGER("Вы попытались проникнуть в разум [target], но тот ловко ускользнул из под вашего воздействия.")) + to_chat(target, SPAN_WARNING("Не важно как, но вы чудом избежали губительного воздействия [user] на ваш разум.")) + return 0 + to_chat(user, SPAN_NOTICE("Вы с лёгкостью разбили защиту [target], забрав часть его сил себе.")) + to_chat(target, SPAN_DANGER("Вы ощущаете сильную головную боль, пока [user] пристально сверлит вас взглядом. Ваше тело ослабевает...")) + target.adjustBrainLoss(20) + user.psi.stamina = min(user.psi.max_stamina, user.psi.stamina + rand(25,30)) + target.psi.spend_power(rand(15,25)) + if(con_rank_user == con_rank_target) + sound_to(user, 'sound/effects/psi/power_fail.ogg') + if(prob(50)) + to_chat(user, SPAN_WARNING("Вы попытались проникнуть в разум [target], но в ходе битвы сами получаете значительный урон!")) + to_chat(target, SPAN_DANGER("Вы что есть силы пытались отбить атаки [user] на ваш разум, но в конечном счёте всё равно проиграли. По-крайней мере, ему тоже досталось.")) + user.psi.stamina = min(user.psi.max_stamina, user.psi.stamina + rand(10,20)) + target.psi.spend_power(rand(10,20)) + user.adjustBrainLoss(20) + target.adjustBrainLoss(20) + user.emote("scream") + target.emote("scream") + return 0 + to_chat(user, SPAN_WARNING("Вы с лёгкостью разбили защиту [target], забрав часть его сил себе.")) + to_chat(target, SPAN_DANGER("Вы ощущаете сильную головную боль, пока [user] пристально сверлит вас взглядом. Ваше тело ослабевает...")) + target.adjustBrainLoss(20) + user.psi.stamina = min(user.psi.max_stamina, user.psi.stamina + rand(25,30)) + target.psi.spend_power(rand(15,25)) + if(con_rank_user < con_rank_target) + sound_to(user, 'sound/effects/psi/power_fail.ogg') + if(prob(30)) + to_chat(user, SPAN_WARNING("Каким-то чудом, но вам удалось пробиться через псионическую завесу [target]!")) + to_chat(target, SPAN_DANGER("Вопреки всякой логике и здравому смыслу, [user] пробился в ваш разум чистой, грубой силой, нанеся в процессе значительный урон.")) + target.adjustBrainLoss(20) + user.psi.stamina = min(user.psi.max_stamina, user.psi.stamina + rand(30,45)) + target.psi.spend_power(35) + return 0 + to_chat(user, SPAN_DANGER("Вы пытаетесь пробиться через барьер [target], но встречаете серьёзное сопротивление!")) + to_chat(target, SPAN_NOTICE("[user] только что попытался пробиться в ваше сознание...к его сожалению - безуспешно.")) + user.emote("scream") + user.adjustBrainLoss(30) + user.psi.spend_power(50) + else + to_chat(user, SPAN_NOTICE("Вы не обнаружили у [target] каких-либо псионических способностей для подпитки.")) + return 0 + +/singleton/psionic_power/consciousness/invis + name = "Invisibility" + cost = 50 + cooldown = 250 + use_ranged = TRUE + use_melee = TRUE + min_rank = PSI_RANK_OPERANT + use_description = "Выберите глаза на зелёном интенте, и затем нажмите по себе или другому человеку(начиная с мастера), чтобы временно сделать его или себя невидимым для остальных." + +/mob/living/proc/run_timer_invisibility() + var/invis_timer = 30 + set waitfor = 0 + var/T = invis_timer + while(T > 0) + sleep(1 SECOND) + T-- + src.visible_message(SPAN_WARNING("[src] внезапно материализуется из воздуха!")) + src.alpha = 100 + spawn(1 SECONDS) + src.alpha = 150 + spawn(2 SECONDS) + src.alpha = 200 + spawn(3 SECONDS) + src.alpha = 255 + if(src.psi) + var/con_rank_user = src.psi.get_rank(PSI_CONSCIOUSNESS) + if(con_rank_user == PSI_RANK_GRANDMASTER) + src.RemoveMovementHandler(/datum/movement_handler/mob/incorporeal) + +/singleton/psionic_power/consciousness/invis/invoke(mob/living/user, mob/living/target) + var/con_rank_user = user.psi.get_rank(PSI_CONSCIOUSNESS) + if(user.zone_sel.selecting != BP_EYES || user.a_intent != I_HELP) + return FALSE + + if (!istype(target)) + to_chat(user, SPAN_WARNING("Вы не можете сделать [target] невидимым.")) + return FALSE + + if(istype(target, /mob/living/carbon) && target != user && con_rank_user >= PSI_RANK_MASTER) + if(do_after(user, 30)) + user.visible_message(SPAN_WARNING("[user] касается [target] и тот исчезает на глазах!")) + target.alpha = 200 + spawn(1 SECONDS) + target.alpha = 150 + spawn(2 SECONDS) + target.alpha = 100 + spawn(3 SECONDS) + target.alpha = 50 + spawn(4 SECONDS) + target.alpha = 25 + spawn(5 SECONDS) + target.alpha = 10 + target.run_timer_invisibility() + return TRUE + + if(target == user) + user.visible_message(SPAN_WARNING("[user] исчезает у всех на глазах!")) + user.alpha = 200 + spawn(1 SECONDS) + user.alpha = 150 + spawn(2 SECONDS) + user.alpha = 100 + spawn(3 SECONDS) + user.alpha = 50 + spawn(4 SECONDS) + user.alpha = 25 + spawn(5 SECONDS) + user.alpha = 10 + if(con_rank_user == PSI_RANK_GRANDMASTER) + user.AddMovementHandler(/datum/movement_handler/mob/incorporeal) + user.run_timer_invisibility() + return TRUE + +/singleton/psionic_power/consciousness/curse + name = "Hallucinations" + cost = 20 + cooldown = 50 + use_grab = TRUE + use_melee = TRUE + min_rank = PSI_RANK_OPERANT + use_description = "Схватите цель, затем выберите верхнюю часть тела на зелёном интент. После этого, нажмите по цели захватом, чтобы погрузить её в мир галлюцинаций." + +/singleton/psionic_power/consciousness/curse/invoke(mob/living/user, mob/living/carbon/target) + var/con_rank_user = user.psi.get_rank(PSI_CONSCIOUSNESS) + if(user.zone_sel.selecting != BP_CHEST || user.a_intent != I_HELP) + return FALSE + if(target == user) + return FALSE + . = ..() + if(.) + new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "eye_opening") + playsound(target.loc, 'sound/hallucinations/far_noise.ogg', 15, 1) + target.hallucination(rand(10,20) * con_rank_user, 100) + +/singleton/psionic_power/consciousness/swap + name = "Shadow Swap" + cost = 30 + cooldown = 100 + use_ranged = TRUE + min_rank = PSI_RANK_MASTER + use_description = "Выберите пятки или ноги на зелёном интенте. Затем, нажмите по цели на дистанции, чтобы незаметно обменяться с ней местами." + +/singleton/psionic_power/consciousness/swap/invoke(mob/living/user, mob/living/carbon/human/target) + var/cn_rank_user = user.psi.get_rank(PSI_CONSCIOUSNESS) + + if(!istype(target)) + return FALSE + + if(user.a_intent != I_HELP) + return FALSE + + if(!(user.zone_sel.selecting in list(BP_L_LEG, BP_R_LEG, BP_L_FOOT, BP_R_FOOT))) + return FALSE + + . = ..() + if(.) + var/turf/target_turf = get_turf(target) + var/turf/user_turf = get_turf(user) + + var/list/mobs = GLOB.alive_mobs + GLOB.dead_mobs + for(var/mob/living/M in mobs) + if(M == user) + continue + if(get_dist(user, M) > cn_rank_user) + continue + M.eye_blind = max(M.eye_blind,cn_rank_user) + target.forceMove(user_turf) + user.forceMove(target_turf) + + return TRUE + +//This differs from how TG does it, they have a dedicated turf type for open turf, we have to check the density. Thanks Bay, always be special. +///Returns a list with all the adjacent open turfs. Clears the list of nulls in the end. +/proc/get_adjacent_open_turfs(atom/center) + var/list/hand_back = list() + // Inlined get_open_turf_in_dir, just to be fast + var/turf/new_turf = get_step(center, NORTH) + if(istype(new_turf) && !new_turf.density) + hand_back += new_turf + new_turf = get_step(center, SOUTH) + if(istype(new_turf) && !new_turf.density) + hand_back += new_turf + new_turf = get_step(center, EAST) + if(istype(new_turf) && !new_turf.density) + hand_back += new_turf + new_turf = get_step(center, WEST) + if(istype(new_turf) && !new_turf.density) + hand_back += new_turf + return hand_back + +/singleton/psionic_power/consciousness/copies + name = "Non-Existing Copies" + cost = 50 + cooldown = 100 + use_melee = TRUE + min_rank = PSI_RANK_OPERANT + use_description = "Выберите рот на синем интенте, и затем нажмите по себе, чтобы создать сразу несколько копий самого себя." + var/amount = 1 + +/singleton/psionic_power/consciousness/copies/invoke(mob/living/user, mob/living/carbon/human/target) + var/con_rank_user = user.psi.get_rank(PSI_CONSCIOUSNESS) + + if(con_rank_user == PSI_RANK_OPERANT) + amount = 3 + + if(con_rank_user == PSI_RANK_MASTER) + amount = 4 + + if(con_rank_user == PSI_RANK_GRANDMASTER) + amount = 6 + + if(user.zone_sel.selecting != BP_MOUTH) + return FALSE + + if(user.a_intent != I_DISARM) + return FALSE + + if(target != user) + return FALSE + + . = ..() + if(.) + if(do_after(user, 10)) + to_chat(user, SPAN_WARNING("Ты разделяешь своё подсознание на [amount] копий")) + for(var/i = 1 to amount) + var/mob/living/simple_animal/hostile/mirror_shade/MS = new(pick(get_adjacent_open_turfs(user)), user) + MS.CopyOverlays(user, TRUE) + MS.icon = null + return TRUE + +/obj/item/natural_weapon/punch/holo + damtype = DAMAGE_PAIN + +/mob/living/simple_animal/hostile/mirror_shade + + turns_per_move = 2 + response_help = "pokes" + response_disarm = "shoves" + response_harm = "hits" + movement_cooldown = 0 + maxHealth = 20 + health = 20 + harm_intent_damage = 5 + natural_weapon = /obj/item/natural_weapon/punch/holo + a_intent = I_HURT + status_flags = CANPUSH + + var/mob/living/carbon/human/owner + +/mob/living/simple_animal/hostile/mirror_shade/Initialize(mapload, mob/set_owner) + . = ..() + if(set_owner) + owner = set_owner + friends += owner + QDEL_IN(src, 30 SECONDS) + +/mob/living/simple_animal/hostile/mirror_shade/examine(mob/user) + if(!QDELETED(owner)) + /// Technically suspicious, but these have 30 seconds of lifetime so it's probably fine. + return owner.examine(user) + return ..() + +/mob/living/simple_animal/hostile/mirror_shade/Destroy() + owner = null + visible_message(SPAN_WARNING("[src] dissipates into nothingness, as if it were air all along!")) + return ..() diff --git a/mods/psionics/code/faculties/energistics.dm b/mods/psionics/code/faculties/energistics.dm new file mode 100644 index 0000000000000..385b743d5051b --- /dev/null +++ b/mods/psionics/code/faculties/energistics.dm @@ -0,0 +1,420 @@ +/singleton/psionic_faculty/energistics + id = PSI_ENERGISTICS + name = "Hyloforia" + associated_intent = I_HURT + armour_types = list("energy", "melee") + +/singleton/psionic_power/energistics + faculty = PSI_ENERGISTICS + abstract_type = /singleton/psionic_power/energistics + +/singleton/psionic_power/energistics/zorch + name = "Zorch" + cost = 20 + cooldown = 20 + use_ranged = TRUE + min_rank = PSI_RANK_APPRENTICE + use_description = "Выберите красный интент и верхнюю часть тела, чтобы по нажатию запустить в цель луч концентрированной псионической энергии." + +/singleton/psionic_power/energistics/zorch/invoke(mob/living/user, mob/living/target) + if(user.zone_sel.selecting != BP_CHEST) + return FALSE + . = ..() + if(.) + user.visible_message("Глаза [user] загораются ярким светом!") + + var/user_rank = user.psi.get_rank(faculty) + var/meta_rank = user.psi.get_rank(PSI_METAKINESIS) + var/obj/item/projectile/pew + var/pew_sound + + switch(user_rank) + if(PSI_RANK_GRANDMASTER) + if(user.a_intent == I_HELP) + if(meta_rank >= PSI_RANK_MASTER) + pew = new /obj/item/projectile/beam/stun/shock/heavy(get_turf(user)) + pew.name = "gigawatt mental beam" + pew_sound = 'sound/weapons/taser2.ogg' + else + pew = new /obj/item/projectile/beam/stun(get_turf(user)) + pew.name = "mental beam" + pew.color = "#3ca7b1" + pew_sound = 'sound/weapons/taser2.ogg' + if(user.a_intent == I_HURT) + pew = new /obj/item/projectile/beam/heavylaser(get_turf(user)) + pew.name = "gigawatt mental laser" + pew.color = "#3ca7b1" + pew_sound = 'sound/weapons/pulse.ogg' + if(PSI_RANK_MASTER) + if(user.a_intent == I_HELP) + if(meta_rank == PSI_RANK_OPERANT) + pew = new /obj/item/projectile/beam/stun/shock(get_turf(user)) + pew.name = "megawatt mental beam" + pew_sound = 'sound/weapons/taser2.ogg' + else + pew = new /obj/item/projectile/beam/stun(get_turf(user)) + pew.name = "mental beam" + pew.color = "#3ca7b1" + pew_sound = 'sound/weapons/taser2.ogg' + if(user.a_intent == I_HURT) + pew = new /obj/item/projectile/beam/megabot(get_turf(user)) + pew.name = "megawatt mental laser" + pew.color = "#3ca7b1" + pew_sound = 'sound/weapons/Laser.ogg' + if(PSI_RANK_OPERANT) + if(user.a_intent == I_HELP) + pew = new /obj/item/projectile/beam/stun(get_turf(user)) + pew.name = "mental beam" + pew.color = "#3ca7b1" + pew_sound = 'sound/weapons/taser2.ogg' + if(user.a_intent == I_HURT) + pew = new /obj/item/projectile/beam/midlaser(get_turf(user)) + pew.name = "mental laser" + pew.color = "#3ca7b1" + pew_sound = 'sound/weapons/scan.ogg' + if(PSI_RANK_APPRENTICE) + pew = new /obj/item/projectile/beam/stun/smalllaser(get_turf(user)) + pew.name = "mental beam" + pew.color = "#3ca7b1" + pew_sound = 'sound/weapons/taser2.ogg' + + if(istype(pew)) + playsound(pew.loc, pew_sound, 25, 1) + pew.original = target + pew.current = target + pew.starting = get_turf(user) + pew.shot_from = user + pew.launch(target, user.zone_sel.selecting, (target.x-user.x), (target.y-user.y)) + return TRUE + +/singleton/psionic_power/energistics/disrupt + name = "Disrupt" + cost = 10 + cooldown = 60 + use_melee = TRUE + min_rank = PSI_RANK_APPRENTICE + use_description = "Выберите глаза на красном интенте и нажмите на любой объект, чтобы создать мощный электромагнитный импульс, направленный в него." + +/singleton/psionic_power/energistics/disrupt/invoke(mob/living/user, mob/living/target) + var/en_rank = user.psi.get_rank(PSI_ENERGISTICS) + if(user.zone_sel.selecting != BP_EYES) + return FALSE + if(user.a_intent != I_HURT) + return FALSE + if(istype(target, /turf)) + return FALSE + . = ..() + if(.) + if(en_rank == PSI_RANK_GRANDMASTER) + var/option = input(user, "Choose something!", "How big should be the empulse?") in list("Concentrated", "Uncontrolled") + if (!option) + return + if(option == "Concentrated") + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "blue_electricity_constant") + target.visible_message("[user] переполняет [target] энергией, провоцируя внезапное высвобождение ЭМИ-импульса!") + empulse(target, 0, 1) + if(option == "Uncontrolled") + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "blue_electricity_constant") + target.visible_message("[user] взмахивает рукой, создавая мощную ЭМИ-волну!") + empulse(target, 6, 8) + if(en_rank <= PSI_RANK_OPERANT) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "blue_electricity_constant") + target.visible_message("[user] взмахивает рукой, создавая мощный ЭМИ-импульс!") + empulse(target, rand(3,6) - en_rank, rand(4,7) - en_rank) + if(en_rank == PSI_RANK_MASTER) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "blue_electricity_constant") + target.visible_message("[user] взмахивает рукой, создавая мощный ЭМИ-импульс!") + empulse(target, 1, 2) + return TRUE + +/singleton/psionic_power/energistics/spit + name = "Bullet Spit" + cost = 20 + cooldown = 45 + use_ranged = TRUE + use_melee = TRUE + min_rank = PSI_RANK_APPRENTICE + use_description = "Выберите голову на красном интенте и нажмите по чему угодно, чтобы запустить частичку вреда." + + var/psi_shot = "Standart" + +/singleton/psionic_power/energistics/spit/invoke(mob/living/user, mob/living/target) + + var/list/options = list( + "Armor Piercing" = image('icons/screen/psi.dmi', "AP"), + "Explosive" = image('icons/screen/psi.dmi', "EXP"), + "Piercing Charges" = image('icons/screen/psi.dmi', "EXPAP"), + "Standart" = image('icons/screen/psi.dmi', "DEF") + ) + + if(user.zone_sel.selecting != BP_HEAD) + return FALSE + . = ..() + if(.) + + var/user_rank = user.psi.get_rank(faculty) + var/obj/item/projectile/pew + var/pew_sound + + if(target == user && user.a_intent == I_HELP) + var/chosen_option = show_radial_menu(user, user, options, radius = 20, require_near = TRUE) + if (!chosen_option) + return + psi_shot = chosen_option + to_chat(user, "Теперь, ты будешь выпускать снаряды типа '[chosen_option]' при использовании данной способности.") + return TRUE + + if(user.a_intent != I_HURT) + return FALSE + + if(psi_shot == "Standart") + user.visible_message("[user] изображает пальцами пистолет, делая выстрел!") + if(user_rank < PSI_RANK_MASTER) + pew = new /obj/item/projectile/psi(get_turf(user)) + pew.name = "small psionic bullet" + pew_sound = 'sound/weapons/guns/ricochet4.ogg' + if(user_rank >= PSI_RANK_MASTER) + pew = new /obj/item/projectile/psi(get_turf(user)) + pew.name = "psionic bullet" + pew.damage = 40 + pew_sound = 'sound/weapons/guns/ricochet4.ogg' + + if(psi_shot == "Armor Piercing") + user.visible_message("[user] изображает пальцами пистолет, делая выстрел!") + if(user_rank == PSI_RANK_APPRENTICE) + if(prob(10)) + pew = new /obj/item/projectile/psi(get_turf(user)) + pew.name = "piercing psionic bullet" + pew.color = "#a70909" + pew.armor_penetration = 80 + pew.penetrating = 5 + pew.penetration_modifier = 1.1 + pew_sound = 'sound/weapons/guns/ricochet4.ogg' + else + pew = new /obj/item/projectile/psi(get_turf(user)) + pew.name = "small psionic bullet" + pew_sound = 'sound/weapons/guns/ricochet4.ogg' + to_chat(user, "Ты пытаешься сконцентрировать всю энергию в одном маленьком сгустке, дабы создать пробивной снаряд, но что-то мешает тебе...") + if(user_rank == PSI_RANK_OPERANT) + pew = new /obj/item/projectile/psi(get_turf(user)) + pew.name = "piercing psionic bullet" + pew.color = "#a70909" + pew.armor_penetration = 80 + pew.penetrating = 5 + pew.penetration_modifier = 1.1 + pew_sound = 'sound/weapons/guns/ricochet4.ogg' + if(user_rank >= PSI_RANK_MASTER) + pew = new /obj/item/projectile/psi(get_turf(user)) + pew.name = "piercing psionic bullet" + pew.color = "#a70909" + pew.armor_penetration = 100 + pew.penetrating = 6 + pew.penetration_modifier = 1.1 + pew.damage = 40 + pew_sound = 'sound/weapons/guns/ricochet4.ogg' + + if(psi_shot == "Explosive") + user.visible_message("[user] делает резкий выпад рукой, запуская в полёт огромный сгусток энергии!") + if(user_rank < PSI_RANK_OPERANT) + if(prob(10)) + pew = new /obj/item/projectile/psi/strong(get_turf(user)) + pew.name = "explosive psionic round" + pew.damage = 10 + pew_sound = 'sound/weapons/guns/ricochet4.ogg' + else + to_chat(user, "Огромный ком энергии накапливается внутри тебя, готовясь вырваться наружу, но что-то идёт не так...") + explosion(get_turf(user), 5, 10) + if(user_rank >= PSI_RANK_OPERANT) + pew = new /obj/item/projectile/psi/strong(get_turf(user)) + pew.name = "explosive psionic round" + pew_sound = 'sound/weapons/guns/ricochet4.ogg' + + if(psi_shot == "Piercing Charges") + user.visible_message("[user] выставляет перед собой руку, создавая импровизированную трубу и пропускает через неё сжатый сгусток энергии!") + if(user_rank <= PSI_RANK_OPERANT) + if(prob(30)) + pew = new /obj/item/projectile/psi/strong_piercing(get_turf(user)) + pew.name = "piercing psionic round" + pew.color = "#a70909" + pew.damage = 20 + pew_sound = 'sound/weapons/guns/ricochet4.ogg' + else + pew = new /obj/item/projectile/psi(get_turf(user)) + pew.name = "piercing psionic bullet" + pew.color = "#a70909" + pew.armor_penetration = 80 + pew.penetrating = 5 + pew.penetration_modifier = 1.1 + pew_sound = 'sound/weapons/guns/ricochet4.ogg' + to_chat(user, "Ты пытаешься сконцентрировать всю энергию в одном маленьком сгустке, дабы создать пробивной снаряд, но что-то мешает тебе...") + explosion(get_turf(user), 5, 15) + if(user_rank == PSI_RANK_MASTER) + if(prob(70)) + pew = new /obj/item/projectile/psi/strong_piercing(get_turf(user)) + pew.name = "piercing psionic round" + pew.color = "#a70909" + pew.damage = 20 + pew_sound = 'sound/weapons/guns/ricochet4.ogg' + else + to_chat(user, "Ты пытаешься сконцентрировать всю энергию в одном маленьком сгустке, дабы создать пробивной снаряд, но что-то мешает тебе...") + explosion(get_turf(user), 5, 15) + if(user_rank == PSI_RANK_GRANDMASTER) + pew = new /obj/item/projectile/psi/strong_piercing(get_turf(user)) + pew.name = "piercing psionic round" + pew.color = "#a70909" + pew_sound = 'sound/weapons/guns/ricochet4.ogg' + + if(istype(pew)) + playsound(pew.loc, pew_sound, 25, 1) + pew.original = target + pew.current = target + pew.starting = get_turf(user) + pew.shot_from = user + pew.launch(target, user.zone_sel.selecting, (target.x-user.x), (target.y-user.y)) + return TRUE + +/singleton/psionic_power/energistics/storm + name = "Bullet Storm" + cost = 30 + cooldown = 120 + min_rank = PSI_RANK_OPERANT + use_melee = TRUE + use_description = "Выберите рот на красном интенте и нажмите в любое место около себя, чтобы создать рой псионических снарядов, летящих в разные стороны." + var/psi_shot = "Standart" + +/singleton/psionic_power/energistics/storm/invoke(mob/living/user, mob/living/target) + var/list/options = list( + "Explosive" = image('icons/screen/psi.dmi', "EXP"), + "Standart" = image('icons/screen/psi.dmi', "DEF") + ) + + if(user.zone_sel.selecting != BP_MOUTH) + return FALSE + . = ..() + if(.) + var/user_rank = user.psi.get_rank(faculty) + + if(target == user && user.a_intent == I_HELP && user_rank == PSI_RANK_GRANDMASTER) + var/chosen_option = show_radial_menu(user, user, options, radius = 20, require_near = TRUE) + if (!chosen_option) + return + psi_shot = chosen_option + to_chat(user, "Теперь, ты будешь выпускать снаряды типа '[chosen_option]' при использовании данной способности.") + return TRUE + + if(user.a_intent != I_HURT) + return FALSE + + user.visible_message("[user] создаёт вокруг себя рой из вращающихся пуль, запуская их в полёт!") + + user.psi.set_cooldown(cooldown) + sleep(4) + user.psi.spend_power(cost) + var/turf/O = get_turf(src) + switch(user_rank) + if(PSI_RANK_GRANDMASTER) + if(psi_shot == "Explosive") + user.fragmentate(O, 10, 4, list(/obj/item/projectile/psi/strong = 1)) + else + user.fragmentate(O, 40, 7, list(/obj/item/projectile/psi = 1)) + if(PSI_RANK_MASTER) + user.fragmentate(O, 30, 6, list(/obj/item/projectile/psi = 1)) + if(PSI_RANK_OPERANT) + user.fragmentate(O, 20, 5, list(/obj/item/projectile/psi = 1)) + return TRUE + +/mob/proc/fragmentate(turf/T=get_turf(src), fragment_number = 30, spreading_range = 5, list/fragtypes=list(/obj/item/projectile/)) + set waitfor = 0 + var/list/target_turfs = getcircle(T, spreading_range) + for(var/turf/O in target_turfs) + sleep(0) + var/fragment_type = pickweight(fragtypes) + var/obj/item/projectile/P = new fragment_type(T) + P.shot_from = src.name + P.launch(O) + + +/singleton/psionic_power/energistics/cloud + name = "Cloud" + cost = 20 + cooldown = 50 + use_melee = TRUE + min_rank = PSI_RANK_OPERANT + use_description = "Выберите грудь на зелёном интенте и нажмите по себе, чтобы создать дымовую завесу." + admin_log = FALSE + var/turf/previousturf = null + var/inner_radius = -1 //for all your ring spell needs + var/outer_radius = 2 + +/obj/smoke_wall + icon_state = "smoke wall" + anchored = TRUE + opacity = FALSE + layer = ABOVE_HUMAN_LAYER + icon = 'icons/effects/smoke.dmi' + icon_state = "smoke" + pixel_x = -9 + pixel_y = -6 + var/timer = 30 + +/obj/smoke_wall/New() + . = ..() + run_timer() + +/obj/smoke_wall/proc/run_timer() + set waitfor = 0 + var/T = timer + while(T > 0) + sleep(1 SECOND) + T-- + src.alpha = 200 + sleep(2) + src.alpha = 150 + sleep(2) + src.alpha = 100 + sleep(2) + src.alpha = 50 + sleep(2) + src.alpha = 20 + sleep(2) + src.alpha = 10 + qdel(src) + +/singleton/psionic_power/energistics/cloud/invoke(mob/living/user, mob/living/target) + var/en_rank_user = user.psi.get_rank(PSI_ENERGISTICS) + + if(en_rank_user == PSI_RANK_GRANDMASTER) + outer_radius = 4 + + if(user.zone_sel.selecting != BP_CHEST) + return FALSE + if(target != user) + return FALSE + if(user.a_intent != I_HELP) + return FALSE + + . = ..() + + if(target == user) + var/list/targets = list() + + for(var/turf/point in oview_or_orange(outer_radius, user, "range")) + if(!(point in oview_or_orange(inner_radius, user, "range"))) + if(point.density) + continue + if(istype(point, /turf/space)) + continue + targets += point + + if(!targets.len) + return FALSE + + var/turf/user_turf = get_turf(user) + for(var/turf/T in targets) + var/obj/smoke_wall/IW = new(T) + if(istype(IW)) + IW.pixel_x = (user_turf.x - T.x) * world.icon_size + IW.pixel_y = (user_turf.y - T.y) * world.icon_size + animate(IW, pixel_x = 0, pixel_y = 0, time = 3, easing = EASE_OUT) + + return TRUE diff --git a/mods/psionics/code/faculties/manifestation.dm b/mods/psionics/code/faculties/manifestation.dm new file mode 100644 index 0000000000000..e4ff526df6636 --- /dev/null +++ b/mods/psionics/code/faculties/manifestation.dm @@ -0,0 +1,193 @@ +/singleton/psionic_faculty/manifestation + id = PSI_MANIFESTATION + name = "Demiurgy" + associated_intent = I_GRAB + armour_types = list("bullet", "melee") + +/singleton/psionic_power/manifestation + faculty = PSI_MANIFESTATION + use_manifest = TRUE + use_sound = null + abstract_type = /singleton/psionic_power/manifestation + +/singleton/psionic_power/manifestation/psiblade + name = "Manifest weapon" + cost = 5 + cooldown = 50 + min_rank = PSI_RANK_APPRENTICE + use_description = "Нажмите по пустой руке на красном интенте, чтобы создать оружие из чистой псионической энергии." + admin_log = FALSE + + var/list/images = list() + + var/list/items_lvl1 = list() + var/list/paths_lvl1 = list( + /obj/item/psychic_power/psiclub, + /obj/item/psychic_power/psiblade) + + var/list/items_lvl2 = list() + var/list/paths_lvl2 = list( + /obj/item/psychic_power/psiclub/master, + /obj/item/psychic_power/psiblade/master, + /obj/item/psychic_power/psiaxe, + /obj/item/psychic_power/psispear) + + var/list/items_lvl3 = list() + var/list/paths_lvl3 = list( + /obj/item/psychic_power/psiclub/master/grand, + /obj/item/psychic_power/psiblade/master/grand, + /obj/item/psychic_power/psiaxe/master, + /obj/item/psychic_power/psispear/master, + /obj/item/gun/launcher/crossbow/psibow/master) + + var/list/items_lvl4 = list() + var/list/paths_lvl4 = list( + /obj/item/psychic_power/psiclub/master/grand/paramount, + /obj/item/psychic_power/psiblade/master/grand/paramount, + /obj/item/psychic_power/psiaxe/master/grand/paramount, + /obj/item/psychic_power/psispear/master/grand/paramount, + /obj/item/gun/launcher/crossbow/psibow/master/grand/paramount) + +/singleton/psionic_power/manifestation/psiblade/invoke(mob/living/user, mob/living/target) + if((target && user != target) || user.a_intent != I_HURT) + return FALSE + + var/demi_rank = user.psi.get_rank(PSI_MANIFESTATION) + + if(user.skill_check(SKILL_WEAPONS, SKILL_TRAINED) && user.skill_check(SKILL_CONSTRUCTION, SKILL_EXPERIENCED)) + paths_lvl4 += /obj/item/gun/energy/psigun + + . = ..() + if(.) + + if(demi_rank <= PSI_RANK_APPRENTICE) + for(var/weapon1 in paths_lvl1) + var/obj/item/I = new weapon1 (src) + items_lvl1 += I + var/image/img = image(icon = I.icon, icon_state = I.item_state) + img.name = I.name + images[I] = img + + if(demi_rank == PSI_RANK_OPERANT) + for(var/weapon2 in paths_lvl2) + var/obj/item/I = new weapon2 (src) + items_lvl2 += I + var/image/img = image(icon = I.icon, icon_state = I.item_state) + img.name = I.name + images[I] = img + + if(demi_rank == PSI_RANK_MASTER) + for(var/weapon3 in paths_lvl3) + var/obj/item/I = new weapon3 (src) + items_lvl3 += I + var/image/img = image(icon = I.icon, icon_state = I.item_state) + img.name = I.name + images[I] = img + + if(demi_rank >= PSI_RANK_GRANDMASTER) + for(var/weapon4 in paths_lvl4) + var/obj/item/I = new weapon4 (src) + items_lvl4 += I + var/image/img = image(icon = I.icon, icon_state = I.item_state) + img.name = I.name + images[I] = img + + var/obj/item = show_radial_menu(user, user, images, radius = 30, require_near = TRUE) + if(item && !user.psi.suppressed) + var/item_type = item.type + . = new item_type(user) + + for(item in items_lvl1 + items_lvl2 + items_lvl3 + items_lvl4) + qdel(item) + + images.Cut() + items_lvl1.Cut() + items_lvl2.Cut() + items_lvl3.Cut() + items_lvl4.Cut() + + paths_lvl4 -= /obj/item/gun/energy/psigun + +/singleton/psionic_power/manifestation/tinker + name = "Manifest tool" + cost = 5 + cooldown = 10 + min_rank = PSI_RANK_APPRENTICE + use_description = "Нажмите по пустой руке на зелёном интенте, чтобы создать ряд полезных инструментов." + admin_log = FALSE + var/list/images = list() + + var/list/items_medical = list() + var/list/paths_medical = list(/obj/item/bonesetter/psi, + /obj/item/circular_saw/psi, + /obj/item/hemostat/psi, + /obj/item/retractor/psi, + /obj/item/scalpel/psi, + /obj/item/surgicaldrill/psi) + + var/list/items_engineering = list() + var/list/paths_engineering = list(/obj/item/crowbar/psi, + /obj/item/screwdriver/psi, + /obj/item/wirecutters/psi, + /obj/item/wrench/psi) + +/singleton/psionic_power/manifestation/tinker/invoke(mob/living/user, mob/living/target) + if((target && user != target) || user.a_intent != I_HELP) + return FALSE + + var/fire_rank = user.psi.get_rank(PSI_METAKINESIS) + var/demi_rank = user.psi.get_rank(PSI_MANIFESTATION) + + if(demi_rank >= PSI_RANK_MASTER) + paths_medical += /obj/item/clothing/gloves/latex/psi + paths_engineering += /obj/item/clothing/gloves/insulated/psi + + if(fire_rank >= PSI_RANK_LATENT && demi_rank >= PSI_RANK_OPERANT && user.skill_check(SKILL_CONSTRUCTION, SKILL_TRAINED)) + paths_engineering += /obj/item/weldingtool/experimental/psi + + if(demi_rank >= PSI_RANK_MASTER && user.skill_check(SKILL_ELECTRICAL, SKILL_BASIC) && user.skill_check(SKILL_DEVICES, SKILL_TRAINED)) + paths_engineering += /obj/item/device/multitool/psi + + . = ..() + if(.) + + var/option = alert(target, "What toolkit you need?", "Choose something!", "Medical", "Engineering") + if (!option) + return + + if(user.psi.suppressed) + return + + if(option == "Engineering") + for(var/engietool in paths_engineering) + var/obj/item/I = new engietool (src) + items_engineering += I + var/image/img = image(icon = I.icon, icon_state = I.item_state) + img.name = I.name + images[I] = img + + if(option == "Medical") + for(var/medtool in paths_medical) + var/obj/item/I = new medtool (src) + items_medical += I + var/image/img = image(icon = I.icon, icon_state = I.item_state) + img.name = I.name + images[I] = img + + var/obj/item = show_radial_menu(user, user, images, radius = 30, require_near = TRUE) + if(item && !user.psi.suppressed) + var/item_type = item.type + . = new item_type(user) + + for(item in items_medical + items_engineering) + qdel(item) + + images.Cut() + items_medical.Cut() + items_engineering.Cut() + + paths_medical -= /obj/item/clothing/gloves/latex/psi + + paths_engineering -= /obj/item/device/multitool/psi + paths_engineering -= /obj/item/weldingtool/experimental/psi + paths_engineering -= /obj/item/clothing/gloves/insulated/psi diff --git a/mods/psionics/code/faculties/metakinesis.dm b/mods/psionics/code/faculties/metakinesis.dm new file mode 100644 index 0000000000000..8b3d9e447e6b0 --- /dev/null +++ b/mods/psionics/code/faculties/metakinesis.dm @@ -0,0 +1,49 @@ +/singleton/psionic_faculty/metakinesis + id = PSI_METAKINESIS + name = "Metaplexy" + associated_intent = I_GRAB + armour_types = list("laser", "melee") + +/singleton/psionic_power/metakinesis + faculty = PSI_METAKINESIS + use_manifest = TRUE + abstract_type = /singleton/psionic_power/metakinesis + +/singleton/psionic_power/metakinesis/element + name = "Manifest element" + cost = 5 + cooldown = 50 + min_rank = PSI_RANK_APPRENTICE + use_description = "Нажмите по пустой руке на жёлтом интенте, чтобы воспользоваться одним из трёх стихийных элементов." + admin_log = FALSE + + var/list/images = list() + + var/list/items_elements = list() + var/list/paths_elements = list(/obj/item/psychic_power/psielectro, + /obj/item/psychic_power/psifire, + /obj/item/psychic_power/psiice) + +/singleton/psionic_power/metakinesis/element/invoke(mob/living/user, mob/living/target) + if((target && user != target) || user.a_intent != I_GRAB) + return FALSE + . = ..() + if(.) + + for(var/element in paths_elements) + var/obj/item/I = new element (src) + items_elements += I + var/image/img = image(icon = I.icon, icon_state = I.item_state) + img.name = I.name + images[I] = img + + var/obj/item = show_radial_menu(user, user, images, radius = 30, require_near = TRUE) + if(item && !user.psi.suppressed) + var/item_type = item.type + . = new item_type(user) + + for(item in items_elements) + qdel(item) + + images.Cut() + items_elements.Cut() diff --git a/mods/psionics/code/faculties/psychokinesis.dm b/mods/psionics/code/faculties/psychokinesis.dm new file mode 100644 index 0000000000000..ae8d393c31389 --- /dev/null +++ b/mods/psionics/code/faculties/psychokinesis.dm @@ -0,0 +1,578 @@ +/singleton/psionic_faculty/psychokinesis + id = PSI_PSYCHOKINESIS + name = "Teleplexy" + associated_intent = I_GRAB + armour_types = list("melee", "bullet") + +/singleton/psionic_power/psychokinesis + faculty = PSI_PSYCHOKINESIS + use_sound = null + abstract_type = /singleton/psionic_power/psychokinesis + +/singleton/psionic_power/psychokinesis/telekinesis + name = "Telekinesis" + cost = 10 + cooldown = 15 + use_ranged = TRUE + use_manifest = FALSE + min_rank = PSI_RANK_APPRENTICE + use_description = "Нажмите по отдалённом объекту или существу на жёлтом интенте с выбранной головой или телом, чтобы захватить его телекинезом." + admin_log = FALSE + use_sound = 'sound/effects/psi/power_used.ogg' + var/global/list/valid_machine_types = list( + /obj/machinery + ) + +/singleton/psionic_power/psychokinesis/telekinesis/invoke(mob/living/user, mob/living/target) + if((user.zone_sel.selecting in list(BP_L_ARM, BP_R_ARM, BP_L_HAND, BP_R_HAND, BP_HEAD))) + return FALSE + if((user.zone_sel.selecting in list(BP_L_LEG, BP_R_LEG, BP_L_FOOT, BP_R_FOOT))) + return FALSE + if(user.a_intent != I_GRAB) + return FALSE + . = ..() + if(.) + + var/distance = get_dist(user, target) + if(distance > user.psi.get_rank(PSI_PSYCHOKINESIS) + 2) + to_chat(user, "Ваших сил недостаточно, чтобы достать до этого объекта.") + return FALSE + + if(istype(target, /obj/structure)) + user.visible_message("[user] вытягивает руку вперёд, чуть сжимая пальцы.") + var/obj/O = target + O.attack_hand(user) + return TRUE + else if(istype(target, /obj/machinery)) + for(var/mtype in valid_machine_types) + if(istype(target, mtype)) + var/obj/machinery/machine = target + return machine.do_simple_ranged_interaction(user) + else if(istype(target, /mob) || istype(target, /obj)) + var/obj/item/psychic_power/telekinesis/tk = new(user) + if(tk.set_focus(target)) + tk.sparkle() + user.visible_message("[user] вытягивает руку вперёд, чуть сжимая пальцы.") + return tk + + return FALSE + +/singleton/psionic_power/psychokinesis/gravigeddon + name = "Repulse" + cost = 30 + cooldown = 150 + use_ranged = TRUE + use_melee = TRUE + min_rank = PSI_RANK_OPERANT + use_description = "Выберите руки или кисти на жёлтом интенте, а затем нажмите куда угодно, чтобы разбросать всё вокруг себя мощной волной." + +/singleton/psionic_power/psychokinesis/gravigeddon/invoke(mob/living/user, mob/living/target) + if(!(user.zone_sel.selecting in list(BP_L_ARM, BP_R_ARM, BP_L_HAND, BP_R_HAND))) + return FALSE + . = ..() + if(.) + user.visible_message(SPAN_DANGER("[user] размахивает руками, крича!")) + to_chat(user, SPAN_DANGER("Вы выпускаете мощную псионическую волну, разметая всё вокруг!")) + var/pk_rank = user.psi.get_rank(PSI_PSYCHOKINESIS) + new /obj/temporary(get_turf(user),9, 'icons/effects/effects.dmi', "summoning") + var/list/mobs = GLOB.alive_mobs + GLOB.dead_mobs + for(var/mob/living/M in mobs) + if(M == user) + continue + if(get_dist(user, M) > user.psi.get_rank(PSI_PSYCHOKINESIS)) + continue + if(prob(20) && iscarbon(M)) + var/mob/living/carbon/C = M + if(C.can_feel_pain()) + C.emote("scream") + if(!M.anchored && !M.buckled) + to_chat(M, SPAN_DANGER("Грубая сила ударяет в твоё тело, отправляя тебя в свободный полёт!")) + new /obj/temporary(get_turf(M),4, 'icons/effects/effects.dmi', "smash") + M.throw_at(get_edge_target_turf(M, get_dir(user, M)), pk_rank*2, pk_rank*2, user) + return TRUE + +///WHAT CAN'T BE PUCNED/// + +/obj + var/can_be_telepunched = 1 + +/obj/structure/shuttle + can_be_telepunched = 0 + +/obj/structure/sign + can_be_telepunched = 0 + +/obj/structure/railing + can_be_telepunched = 0 + +/obj/structure/pit + can_be_telepunched = 0 + +/obj/structure/stairs + can_be_telepunched = 0 + +/obj/structure/net + can_be_telepunched = 0 + +/obj/structure/net + can_be_telepunched = 0 + +/obj/structure/m_tray + can_be_telepunched = 0 + +/obj/structure/lattice + can_be_telepunched = 0 + +/obj/structure/ladder + can_be_telepunched = 0 + +/obj/structure/hygiene/drain + can_be_telepunched = 0 + +/obj/structure/holosign + can_be_telepunched = 0 + +/obj/structure/holonet + can_be_telepunched = 0 + +/obj/structure/holohoop + can_be_telepunched = 0 + +/obj/structure/handrail + can_be_telepunched = 0 + +/obj/structure/fuel_port + can_be_telepunched = 0 + +/obj/structure/fountain + can_be_telepunched = 0 + +/obj/structure/flora + can_be_telepunched = 0 +/obj/structure/flora/pottedplant + can_be_telepunched = 1 + +/obj/structure/fireaxecabinet + can_be_telepunched = 0 + +/obj/structure/catwalk + can_be_telepunched = 0 + +/obj/structure/extinguisher_cabinet + can_be_telepunched = 0 + +/obj/structure/disposalpipe + can_be_telepunched = 0 + +/obj/structure/chorus + can_be_telepunched = 0 + +/obj/structure/cable + can_be_telepunched = 0 + +/// + +/obj/machinery/wish_granter + can_be_telepunched = 0 + +/obj/machinery/bluespacedrive + can_be_telepunched = 0 + +/obj/machinery/shield_diffuser + can_be_telepunched = 0 + +/obj/machinery/self_destruct + can_be_telepunched = 0 + +/obj/machinery/requests_console + can_be_telepunched = 0 + +/obj/machinery/readybutton + can_be_telepunched = 0 + +/obj/machinery/power + can_be_telepunched = 0 + +/obj/machinery/pager + can_be_telepunched = 0 + +/obj/machinery/newscaster + can_be_telepunched = 0 + +/obj/machinery/navbeacon + can_be_telepunched = 0 + +/obj/machinery/meter + can_be_telepunched = 0 + +/obj/machinery/mech_recharger + can_be_telepunched = 0 + +/obj/machinery/mass_driver + can_be_telepunched = 0 + +/obj/machinery/magnetic_accelerator + can_be_telepunched = 0 + +/obj/machinery/light_switch + can_be_telepunched = 0 + +/obj/machinery/light_construct + can_be_telepunched = 0 + +/obj/machinery/light + can_be_telepunched = 0 + +/obj/machinery/keycard_auth + can_be_telepunched = 0 + +/obj/machinery/igniter + can_be_telepunched = 0 + +/obj/machinery/holosign + can_be_telepunched = 0 + +/obj/machinery/hologram + can_be_telepunched = 0 + +/obj/machinery/firealarm + can_be_telepunched = 0 +/obj/machinery/alarm + can_be_telepunched = 0 + +/obj/machinery/door_timer + can_be_telepunched = 0 + +/obj/machinery/disposal_switch + can_be_telepunched = 0 + +/obj/machinery/conveyor_switch + can_be_telepunched = 0 + +/obj/machinery/containment_field + can_be_telepunched = 0 + +/obj/machinery/clamp + can_be_telepunched = 0 + +/obj/machinery/button + can_be_telepunched = 0 + +/obj/machinery/body_scanconsole + can_be_telepunched = 0 +/obj/machinery/body_scan_display + can_be_telepunched = 0 + +/obj/machinery/atmospherics + can_be_telepunched = 0 + +/obj/machinery/atm + can_be_telepunched = 0 + +/obj/machinery/airlock_sensor + can_be_telepunched = 0 +/obj/machinery/air_sensor + can_be_telepunched = 0 +/obj/machinery/access_button + can_be_telepunched = 0 + +/obj/machinery/ai_status_display + can_be_telepunched = 0 + +/// /// + +/singleton/psionic_power/psychokinesis/tele_punch + name = "Telekinetic Punch" + cost = 20 + cooldown = 50 + use_ranged = TRUE + use_melee = TRUE + min_rank = PSI_RANK_APPRENTICE + use_description = "Выберите голову на красном интенте, а затем нажмите по цели, чтобы совершить усиленный телекинетический удар." + +/singleton/psionic_power/psychokinesis/tele_punch/invoke(mob/living/carbon/user, mob/living/target) + + var/pk_rank_user = user.psi.get_rank(PSI_PSYCHOKINESIS) + + if(pk_rank_user < PSI_RANK_GRANDMASTER && get_dist(user, target) > 1) + return FALSE + + var/obj/item/organ/external/E = user.organs_by_name[BP_L_HAND] + if(!E || E.is_stump()) + return FALSE + + E = user.organs_by_name[BP_R_HAND] + if(!E || E.is_stump()) + return FALSE + + if(user.zone_sel.selecting != BP_HEAD) + return FALSE + if(user.a_intent != I_HURT) + return FALSE + +//OBJ RELATED CHECKS START// + + if(istype(target, /obj/structure) || istype(target, /obj/machinery)) + var/obj/OBJ = target + if(!OBJ.can_be_telepunched) + return FALSE + +//OBJ RELATED CHECKS END// + + . = ..() + if(.) + if(pk_rank_user <= PSI_RANK_OPERANT) + user.visible_message(SPAN_DANGER("[user] заносит руку назад, совершая резкий удар, буквально разрезающий воздух!")) + + if(istype(target, /obj/structure) || istype(target, /obj/machinery)) + user.visible_message("[user] толкает [target] вперёд!") + var/obj/O = target + if(O.anchored == TRUE) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") + O.throw_at(get_edge_target_turf(O, get_dir(user, O)), 1, 2, user) + return TRUE + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") + O.throw_at(get_edge_target_turf(O, get_dir(user, O)), 4, 2, user) + return TRUE + +//ENEMY PSI CHECK START + + if(target.psi) + var/pk_rank_target = target.psi.get_rank(PSI_PSYCHOKINESIS) + if(pk_rank_target >= pk_rank_user && !target.psi.suppressed) + if(prob(20)) + to_chat(target, SPAN_NOTICE("Каким-то чудом, [user] пробивается через ваше силовое поле, нанося сокрушительный урон!")) + target.visible_message(SPAN_DANGER("[target] ловит лицом кулак, улетая назад!")) + if(!user.skill_check(SKILL_HAULING, SKILL_EXPERIENCED)) + + user.apply_damage(rand(15,30),DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) + to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и кожа на вашей руке стирается в кровь!")) + + for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) + target.apply_damage(rand(15,30),DAMAGE_BRUTE,def_zone=zone) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") + target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 1, 2, user) + return TRUE + + else + to_chat(target, SPAN_NOTICE("Ваше силовое поле успешно сдержало удар, пускай на это и ушло приличное количество концентрации.")) + target.psi.spend_power(10) + for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) + user.apply_damage(rand(15,30),DAMAGE_BRUTE,def_zone=zone) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") + user.throw_at(get_edge_target_turf(user, get_dir(target, user)), 1, 2, target) + user.visible_message(SPAN_DANGER("Мощное силовое поле [target] отбрасывает [user] назад, создавая мощную обратную волну!")) + return TRUE + +//ENEMY PSI CHECK END + + if(!user.skill_check(SKILL_HAULING, SKILL_EXPERIENCED)) + + user.apply_damage(rand(15,30),DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) + to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и кожа на вашей руке стирается в кровь!")) + + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") + target.visible_message(SPAN_DANGER("[target] ловит лицом кулак, улетая назад!")) + for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) + target.apply_damage(rand(15,30),DAMAGE_BRUTE,def_zone=zone) + + target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 1, 2, user) + + return TRUE + + +///MASTER/// + + + if(pk_rank_user == PSI_RANK_MASTER) + user.visible_message(SPAN_DANGER("[user] заносит руку назад, совершая резкий удар, буквально разрезающий воздух!")) + + if(istype(target, /obj/structure) || istype(target, /obj/machinery)) + user.visible_message("[user] толкает [target] вперёд!") + var/obj/O = target + if(O.anchored == TRUE) + O.anchored = FALSE + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") + O.throw_at(get_edge_target_turf(O, get_dir(user, O)), 6, 2, user) + return TRUE + +//ENEMY PSI CHECK START + + if(target.psi) + var/pk_rank_target = target.psi.get_rank(PSI_PSYCHOKINESIS) + if(pk_rank_target >= pk_rank_user && !target.psi.suppressed) + if(prob(40)) + to_chat(target, SPAN_NOTICE("Каким-то чудом, [user] пробивается через ваше силовое поле, нанося сокрушительный урон!")) + target.visible_message(SPAN_DANGER("[target] ловит лицом кулак, улетая назад!")) + if(!user.skill_check(SKILL_HAULING, SKILL_EXPERIENCED)) + + user.apply_damage(rand(30,40),DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) + to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и вашу руку выворачивает наизнанку!")) + + for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) + target.apply_damage(rand(25,40),DAMAGE_BRUTE,def_zone=zone) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") + new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") + target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 3, 2, user) + return TRUE + + else + to_chat(target, SPAN_NOTICE("Ваше силовое поле успешно сдержало удар, пускай на это и ушло приличное количество концентрации.")) + target.psi.spend_power(10) + for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) + user.apply_damage(rand(25,40),DAMAGE_BRUTE,def_zone=zone) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") + new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") + user.throw_at(get_edge_target_turf(user, get_dir(target, user)), 3, 2, target) + user.visible_message(SPAN_DANGER("Мощное силовое поле [target] отбрасывает [user] назад, создавая мощную обратную волну!")) + return TRUE + +//ENEMY PSI CHECK END + + if(!user.skill_check(SKILL_HAULING, SKILL_EXPERIENCED)) + + user.apply_damage(rand(30,40),DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) + to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и вашу руку выворачивает наизнанку!")) + + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") + new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") + target.visible_message(SPAN_DANGER("[target] ловит лицом кулак, улетая назад!")) + for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) + target.apply_damage(rand(25,40),DAMAGE_BRUTE,def_zone=zone) + + target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 3, 2, user) + + return TRUE + + +///GRANDMASTER/// + + + if(pk_rank_user == PSI_RANK_GRANDMASTER) + user.visible_message(SPAN_DANGER("[user] заносит руку назад, совершая резкий удар, буквально разрезающий воздух!")) + + if(istype(target, /obj/structure) || istype(target, /obj/machinery)) + user.visible_message("[user] толкает [target] вперёд!") + var/obj/O = target + if(O.anchored == TRUE) + O.anchored = FALSE + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") + O.throw_at(get_edge_target_turf(O, get_dir(user, O)), 8, 2, user) + return TRUE + + var/mob/living/M = target + if(get_dist(user, M) <= 6) + var/turf/target_turf = get_step(get_turf(target), pick(GLOB.alldirs)) + var/list/line_list = getline(user, target_turf) + for(var/i = 1 to length(line_list)) + var/turf/T = line_list[i] + var/obj/temp_visual/decoy/D = new /obj/temp_visual/decoy(T, user.dir, user) + D.alpha = min(150 + i*15, 255) + animate(D, alpha = 0, time = 2 + i*2) + user.forceMove(target_turf) + +//ENEMY PSI CHECK START + + if(target.psi) + var/pk_rank_target = target.psi.get_rank(PSI_PSYCHOKINESIS) + if(pk_rank_target >= pk_rank_user && !target.psi.suppressed) + if(prob(60)) + to_chat(target, SPAN_NOTICE("Каким-то чудом, [user] пробивается через ваше силовое поле, нанося сокрушительный урон!")) + target.visible_message(SPAN_DANGER("[target] ловит лицом кулак, улетая назад!")) + if(!user.skill_check(SKILL_HAULING, SKILL_EXPERIENCED)) + + user.apply_damage(60,DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) + to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и вашу руку выворачивает наизнанку!")) + + for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) + target.apply_damage(rand(40,60),DAMAGE_BRUTE,def_zone=zone) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") + new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") + target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 6, 2, user) + return TRUE + + else + to_chat(target, SPAN_NOTICE("Ваше силовое поле успешно сдержало удар, пускай на это и ушло приличное количество концентрации.")) + target.psi.spend_power(10) + for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) + user.apply_damage(rand(40,60),DAMAGE_BRUTE,def_zone=zone) + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") + new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") + user.throw_at(get_edge_target_turf(user, get_dir(target, user)), 6, 2, target) + user.visible_message(SPAN_DANGER("Мощное силовое поле [target] отбрасывает [user] назад, создавая мощную обратную волну!")) + return TRUE + +//ENEMY PSI CHECK END + + if(!user.skill_check(SKILL_HAULING, SKILL_EXPERIENCED)) + + user.apply_damage(60,DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) + to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и вашу руку выворачивает наизнанку!")) + + new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") + new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") + target.visible_message(SPAN_DANGER("[target] ловит лицом кулак, улетая назад!")) + for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) + target.apply_damage(rand(40,60),DAMAGE_BRUTE,def_zone=zone) + + target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 6, 2, user) + + return TRUE + +/obj/structure/girder/rock + icon_state = "ground rock" + anchored = TRUE + density = TRUE + layer = ABOVE_HUMAN_LAYER + w_class = ITEM_SIZE_NO_CONTAINER + health_max = 200 + icon = 'icons/effects/psi_effects.dmi' + icon_state = "earth_pillar_2" + +/obj/structure/girder/rock/use_tool(obj/item/W, mob/user) + if (user.a_intent == I_HURT) + ..() + return + + if(istype(W, /obj/item/pickaxe/diamonddrill)) + playsound(src.loc, 'sound/weapons/Genhit.ogg', 100, 1) + if(do_after(user,reinf_material ? 60 : 40,src)) + to_chat(user, "You drill through the rock!") + if(reinf_material) + reinf_material.place_dismantled_product(get_turf(src)) + dismantle() + return + +/obj/structure/girder/rock/dismantle() + qdel(src) + +/singleton/psionic_power/psychokinesis/rock_shield + name = "Ground Shield" + cost = 10 + cooldown = 30 + use_melee = TRUE + use_ranged = TRUE + min_rank = PSI_RANK_OPERANT + + use_description = "Выберите любую ногу или пятку на жёлтом интенте, а затем нажмите по ближайшему куску земли, чтобы поднять его вверх." + +/singleton/psionic_power/psychokinesis/rock_shield/invoke(mob/living/carbon/user, turf/simulated/target) + if(!(user.zone_sel.selecting in list(BP_L_LEG, BP_R_LEG, BP_L_FOOT, BP_R_FOOT))) + return FALSE + + if(!target) + to_chat(user, SPAN_NOTICE("Данный материал слабо подойдёт для тех задач, для которых вы хотите использовать его!")) + return FALSE + + . = ..() + if(.) + if(istype(target, /turf/simulated/floor/exoplanet)) + var/turf/A = target + if(do_after(user, 10)) + user.visible_message("[user] возводит каменную стену!") + new /obj/temporary(A, 9, 'icons/effects/psi_effects.dmi', "earth_pillar_0") + spawn(1 SECONDS) + new /obj/structure/girder/rock(get_turf(A)) + return TRUE + else + return FALSE diff --git a/mods/psionics/code/faculties/redaction.dm b/mods/psionics/code/faculties/redaction.dm new file mode 100644 index 0000000000000..34064f7b23bda --- /dev/null +++ b/mods/psionics/code/faculties/redaction.dm @@ -0,0 +1,306 @@ +/singleton/psionic_faculty/redaction + id = PSI_REDACTION + name = "Ephanoferia" + associated_intent = I_HELP + armour_types = list("bio", "rad") + +/singleton/psionic_power/redaction + faculty = PSI_REDACTION + admin_log = FALSE + abstract_type = /singleton/psionic_power/redaction + +/singleton/psionic_power/redaction/proc/check_dead(mob/living/target) + if(!istype(target)) + return FALSE + if(target.stat == DEAD || (target.status_flags & FAKEDEATH)) + return TRUE + return FALSE + +/singleton/psionic_power/redaction/invoke(mob/living/user, mob/living/target) + if(check_dead(target)) + return FALSE + . = ..() + +/singleton/psionic_power/redaction/skinsight + name = "Skinsight" + cost = 3 + cooldown = 30 + use_grab = TRUE + min_rank = PSI_RANK_APPRENTICE + use_description = "Схватите цель, выберите верхнюю часть тела и зелёный интент, затем нажав по нему захватом ещё раз, чтобы проверить его физическое состояние." + +/singleton/psionic_power/redaction/skinsight/invoke(mob/living/user, mob/living/target) + if(user.zone_sel.selecting != BP_CHEST) + return FALSE + . = ..() + if(.) + user.visible_message(SPAN_NOTICE("[user] кладёт руку на [target].")) + to_chat(user, medical_scan_results(target, TRUE, SKILL_MAX)) + return TRUE + +/singleton/psionic_power/redaction/mend + name = "Mend" + cost = 7 + cooldown = 50 + use_melee = TRUE + min_rank = PSI_RANK_APPRENTICE + use_description = "Выберите любую часть тела на зелёном интенте и нажмите по цели, чтобы убрать возможные ранения с указанной зоны." + +//UPDATED + +/singleton/psionic_power/redaction/mend/invoke(mob/living/user, mob/living/carbon/human/target) + var/red_rank = user.psi.get_rank(PSI_REDACTION) + var/pk_rank = user.psi.get_rank(PSI_PSYCHOKINESIS) + var/obj/item/organ/external/E = target.get_organ(user.zone_sel.selecting) + if(!istype(user) || !istype(target)) + return FALSE + . = ..() + if(.) + var/option = input(user, "Выберите что-нибудь!", "Какую помощь вы хотите оказать [target]?") in list("Базовая", "Переломы", "Кровотечение", "Конечности", "Органы") + user.psi.set_cooldown(cooldown) + if (!option) + return + if(option == "Базовая") + if(do_after(user, 20)) + user.visible_message(SPAN_NOTICE("[user] кладёт руки на плечи [target]...")) + to_chat(target, SPAN_NOTICE("Вы ощущаете приятное тепло...ваши раны заживают.")) + new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "redaction_healing") + + if(user.skill_check(SKILL_ANATOMY, SKILL_TRAINED) && user.skill_check(SKILL_MEDICAL, SKILL_TRAINED)) + to_chat(user, SPAN_NOTICE("Помимо прочего, благодаря имеющимся навыкам, вам удалогсь залечить некоторые из менее заметных ран [target], значительно ускорив его реабилитацию.")) + target.adjustBruteLoss(-rand(20,40)) + target.adjustFireLoss(-rand(20,40)) + + target.adjustBruteLoss(-(rand(10,20) * red_rank)) + target.adjustFireLoss(-(rand(10,20) * red_rank)) + if(pk_rank >= PSI_RANK_OPERANT) + var/removal_size = clamp(5-pk_rank, 0, 5) + var/valid_objects = list() + for(var/thing in E.implants) + var/obj/imp = thing + + if(!imp) + continue + + if(imp.w_class >= removal_size && !istype(imp, /obj/item/implant)) + valid_objects += imp + if(LAZYLEN(valid_objects)) + var/removing = pick(valid_objects) + target.remove_implant(removing, TRUE) + to_chat(user, SPAN_NOTICE("Помимо прочего, вы также извлекли [removing] из [E.name] вашего пациента.")) + return 1 + if(option == "Переломы") + +//It's easier to repair severed tendon, than put bones in place or either repair it structure, so no rank check + + if(E.status & ORGAN_TENDON_CUT) + if(do_after(user, 40)) + new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "redaction_healing") + to_chat(user, SPAN_NOTICE("Вы аккуратно сплели новое сухожилие на месте повреждённого в [E.name].")) + E.status &= ~ORGAN_TENDON_CUT + return 1 + + if(red_rank < PSI_RANK_OPERANT) + to_chat(user, SPAN_WARNING("Боюсь, ваших сил недостаточно для проведения данной операции!")) + return 0 + if(!E) + to_chat(user, SPAN_WARNING("Эта конечность отсутствует!")) + return 0 + if(BP_IS_ROBOTIC(E)) + to_chat(user, SPAN_WARNING("Эта конечность заменена протезом.")) + return 0 + if(E.is_stump()) + to_chat(user, SPAN_WARNING("Нет смысла тратить силы на этот обрубок. Здесь вы бессильны.")) + return 0 + if(E.status & ORGAN_BROKEN) + user.visible_message(SPAN_NOTICE("[user] кладёт руку на [target]'s [E.name]...")) + if(do_after(user, 60)) + new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "redaction_healing") + if(!user.skill_check(SKILL_ANATOMY, SKILL_BASIC)) + if(prob(30)) + to_chat(user, SPAN_WARNING("Вы кое-как попытались вновь соединить кости [target], однако сделали своей неопытностью только хуже.")) + target.apply_damage(20,DAMAGE_BRUTE,E) + return 0 + to_chat(user, SPAN_NOTICE("Вы установили кости на их прежнее место, заделав образовавшиеся на их поверхности трещины.")) + E.status &= ~ORGAN_BROKEN + E.stage = 0 + to_chat(target, SPAN_NOTICE("Вы ощущаете приятное тепло в районе [E.name]...кости начинают вставать на место.")) + return 1 + else + to_chat(user, SPAN_WARNING("[E.name] не имеет никаких внутренних повреждений!")) + return 0 + + if(option == "Кровотечение") + if(red_rank < PSI_RANK_OPERANT) + to_chat(user, SPAN_WARNING("Боюсь, ваших сил недостаточно для проведения данной операции!")) + return 0 + if(!E) + to_chat(user, SPAN_WARNING("Эта конечность отсутствует!")) + return 0 + if(BP_IS_ROBOTIC(E)) + to_chat(user, SPAN_WARNING("Эта конечность заменена протезом.")) + return 0 + if(E.is_stump()) + to_chat(user, SPAN_WARNING("Нет смысла тратить силы на этот обрубок. Здесь вы бессильны.")) + return 0 + if(E.status & ORGAN_ARTERY_CUT) + if(do_after(user, 60)) + new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "redaction_healing") + if(!user.skill_check(SKILL_ANATOMY, SKILL_BASIC)) + if(prob(30)) + to_chat(user, SPAN_WARNING("Ваша попытка связать разорванные вены в [E.name] закончились ужасным провалом.")) + target.apply_damage(20,DAMAGE_BRUTE,E) + return 0 + to_chat(user, SPAN_NOTICE("Вы вновь связали разованные вены в [E.name], останавливая внутреннее кровотечение.")) + to_chat(target, SPAN_NOTICE("Вы ощущаете неприятное чувство в районе [E.name]...словно кто-то вновь сплетает ваши вены воедино.")) + E.status &= ~ORGAN_ARTERY_CUT + return 1 + for(var/datum/wound/W in E.wounds) + if(W.bleeding()) + if(W.wound_damage() < 30) + if(do_after(user, 30)) + to_chat(user, SPAN_NOTICE("Вы аккуратно перекрыли поток крови, хлыщащий из [E.name], устранив протечку и зашив её.")) + to_chat(target, SPAN_NOTICE("Вы ощущаете приятное тепло в районе [E.name]...кровь, ранее шедшая из этого места - остановилась.")) + new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "redaction_healing") + W.bleed_timer = 0 + W.clamped = TRUE + E.status &= ~ORGAN_BLEEDING + return 1 + else + to_chat(user, SPAN_NOTICE("Это ранение превыше ваших сил.")) + return 0 + else + to_chat(user, SPAN_WARNING("[E.name] не имеет никаких внутренних повреждений!")) + return 0 + + if(option == "Конечности") + if(red_rank < PSI_RANK_MASTER) + to_chat(user, SPAN_WARNING("Боюсь, ваших сил недостаточно для проведения данной операции!")) + return 0 + if(red_rank >= PSI_RANK_MASTER) + + if(!E) + var/what = alert(user, "Вы уверены, что хотите прибегнуть к трансплантации?", "Обратная связь", "Да", "Нет") + switch(what) + if("Да") + if(do_after(user, 120)) + // Remove all stumps first + for(var/O in target.organs_by_name) + var/obj/item/organ/external/S = target.organs_by_name[O] + if(S.is_stump()) + target.visible_message(SPAN_WARNING("[S.name] рассыпается, а на его месте начинает формироваться нечто новое...")) + qdel(S) + var/list/missing_limbs = target.species.has_limbs - target.organs_by_name + if(do_after(user, 30)) + if(!LAZYLEN(missing_limbs)) + return + var/o_type = pick(missing_limbs) + new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "redaction_healing") + missing_limbs -= o_type + var/limb_type = target.species.has_limbs[o_type]["path"] + var/obj/new_limb = new limb_type(target) + target.visible_message(SPAN_DANGER("Место на теле [target], где раньше был лишь обрубок - внезапно начинает формировать новую [new_limb.name]!")) + user.visible_message(SPAN_DANGER("[user] выглядит крайне обессиленным.")) + if(!user.skill_check(SKILL_ANATOMY, SKILL_TRAINED) || !user.skill_check(SKILL_MEDICAL, SKILL_BASIC)) + if(prob(60)) + var/limb = pick(BP_L_LEG,BP_R_LEG, BP_L_HAND, BP_R_HAND) + to_chat(user, SPAN_WARNING("Ваша некомпетентность привела к тому, что во время восстановления [new_limb.name] вы нанесли критический урон вашей конечности!")) + user.apply_damage(80,DAMAGE_BRUTE,limb) + user.adjustBruteLoss(rand(30,40)) + user.psi.spend_power(30) + + target.regenerate_icons() + + else + return 0 + + if(option == "Органы") + if(red_rank < PSI_RANK_MASTER) + to_chat(user, SPAN_WARNING("Боюсь, ваших сил недостаточно для проведения данной операции!")) + return 0 + if(red_rank >= PSI_RANK_MASTER) + for(var/obj/item/organ/internal/I in E.internal_organs) + if(!BP_IS_ROBOTIC(I) && !BP_IS_CRYSTAL(I) && I.damage > 0) + if(do_after(user, 120)) + to_chat(user, SPAN_NOTICE("Вы проникаете внутрь тела [target], восстанавливая повреждённый орган: [I].")) + new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "redaction_healing") + var/heal_rate = red_rank + if(!user.skill_check(SKILL_ANATOMY, SKILL_TRAINED) || !user.skill_check(SKILL_MEDICAL, SKILL_BASIC)) + if(prob(60)) + to_chat(user, SPAN_WARNING("Однако, ваша неопытность приводит к тому, что [target] получает ещё больше урона!")) + I.damage = max(0, I.damage + rand(5,10)) + return 0 + I.damage = max(0, I.damage - rand(heal_rate,heal_rate*3)) + return 1 + +/singleton/psionic_power/redaction/cleanse + name = "Cleanse" + cost = 9 + cooldown = 60 + use_melee = TRUE + min_rank = PSI_RANK_MASTER + use_description = "Нажмите по цели на зелёном интенте, чтобы очистить его от генетических отклонений и иных воздействий радиации." + +/singleton/psionic_power/redaction/cleanse/invoke(mob/living/user, mob/living/carbon/human/target) + if(!istype(user) || !istype(target)) + return FALSE + . = ..() + if(.) + // No messages, as Mend procs them even if it fails to heal anything, and Cleanse is always checked after Mend. + var/removing = rand(20,25) + if(target.radiation) + to_chat(user, SPAN_NOTICE("Вы выводите нежелательные частицы из тела [target]...")) + if(target.radiation > removing) + target.radiation -= removing + else + target.radiation = 0 + return TRUE + if(target.getCloneLoss()) + to_chat(user, SPAN_NOTICE("Вы с трудом восстанавливаете прежнюю структуру ДНК [target]...")) + if(target.getCloneLoss() >= removing) + target.adjustCloneLoss(-removing) + else + target.adjustCloneLoss(-(target.getCloneLoss())) + return TRUE + to_chat(user, SPAN_NOTICE("Похоже, что у [target] нет ни радиационного заражения, не генетических отклонений.")) + return FALSE + +/singleton/psionic_power/revive + name = "Revive" + cost = 25 + cooldown = 80 + use_grab = TRUE + min_rank = PSI_RANK_GRANDMASTER + faculty = PSI_REDACTION + use_description = "Схватите цель, выберите голову и зелёный интент, затем нажмите по нему захватом, чтобы попытаться вернуть его к жизни." + admin_log = FALSE + +/singleton/psionic_power/revive/invoke(mob/living/user, mob/living/target) + if(!isliving(target) || !istype(target) || user.zone_sel.selecting != BP_HEAD) + return FALSE + . = ..() + if(.) + if(target.stat != DEAD && !(target.status_flags & FAKEDEATH)) + to_chat(user, SPAN_WARNING("Этот человек ещё жив!")) + return TRUE + + if((world.time - target.timeofdeath) > 6000) + to_chat(user, SPAN_WARNING("[target] пролежал здесь слишком долго. Нет никакой надежды на то, что его выйдет оживить.")) + return TRUE + + user.visible_message(SPAN_NOTICE("[user] кладёт обе руки на тело [target]...")) + new /obj/temporary(get_turf(target),6, 'icons/effects/effects.dmi', "green_sparkles") + if(!do_after(user, 100, target)) + user.psi.backblast(rand(10,25)) + return TRUE + + for(var/mob/observer/G in GLOB.dead_mobs) + if(G.mind && G.mind.current == target && G.client) + to_chat(G, SPAN_NOTICE("Your body has been revived, Re-Enter Corpse to return to it.")) + break + to_chat(target, SPAN_NOTICE("Жизненные силы снова наполняют ваше тело.")) + target.visible_message(SPAN_NOTICE("[target] трясётся в ужасе!")) + new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "rune_convert") + target.adjustOxyLoss(-rand(30,45)) + target.basic_revival() + return TRUE diff --git a/mods/psionics/code/interface/ui.dm b/mods/psionics/code/interface/ui.dm new file mode 100644 index 0000000000000..032cfcaf8eb68 --- /dev/null +++ b/mods/psionics/code/interface/ui.dm @@ -0,0 +1,21 @@ +/obj/screen/psi + icon = 'icons/screen/psi.dmi' + var/mob/living/owner + var/hidden = TRUE + +/obj/screen/psi/Initialize(mapload) + . = ..() + owner = loc + loc = null + update_icon() + +/obj/screen/psi/Destroy() + if(owner && owner.client) + owner.client.screen -= src + . = ..() + +/obj/screen/psi/on_update_icon() + if(hidden) + invisibility = INVISIBILITY_ABSTRACT + else + invisibility = 0 diff --git a/mods/psionics/code/interface/ui_hub.dm b/mods/psionics/code/interface/ui_hub.dm new file mode 100644 index 0000000000000..79593dc1eed4f --- /dev/null +++ b/mods/psionics/code/interface/ui_hub.dm @@ -0,0 +1,96 @@ +/obj/screen/psi/hub + name = "Psi" + icon_state = "psi_suppressed" + screen_loc = "EAST-1:28,CENTER-3:11" + hidden = FALSE + maptext_x = 6 + maptext_y = -8 + var/image/on_cooldown + var/list/components + +/obj/screen/psi/hub/Initialize(mapload) + . = ..() + on_cooldown = image(icon, "cooldown") + components = list( + new /obj/screen/psi/armour(owner), + new /obj/screen/psi/toggle_psi_menu(owner, src) + ) + START_PROCESSING(SSprocessing, src) + +/obj/screen/psi/hub/on_update_icon() + + if(!owner.psi) + return + + icon_state = owner.psi.suppressed ? "psi_suppressed" : "psi_active" + if(world.time < owner.psi.next_power_use) + AddOverlays(on_cooldown) + else + ClearOverlays() +/* var/offset = 1 + for(var/thing in components) + var/obj/screen/psi/component = thing + component.update_icon() + if(!component.invisibility) component.screen_loc = "EAST-[++offset]:28,CENTER-3:11"*/ + +//FD PSIONICS// + var/length = LAZYLEN(components) + var/x_offset = 1 + var/y_offset = 3 + + for(var/thing in components) + var/obj/screen/psi/component = thing + component.update_icon() + + var/is_menu_toggle = components.Find(component) == length + if(x_offset > 3 && !is_menu_toggle) + x_offset = y_offset > 4 ? 2 : 1 + y_offset++ + + if(!component.invisibility) + component.screen_loc = "EAST-[++x_offset]:28,CENTER-[y_offset]:11" +//FD PSIONICS// + +/obj/screen/psi/hub/Destroy() + STOP_PROCESSING(SSprocessing, src) + owner = null + for(var/thing in components) + qdel(thing) + components.Cut() + . = ..() + +/obj/screen/psi/hub/Process() + if(!istype(owner)) + qdel(src) + return + if(!owner.psi) + return + maptext = "[round((owner.psi.stamina/owner.psi.max_stamina)*100)]%" + update_icon() + +/obj/screen/psi/hub/Click(location, control, click_params) + var/list/params = params2list(click_params) + if(params["shift"]) + owner.show_psi_assay(owner) + return + + if(owner.psi.suppressed && owner.psi.stun) + to_chat(owner, SPAN_WARNING("You are dazed and reeling, and cannot muster enough focus to do that!")) + return + + owner.psi.suppressed = !owner.psi.suppressed + to_chat(owner, SPAN_NOTICE("You are [owner.psi.suppressed ? "now suppressing" : "no longer suppressing"] your psi-power.")) + if(owner.psi.suppressed) + var/mob/living/carbon/human/A = owner + if(A.levitation) + A.levitation = FALSE + A.pass_flags &= ~PASS_FLAG_TABLE + A.pixel_y = 0 + A.overlays -= image('icons/screen/psi.dmi', "levitation") + A.stop_floating() + owner.psi.cancel() + owner.psi.hide_auras() + else + sound_to(owner, sound('sound/effects/psi/power_unlock.ogg')) + owner.psi.show_auras() + update_icon() diff --git a/mods/psionics/code/interface/ui_toggles.dm b/mods/psionics/code/interface/ui_toggles.dm new file mode 100644 index 0000000000000..5faa69d2aa3ce --- /dev/null +++ b/mods/psionics/code/interface/ui_toggles.dm @@ -0,0 +1,106 @@ +// Begin psi armour toggle. +/obj/screen/psi/armour + name = "Psi-Armour" + icon_state = "psiarmour_off" + +/obj/screen/psi/armour/on_update_icon() + ..() + if(invisibility == 0) + icon_state = owner.psi.use_psi_armour ? "psiarmour_on" : "psiarmour_off" + +/mob/living/carbon/human + var/levitation = FALSE + +/mob/living/carbon/human/Life() + if(src.levitation) + src.psi.spend_power(8) + ..() + +/obj/screen/psi/armour/Click() + if(!owner.psi) + return + owner.psi.use_psi_armour = !owner.psi.use_psi_armour + if(owner.psi.use_psi_armour) + to_chat(owner, SPAN_NOTICE("You will now use your psionics to deflect or block incoming attacks.")) + var/mob/living/carbon/human/A = owner + if(A.psi.get_rank(PSI_PSYCHOKINESIS) > PSI_RANK_APPRENTICE && A.psi.ranks_stat[PSI_PSYCHOKINESIS] && !A.psi.suppressed) + A.levitation = TRUE + A.pass_flags |= PASS_FLAG_TABLE + A.pixel_y = 8 + A.overlays += image('icons/screen/psi.dmi', "levitation") + A.make_floating(5) + else + to_chat(owner, SPAN_NOTICE("You will no longer use your psionics to deflect or block incoming attacks.")) + var/mob/living/carbon/human/A = owner + if(A.levitation) + A.levitation = FALSE + A.pass_flags &= ~PASS_FLAG_TABLE + A.pixel_y = 0 + A.overlays -= image('icons/screen/psi.dmi', "levitation") + A.stop_floating() + update_icon() + +// End psi armour toggle. + +// Menu toggle. +/obj/screen/psi/toggle_psi_menu + name = "Show/Hide Psi UI" + icon_state = "arrow_left" + var/obj/screen/psi/hub/controller + +/obj/screen/psi/toggle_psi_menu/Initialize(mapload, obj/screen/psi/hub/_controller) + . = ..() + controller = _controller + +/obj/screen/psi/toggle_psi_menu/Click() + var/set_hidden = !hidden + for(var/thing in controller.components) + var/obj/screen/psi/psi = thing + psi.hidden = set_hidden + controller.update_icon() + +/obj/screen/psi/toggle_psi_menu/on_update_icon() + if(hidden) + icon_state = "arrow_left" + else + icon_state = "arrow_right" +// End menu toggle. + +// Facility toggle. +/obj/screen/psi/toggle_faculty + var/image/disable_overlay + var/faculty_id + +/obj/screen/psi/toggle_faculty/New(mob/living/_owner, id) + disable_overlay = image(icon, "cooldown") + faculty_id = id + + name = "Переключить школу [faculty_id]" + icon_state = "[faculty_id]" + ..(_owner) + +/obj/screen/psi/toggle_faculty/on_update_icon() + ..() + if(invisibility != 0) + return + + if(owner.psi.ranks_stat[faculty_id]) + overlays.Cut() + else + overlays |= disable_overlay + +/obj/screen/psi/toggle_faculty/Click() + if(!owner.psi) + return + + var/faculty_stat = owner.psi.ranks_stat[faculty_id] + owner.psi.ranks_stat[faculty_id] = !faculty_stat + + if(faculty_stat) + sound_to(owner, sound('sound/effects/psi/power_fail.ogg', volume = 40)) + to_chat(owner, SPAN_NOTICE("Вы более не будете использовать силы школы [faculty_id].")) + else + sound_to(owner, sound('sound/effects/psi/power_unlock.ogg', volume = 40)) + to_chat(owner, SPAN_NOTICE("Вы вновь можете использовать силы школы [faculty_id].")) + update_icon() +// End facility toggle diff --git a/mods/psionics/code/misc/decoyobj.dm b/mods/psionics/code/misc/decoyobj.dm new file mode 100644 index 0000000000000..5f13ef7de6203 --- /dev/null +++ b/mods/psionics/code/misc/decoyobj.dm @@ -0,0 +1,12 @@ +/obj/temp_visual/decoy + desc = "It's a decoy!" + duration = 15 +/obj/temp_visual/decoy/Initialize(mapload, set_dir, atom/mimiced_atom, modified_duration = 15) + duration = modified_duration + . = ..() + alpha = initial(alpha) + if(mimiced_atom) + name = mimiced_atom.name + appearance = mimiced_atom.appearance + set_dir(set_dir) + mouse_opacity = 0 diff --git a/mods/psionics/code/misc/defines.dm b/mods/psionics/code/misc/defines.dm new file mode 100644 index 0000000000000..b45d101a724e5 --- /dev/null +++ b/mods/psionics/code/misc/defines.dm @@ -0,0 +1,20 @@ +#define PSI_IMPLANT_AUTOMATIC "Security Level Derived" +#define PSI_IMPLANT_SHOCK "Issue Neural Shock" +#define PSI_IMPLANT_WARN "Issue Reprimand" +#define PSI_IMPLANT_LOG "Log Incident" +#define PSI_IMPLANT_DISABLED "Disabled" + +#define PSI_COERCION "catastellia" +#define PSI_CONSCIOUSNESS "allaxetia" +#define PSI_PSYCHOKINESIS "teleplexy" +#define PSI_MANIFESTATION "demiurgy" +#define PSI_METAKINESIS "metaplexy" +#define PSI_ENERGISTICS "hyloforia" +#define PSI_REDACTION "ephanoferia" + +#define PSI_RANK_BLUNT 0 +#define PSI_RANK_LATENT 1 +#define PSI_RANK_APPRENTICE 2 +#define PSI_RANK_OPERANT 3 +#define PSI_RANK_MASTER 4 +#define PSI_RANK_GRANDMASTER 5 diff --git a/mods/psionics/code/misc/mindcontrol.dm b/mods/psionics/code/misc/mindcontrol.dm new file mode 100644 index 0000000000000..28ddb24daec3e --- /dev/null +++ b/mods/psionics/code/misc/mindcontrol.dm @@ -0,0 +1,109 @@ +#define MIND_CONTROL_ALLOW_MOVE 1 +#define MIND_CONTROL_ALLOW_SAY 2 + +GLOBAL_LIST_INIT(diagonals, list(NORTHEAST, NORTHWEST, SOUTHEAST, SOUTHWEST)) + +/atom + var/datum/mind_control/mind_controller + +/atom/proc/set_control_mind(mob/living/victim, duration, flags) + if(!victim) + return FALSE + + if(!mind_controller) + mind_controller = new(src) + + mind_controller.control_flags = flags + + mind_controller.affected |= victim + mind_controller.affected[victim] = duration + +/// Mind Control datum start + +/datum/mind_control + var/atom/parent + + var/control_flags + var/list/affected = list() + + var/atom/target + +/datum/mind_control/New(atom/owner) + . = ..() + parent = owner + START_PROCESSING(SSfastprocess, src) + +/datum/mind_control/Destroy() + . = ..() + STOP_PROCESSING(SSfastprocess, src) + if(parent) + parent.mind_controller = null + +/datum/mind_control/Process() + if(!parent || !LAZYLEN(affected)) + qdel(src) + return + + var/list/slaves = affected.Copy() + for(var/mob/living/slave in slaves) + if(slave.stat == DEAD || affected[slave] <= 0) + affected -= slave + continue + + if(target) + walk_towards_target(slave) + + affected[slave] -= 0.2 SECOND + + if(!(control_flags & MIND_CONTROL_ALLOW_SAY)) + slave.silent = max(slave.silent, 2) + + if(!(control_flags & MIND_CONTROL_ALLOW_MOVE)) + slave.stunned = max(slave.stunned, 2) + +/datum/mind_control/proc/speak_through_affected(message) + for(var/mob/living/slave in affected) + var/old_silent = slave.silent + slave.silent = 0 + slave.say(message) + slave.silent = old_silent + +/datum/mind_control/proc/walk_towards_target(mob/living/slave) + if(slave == target) + return + + if(slave.z != target.z) + return + + slave.a_intent = I_HURT + slave.update_hud() + slave.resist() + + var/distance = get_dist(slave, target) + if(distance < ismob(target) ? 0 : 1) + return + + var/old_stun = slave.stunned + slave.stunned = 0 + + var/direction = get_dir(slave, target) + if(direction in GLOB.diagonals) + direction = turn(direction, pick(-45, 45)) + + var/old_loc = slave.loc + slave.SelfMove(direction) + + if(slave.loc == old_loc) + var/turf/blocked_turf = get_step(slave, direction) + var/list/possible_blockers = blocked_turf.contents + blocked_turf + + for(var/atom/thing as obj|mob|turf in possible_blockers) + + if(!thing.density) + continue + + possible_blockers += thing + + slave.ClickOn(pick(possible_blockers)) + + slave.stunned = old_stun diff --git a/mods/psionics/code/misc/psi.dm b/mods/psionics/code/misc/psi.dm new file mode 100644 index 0000000000000..f2fc42bd6b387 --- /dev/null +++ b/mods/psionics/code/misc/psi.dm @@ -0,0 +1,36 @@ +GLOBAL_LIST_INIT(psychic_ranks_to_strings, list("Latent", "Apprentice", "Operant", "Masterclass", "Grandmasterclass")) + +PROCESSING_SUBSYSTEM_DEF(psi) + name = "Psychics" + priority = SS_PRIORITY_PSYCHICS + flags = SS_POST_FIRE_TIMING | SS_BACKGROUND + + var/list/faculties_by_id = list() + var/list/faculties_by_name = list() + var/list/faculties_by_name_new = list() + var/list/all_aura_images = list() + var/list/all_psi_complexes = list() + var/list/psi_dampeners = list() + var/list/psi_monitors = list() + var/list/armour_faculty_by_type = list() + var/list/faculties_by_intent = list() + +/datum/controller/subsystem/processing/psi/proc/get_faculty(faculty) + return faculties_by_name[faculty] || faculties_by_id[faculty] + +/datum/controller/subsystem/processing/psi/Initialize(start_uptime) + var/list/faculties = GET_SINGLETON_SUBTYPE_MAP(/singleton/psionic_faculty) + for(var/ftype in faculties) + var/singleton/psionic_faculty/faculty = faculties[ftype] + faculties_by_id[faculty.id] = faculty + faculties_by_name[faculty.name] = faculty + faculties_by_intent[faculty.associated_intent] = faculty.id + faculties_by_name_new[faculty.name] = faculty.id + + var/list/powers = GET_SINGLETON_SUBTYPE_MAP(/singleton/psionic_power) + for(var/ptype in powers) + var/singleton/psionic_power/power = powers[ptype] + if(!is_abstract(power) && power.faculty) + var/singleton/psionic_faculty/faculty = get_faculty(power.faculty) + if(faculty) + faculty.powers |= power diff --git a/mods/psionics/code/mob/mob.dm b/mods/psionics/code/mob/mob.dm new file mode 100644 index 0000000000000..d487e0020db18 --- /dev/null +++ b/mods/psionics/code/mob/mob.dm @@ -0,0 +1,32 @@ +/mob/living + var/datum/psi_complexus/psi + +/mob/living/Login() + . = ..() + if(psi) + psi.update(TRUE) + if(!psi.suppressed) + psi.show_auras() + +/mob/living/Destroy() + QDEL_NULL(psi) + . = ..() + +/mob/living/proc/set_psi_rank(faculty, rank, take_larger, defer_update, temporary) + if(!src.zone_sel) + to_chat(src, SPAN_NOTICE("You feel something strange brush against your mind... but your brain is not able to grasp it.")) + return + if(!psi) + psi = new(src) + var/current_rank = psi.get_rank(faculty) + if(current_rank != rank && (!take_larger || current_rank < rank)) + psi.set_rank(faculty, rank, defer_update, temporary) + +/mob/living/proc/deflect_psionic_attack(attacker) + var/blocked = 80 * get_blocked_ratio(null, DAMAGE_PSIONIC) + if(prob(blocked)) + if(attacker) + to_chat(attacker, SPAN_WARNING("Your mental attack is deflected by \the [src]'s defenses!")) + to_chat(src, SPAN_DANGER("\The [attacker] strikes out with a mental attack, but you deflect it!")) + return TRUE + return FALSE diff --git a/mods/psionics/code/mob/mob_assay.dm b/mods/psionics/code/mob/mob_assay.dm new file mode 100644 index 0000000000000..a841209dd9063 --- /dev/null +++ b/mods/psionics/code/mob/mob_assay.dm @@ -0,0 +1,93 @@ +/mob/living/proc/show_psi_assay(mob/viewer, obj/machinery/psi_meter/machine) + + if(!viewer) viewer = usr + + var/use_He_is = "You are" + var/use_He_has = "You have" + if(istype(machine) || viewer != src) + var/datum/gender/G = GLOB.gender_datums[gender] + use_He_is = "[G.He] [G.is]" + use_He_has = "[G.He] [G.has]" + + var/list/dat = list() + + dat += "

Summary

" + dat += "
" + + if(psi) + + // Hi Warhammer 40k rating system, how are you? + // I hope you get along with the Galactic Milieu metapsychics. + var/use_rating + var/effective_rating = psi.rating + if(effective_rating > 1 && psi.suppressed) + effective_rating = max(0, psi.rating-2) + var/rating_descriptor + if(mind && !psi.suppressed) + if(GLOB.paramounts.is_antagonist(mind)) + use_rating = SPAN_COLOR("#ff0000", "CAN'T CALCULATE: POSSIBLE LEVEL - 5+") + rating_descriptor = "This indicates a completely deviant psi complexus, either beyond or outside anything currently recorded. Approach with care." + // This space intentionally left blank (for Omega-Minus psi vampires. todo) + if(viewer != usr && GLOB.thralls.is_antagonist(mind) && ishuman(viewer)) + var/mob/living/H = viewer + if(H.psi && H.psi.get_rank(PSI_REDACTION) >= PSI_RANK_GRANDMASTER) + dat += SPAN_COLOR("#ff0000", "Their mind has been cored like an apple, and enslaved by another operant psychic.") + + if(!use_rating) + switch(effective_rating) + if(1) + use_rating = "[effective_rating-1]-Epsilon" + rating_descriptor = "This indicates the presence of minor latent psi potential with little or no appentice capabilities." + if(2) + use_rating = "[effective_rating-1]-Gamma" + rating_descriptor = "This indicates the presence of minor psi capabilities of the Appentice rank or higher." + if(3) + use_rating = SPAN_COLOR("#f4f441", "[effective_rating-1]-Delta") + rating_descriptor = "This indicates the presence of minor psi capabilities of the Operant rank or higher." + if(4) + use_rating = SPAN_COLOR("#f4bc42", "[effective_rating-1]-Beta") + rating_descriptor = "This indicates the presence of significant psi capabilities of the Master rank or higher." + if(5) + use_rating = SPAN_COLOR("#ff0000", "[effective_rating-1]-Alpha") + rating_descriptor = "This indicates the presence of significant psi capabilities of the Grandmaster rank or higher." + else + use_rating = "[effective_rating]-Lambda" + rating_descriptor = "This indicates the presence of trace latent psi capabilities." + + dat += "[use_He_has] an overall psi rating of [use_rating].
[rating_descriptor]
" + + if(!istype(machine)) + + dat += "[use_He_is] currently [psi.suppressed ? "suppressing" : "not suppressing"] your psychic operancy.
" + dat += "[use_He_has] [psi.stamina]/[psi.max_stamina] psi stamina remaining.
" + dat += "
" + + for(var/faculty_id in psi.ranks) + var/singleton/psionic_faculty/faculty = SSpsi.get_faculty(faculty_id) + if(psi.ranks[faculty.id] > 0) + dat += "[use_He_is] assayed at the rank of [GLOB.psychic_ranks_to_strings[psi.ranks[faculty.id]]] for the [faculty.name] faculty.
" + else + dat += "[use_He_has] no notable power within the [faculty.name] faculty.
" + dat += "
" + + if(viewer == usr) + dat += "" + for(var/faculty_id in psi.ranks) + var/list/check_powers = psi.get_powers_by_faculty(faculty_id) + if(LAZYLEN(check_powers)) + var/singleton/psionic_faculty/faculty = SSpsi.get_faculty(faculty_id) + dat += "" + for(var/singleton/psionic_power/power in check_powers) + dat += "" + dat += "

Psi-power Usage

[use_He_has] access to the following psi-powers within the [faculty.name] faculty:
[power.name][power.use_description]
" + else + dat += "[use_He_has] no notable psychic latency or operancy." + + if(istype(machine)) + dat += "Print Clear Buffer" + machine.last_assay = dat + return + + var/datum/browser/popup = new(viewer, "psi_assay_\ref[src]", "Psi-Assay") + popup.set_content(jointext(dat,null)) + popup.open() diff --git a/mods/psionics/code/mob/mob_interactions.dm b/mods/psionics/code/mob/mob_interactions.dm new file mode 100644 index 0000000000000..40a96ee2e3739 --- /dev/null +++ b/mods/psionics/code/mob/mob_interactions.dm @@ -0,0 +1,75 @@ +#define INVOKE_PSI_POWERS(holder, powers, target, return_on_invocation) \ + if(holder && holder.psi && holder.psi.can_use()) { \ + for(var/thing in powers) { \ + var/singleton/psionic_power/power = thing; \ + var/obj/item/result = power.invoke(holder, target); \ + if(result) { \ + power.handle_post_power(holder, target); \ + if(istype(result)) { \ + sound_to(holder, sound('sound/effects/psi/power_evoke.ogg')); \ + LAZYADD(holder.psi.manifested_items, result); \ + holder.put_in_hands(result); \ + } \ + return return_on_invocation; \ + } \ + } \ + } + +/mob/living/UnarmedAttack(atom/A, proximity) + . = ..() + if(. && psi) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_intent[a_intent]), A, FALSE) + if(a_intent == I_HURT) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Hyloforia"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Teleplexy"]), A, FALSE) + if(a_intent == I_GRAB) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Teleplexy"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Metaplexy"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Demiurgy"]), A, FALSE) + if(a_intent == I_DISARM) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Catastellia"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Allaxetia"]), A, FALSE) + if(a_intent == I_HELP) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Ephanoferia"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Hyloforia"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Allaxetia"]), A, FALSE) + +/mob/living/RangedAttack(atom/A, params) + if(psi) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_intent[a_intent]), A, TRUE) + if(a_intent == I_HURT) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Hyloforia"]), A, TRUE) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Teleplexy"]), A, TRUE) + if(a_intent == I_GRAB) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Teleplexy"]), A, TRUE) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Metaplexy"]), A, TRUE) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Demiurgy"]), A, TRUE) + if(a_intent == I_DISARM) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Catastellia"]), A, TRUE) + if(a_intent == I_HELP) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Hyloforia"]), A, TRUE) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Ephanoferia"]), A, TRUE) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Allaxetia"]), A, TRUE) + . = ..() + +/mob/living/proc/check_psi_grab(obj/item/grab/grab) + if(psi && ismob(grab.affecting)) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_intent[a_intent]), grab.affecting, FALSE) + if(a_intent == I_HURT) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Hyloforia"]), grab.affecting, FALSE) + if(a_intent == I_GRAB) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Teleplexy"]), grab.affecting, FALSE) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Metaplexy"]), grab.affecting, FALSE) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Demiurgy"]), grab.affecting, FALSE) + if(a_intent == I_DISARM) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Catastellia"]), grab.affecting, FALSE) + if(a_intent == I_HELP) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Ephanoferia"]), grab.affecting, FALSE) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Allaxetia"]), grab.affecting, FALSE) + +/mob/living/attack_empty_hand(bp_hand) + if(psi) + INVOKE_PSI_POWERS(src, psi.get_manifestations(), src, FALSE) + . = ..() + +#undef INVOKE_PSI_POWERS diff --git a/mods/psionics/code/null/_null.dm b/mods/psionics/code/null/_null.dm new file mode 100644 index 0000000000000..2f22237d7e0c6 --- /dev/null +++ b/mods/psionics/code/null/_null.dm @@ -0,0 +1,30 @@ +/** + * Whether or not this atom or its contents will disrupt psionics. Top-level proc recursively checks all contents. + * + * Returns instance of `/atom/movable` or `FALSE`. Either the atom that can disrupt psionics, or `FALSE` if nothing will + * disrupt. + */ +/atom/proc/disrupts_psionics() + for(var/thing in contents) + var/atom/movable/AM = thing + var/disrupted_by = AM.disrupts_psionics() + if(disrupted_by) + return disrupted_by + return FALSE + +/atom/proc/do_psionics_check(stress, atom/source) + var/turf/T = get_turf(src) + if(istype(T) && T != src) + return T.do_psionics_check(stress, source) + withstand_psi_stress(stress, source) + . = disrupts_psionics() + +/atom/proc/withstand_psi_stress(stress, atom/source) + . = max(stress, 0) + if(.) + for(var/thing in contents) + var/atom/movable/AM = thing + if(istype(AM) && AM != src && AM.disrupts_psionics()) + . = AM.withstand_psi_stress(., source) + if(. <= 0) + break diff --git a/mods/psionics/code/null/chemistry.dm b/mods/psionics/code/null/chemistry.dm new file mode 100644 index 0000000000000..5a8528ed25a62 --- /dev/null +++ b/mods/psionics/code/null/chemistry.dm @@ -0,0 +1,182 @@ + +/singleton/reaction/nullglass + name = "Soulstone" + result = null + required_reagents = list(/datum/reagent/blood = 15, /datum/reagent/crystal = 1) + result_amount = 1 + +/singleton/reaction/nullglass/get_reaction_flags(datum/reagents/holder) + for(var/datum/reagent/blood/blood in holder.reagent_list) + var/weakref/donor_ref = islist(blood.data) && blood.data["donor"] + if(istype(donor_ref)) + var/mob/living/donor = donor_ref.resolve() + if(istype(donor) && (donor.psi || (donor.mind && GLOB.wizards.is_antagonist(donor.mind)))) + return TRUE + +/singleton/reaction/nullglass/on_reaction(datum/reagents/holder, created_volume, reaction_flags) + var/location = get_turf(holder.my_atom) + if(reaction_flags) + for(var/i = 1, i <= created_volume, i++) + new /obj/item/device/soulstone(location) + else + for(var/i = 1, i <= created_volume*2, i++) + new /obj/item/material/shard(location, MATERIAL_CRYSTAL) + +/datum/reagent/crystal + name = "crystallizing agent" + taste_description = "sharpness" + reagent_state = LIQUID + color = "#13bc5e" + should_admin_log = TRUE + +/datum/reagent/crystal/affect_blood(mob/living/carbon/M, removed) + var/result_mat = (M.psi || (M.mind && GLOB.wizards.is_antagonist(M.mind))) ? MATERIAL_NULLGLASS : MATERIAL_CRYSTAL + if(ishuman(M)) + var/mob/living/carbon/human/H = M + for(var/obj/item/organ/external/E in shuffle(H.organs.Copy())) + if(E.is_stump()) + continue + + if(BP_IS_CRYSTAL(E)) + if((E.brute_dam + E.burn_dam) > 0) + if(prob(35)) + to_chat(M, SPAN_NOTICE("You feel a crawling sensation as fresh crystal grows over your [E.name].")) + E.heal_damage(rand(5,8), rand(5,8)) + break + if(BP_IS_BRITTLE(E)) + E.status &= ~ORGAN_BRITTLE + break + else if(prob(15)) + to_chat(H, SPAN_DANGER("Your [E.name] is being lacerated from within!")) + if(E.can_feel_pain()) + H.emote("scream") + if(prob(25)) + for(var/i = 1 to rand(1,3)) + new /obj/item/material/shard(get_turf(E), result_mat) + E.take_external_damage(rand(50,70), 0) + else + E.take_external_damage(rand(20,30), 0) + E.status |= ORGAN_CRYSTAL + E.status |= ORGAN_BRITTLE + break + + for(var/obj/item/organ/internal/I in shuffle(H.internal_organs.Copy())) + if(I.organ_tag == BP_BRAIN) + continue + + if(BP_IS_CRYSTAL(I)) + if(prob(35)) + to_chat(M, SPAN_NOTICE("You feel a deep, sharp tugging sensation as your [I.name] is mended.")) + I.heal_damage(rand(1,3)) + break + if(BP_IS_BRITTLE(I)) + I.status &= ~ORGAN_BRITTLE + break + else if(prob(15)) + to_chat(H, SPAN_DANGER("You feel visceral, sharp twisting within your body!")) + if(I.can_feel_pain()) + H.emote("scream") + if(prob(25)) + I.take_internal_damage(rand(10,15), 0) + else + I.take_internal_damage(rand(5,10), 0) + I.status |= ORGAN_CRYSTAL + I.status |= ORGAN_BRITTLE + break + else + to_chat(M, SPAN_DANGER("Your flesh is being lacerated from within!")) + M.adjustBruteLoss(rand(3,6)) + if(prob(10)) + new /obj/item/material/shard(get_turf(M), result_mat) + +/* +/singleton/chemical_reaction/nullglass + name = "Soulstone" + result = null + required_reagents = list(/datum/reagent/blood = 15, /datum/reagent/crystal = 1) + result_amount = 1 + +/singleton/chemical_reaction/nullglass/get_reaction_flags(datum/reagents/holder) + for(var/datum/reagent/blood/blood in holder.reagent_list) + var/weakref/donor_ref = islist(blood.data) && blood.data["donor"] + if(istype(donor_ref)) + var/mob/living/donor = donor_ref.resolve() + if(istype(donor) && (donor.psi || (donor.mind && GLOB.wizards.is_antagonist(donor.mind)))) + return TRUE + +/singleton/chemical_reaction/nullglass/on_reaction(datum/reagents/holder, created_volume, reaction_flags) + var/location = get_turf(holder.my_atom) + if(reaction_flags) + for(var/i = 1, i <= created_volume, i++) + new /obj/item/device/soulstone(location) + else + for(var/i = 1, i <= created_volume*2, i++) + new /obj/item/material/shard(location, MATERIAL_CRYSTAL) + +/datum/reagent/crystal + name = "crystallizing agent" + taste_description = "sharpness" + reagent_state = LIQUID + color = "#13bc5e" + should_admin_log = TRUE + +/datum/reagent/crystal/affect_blood(mob/living/carbon/M, removed) + var/result_mat = (M.psi || (M.mind && GLOB.wizards.is_antagonist(M.mind))) ? MATERIAL_NULLGLASS : MATERIAL_CRYSTAL + if(ishuman(M)) + var/mob/living/carbon/human/H = M + for(var/obj/item/organ/external/E in shuffle(H.organs.Copy())) + if(E.is_stump()) + continue + + if(BP_IS_CRYSTAL(E)) + if((E.brute_dam + E.burn_dam) > 0) + if(prob(35)) + to_chat(M, SPAN_NOTICE("You feel a crawling sensation as fresh crystal grows over your [E.name].")) + E.heal_damage(rand(5,8), rand(5,8)) + break + if(BP_IS_BRITTLE(E)) + E.status &= ~ORGAN_BRITTLE + break + else if(prob(15)) + to_chat(H, SPAN_DANGER("Your [E.name] is being lacerated from within!")) + if(E.can_feel_pain()) + H.emote("scream") + if(prob(25)) + for(var/i = 1 to rand(1,3)) + new /obj/item/material/shard(get_turf(E), result_mat) + E.take_external_damage(rand(50,70), 0) + else + E.take_external_damage(rand(20,30), 0) + E.status |= ORGAN_CRYSTAL + E.status |= ORGAN_BRITTLE + break + + for(var/obj/item/organ/internal/I in shuffle(H.internal_organs.Copy())) + if(I.organ_tag == BP_BRAIN) + continue + + if(BP_IS_CRYSTAL(I)) + if(prob(35)) + to_chat(M, SPAN_NOTICE("You feel a deep, sharp tugging sensation as your [I.name] is mended.")) + I.heal_damage(rand(1,3)) + break + if(BP_IS_BRITTLE(I)) + I.status &= ~ORGAN_BRITTLE + break + else if(prob(15)) + to_chat(H, SPAN_DANGER("You feel visceral, sharp twisting within your body!")) + if(I.can_feel_pain()) + H.emote("scream") + if(prob(25)) + I.take_internal_damage(rand(10,15), 0) + else + I.take_internal_damage(rand(5,10), 0) + I.status |= ORGAN_CRYSTAL + I.status |= ORGAN_BRITTLE + break + else + to_chat(M, SPAN_DANGER("Your flesh is being lacerated from within!")) + M.adjustBruteLoss(rand(3,6)) + if(prob(10)) + new /obj/item/material/shard(get_turf(M), result_mat) +*/ diff --git a/mods/psionics/code/null/flooring.dm b/mods/psionics/code/null/flooring.dm new file mode 100644 index 0000000000000..b7c06e73c52a7 --- /dev/null +++ b/mods/psionics/code/null/flooring.dm @@ -0,0 +1,20 @@ +/singleton/flooring + var/psi_null + +/singleton/flooring/proc/is_psi_null() + return psi_null + +/singleton/flooring/tiling/nullglass + name = "nullglass plating" + desc = "You can hear the tiles whispering..." + icon_base = "nullglass" + color = COLOR_NULLGLASS + has_damage_range = null + flags = TURF_REMOVE_SCREWDRIVER + build_type = /obj/item/stack/tile/floor_nullglass + psi_null = TRUE + +/obj/item/stack/tile/floor_nullglass + name = "nullglass floor tile" + icon_state = "tile_nullglass" + matter = list(MATERIAL_NULLGLASS = 937.5) diff --git a/mods/psionics/code/null/material.dm b/mods/psionics/code/null/material.dm new file mode 100644 index 0000000000000..983fc94ee9205 --- /dev/null +++ b/mods/psionics/code/null/material.dm @@ -0,0 +1,32 @@ +/material + var/is_psionic_nullifier + +/material/proc/is_psi_null() + return is_psionic_nullifier + +/material/nullglass + is_psionic_nullifier = TRUE + +/material/nullglass + name = MATERIAL_NULLGLASS + icon_colour = COLOR_NULLGLASS + conductive = 1 + stack_type = /obj/item/stack/material/nullglass + flags = MATERIAL_BRITTLE + opacity = 0.5 + integrity = 30 + shard_type = SHARD_SHARD + tableslam_noise = 'sound/effects/Glasshit.ogg' + hardness = 80 + weight = 25 + sheet_icon_base = "diamond" + sheet_singular_name = "gem" + sheet_plural_name = "gems" + door_icon_base = "stone" + destruction_desc = "shatters" + hitsound = 'sound/effects/Glasshit.ogg' + hidden_from_codex = TRUE + +/material/nullglass/generate_recipes() + . = ..() + . += new /datum/stack_recipe/tile/nullglass(src) diff --git a/mods/psionics/code/null/material_sheet.dm b/mods/psionics/code/null/material_sheet.dm new file mode 100644 index 0000000000000..455cbb258e2e5 --- /dev/null +++ b/mods/psionics/code/null/material_sheet.dm @@ -0,0 +1,22 @@ +/obj/item/stack/material/withstand_psi_stress(stress, atom/source) + . = ..(stress, source) + if(amount > 0 && . > 0 && disrupts_psionics()) + if(. > amount) + use(amount) + . -= amount + else + use(stress) + . = 0 + +/obj/item/stack/material/disrupts_psionics() + return (material && material.is_psi_null()) ? src : FALSE + +/obj/item/stack/material/nullglass + name = "nullglass" + icon_state = "diamond" + plural_icon_state = "diamond-mult" + max_icon_state = "diamond-max" + default_type = MATERIAL_NULLGLASS + +/obj/item/stack/material/nullglass/fifty + amount = 50 diff --git a/mods/psionics/code/null/material_weapon.dm b/mods/psionics/code/null/material_weapon.dm new file mode 100644 index 0000000000000..24ef29c6c876b --- /dev/null +++ b/mods/psionics/code/null/material_weapon.dm @@ -0,0 +1,11 @@ +/obj/item/material/disrupts_psionics() + return (material && material.is_psi_null()) ? src : FALSE + +/obj/item/material/withstand_psi_stress(stress, atom/source) + . = ..(stress, source) + if(!health_dead() && . > 0 && disrupts_psionics()) + damage_health(.) + . = max(0, -(get_current_health())) + +/obj/item/material/shard/nullglass/New(newloc) + ..(newloc, MATERIAL_NULLGLASS) diff --git a/mods/psionics/code/null/turf_floor.dm b/mods/psionics/code/null/turf_floor.dm new file mode 100644 index 0000000000000..0a49c172b8184 --- /dev/null +++ b/mods/psionics/code/null/turf_floor.dm @@ -0,0 +1,7 @@ +/turf/simulated/floor/disrupts_psionics() + return (flooring && flooring.is_psi_null()) ? src : ..() + +/turf/simulated/floor/tiled/nullglass + name = "nullglass floor" + icon_state = "nullglass" + initial_flooring = /singleton/flooring/tiling/nullglass diff --git a/mods/psionics/code/null/turf_wall.dm b/mods/psionics/code/null/turf_wall.dm new file mode 100644 index 0000000000000..c047beb0b030b --- /dev/null +++ b/mods/psionics/code/null/turf_wall.dm @@ -0,0 +1,18 @@ +/turf/simulated/wall/disrupts_psionics() + return ((material && material.is_psi_null()) || (reinf_material && reinf_material.is_psi_null())) ? src : ..() + +/turf/simulated/wall/withstand_psi_stress(stress, atom/source) + . = ..(stress, source) + if(. > 0 && disrupts_psionics()) + var/cap = material.integrity + if(reinf_material) cap += reinf_material.integrity + var/stress_total = get_damage_value() + . + damage_health(.) + . = max(0, -(cap-stress_total)) + +/turf/simulated/wall/nullglass + color = "#ff6088" + +/turf/simulated/wall/nullglass/Initialize(ml) + color = null + ..(ml, MATERIAL_NULLGLASS) diff --git a/mods/psionics/code/null/~null.dm b/mods/psionics/code/null/~null.dm new file mode 100644 index 0000000000000..9269576877c03 --- /dev/null +++ b/mods/psionics/code/null/~null.dm @@ -0,0 +1,3 @@ +#undef PSI_IMPLANT_SHOCK +#undef PSI_IMPLANT_WARN +#undef PSI_IMPLANT_DISABLED \ No newline at end of file diff --git a/mods/psionics/icons/effects/heavyimpact.dmi b/mods/psionics/icons/effects/heavyimpact.dmi new file mode 100644 index 0000000000000000000000000000000000000000..dedaca533ac5ca1addd49fa47d5f3b0ecae8dfd1 GIT binary patch literal 4406 zcmV-65y|d}P)fFDZ*Bkp zc$`JfK?=e!6a>(9{wYGc4WZFC)`c5skuK~Vf{7+zRgzHY?H%jF#eA^Ae_)x#WVF4KZO=#IDgyZq2x~ z?rs+3N;cw8!wy>53ni5N+Q1fSXh2iR`>|V}`vB%BDQ={U+rt0=5HCqYK~#90?OhF) zttbu_nFZXy1_U=CvVqzEswN4d2tliFRlVEOZTii5a|(oy{1FnUHw+K`3rKw$z%ac& z4B*rA52g^p^a%i^5_|^0H0T|`_z3|1wd;ZZ1c1Tp0LG61P{vPT+5mjSD}W#3i5C>FncKQGUMF6J3O)A)EegnXzYU9FJZ-bwlX8?cRGfxUU zt^79uOjnIYS?3S{Bmm1V18BvuPS!#UE---bCV;UsdLmVKEGbSl#u!iy9R3yKdjQfD z(>omQ!Aq0e9-VE3q zI)`f1kpcZTi2xLBB+(c^07i&802^?(3ADs$Uv&pfD!LOg5)W&_B;@P|Sv(^5uUI->KXdH=2K5HK>NbMBRacRwZ34p z2$%ziK$L+&07?L$IjX|(4FiDCiXfnaL1v_GB}h#KtF2R_377o z*fHr@(*uno*bKl}ICB6_07zZhpdl=V)eGz@Y&J_MglOCCR7J4l1v7vOp*k5sa?JG@ zdZuF=U`z+XZXMz=0;R@Vbsx$8c$P%FaZWE%Dj&5mo{2XBJ0)W*6BeiYJv?E{=<{$Jr zqZ9$v%wq3$e49-Pk2u0U!n+km4J3n>hbI8yxj+ZU-{OCRd7c1PE6RC$ zkR`|-ZX+??%8h#I9}P8%q2IbqFXbn`fRH*Y{pIfnt`Dx)pC>)LSl~ndaC$Qb{ZoWS z{I>E<*Uew6G*bTO20@oaKT^vaF{r)-5Op^>^&_=fD%(C1CYa&gb;)yQC@=I07w};yv=9`{FcARb=lWDNQ1yMF2{0VSiG*g#-KFdaB_3n|DNV;m z7Xbju0M8N%Iqhu=Kq)`jl$gL%Q9F1DcE!2V$vHr%t(^er?d0YRo-IWHc%B3p@qjEY z(aa|0mW&YZY08A>gLx3@hQxum=96n^@|=?b(ql)3MLfJW5v__TL+7bp5(H!9lWU^6 zQ;-RJb^#Bcb?w#+mdi>IX9CdJ5gkgH!HLr?ivs15xAA2|)aN8w)jD!<8@te<15cP! z{kh%J8!p*eJGw2?6LXtEnp~MCY_?53aZL*WAg!*=VWxs-GBdRKMg}(SJ*Y#oelU*4 z-Kicx)1ihpE52ml>uq(^rz~H+slHP7z-?!1+nx(3fx~K?dbDSQkU5w-)n+u#bYfx^ zra$!x)o6JETX7cJvkhhGLN)^$p;m&Bjbu(;>hBF@M@%xJ*i<`oD%JTtk?HCbRVvvO z`TE*WV$S4la;jIbru!G3D-v_#3DSA&7$3!0BOnnKO5m#;jy>hFTP30KEn6~MnF!#N z3w8nk@B2M4Ty$_iXbhQ*gG$dyOoACU6O{gZOjdFRaPr5~2*Co`A^zMGliL~432u6d z;+op_aAM)PzFmtbiK*ydJOQL!KNa6$ZS$bSf=$URsiVMx{_qlq&OI>Hh`33yo})F- zP3$@zN`i*!Oud~E2Lg13sE1f78C47_0IN-�i<^fo?!-#R}J~FE4S62#A`%aM6tp zoO*yQWfU7LA`wv0aG#*I)41=po1WB5&}SWRRUVI0U?DRJ$7(XINsIC#T0_*K@B(PY zLYgfjZ~(M5oO>vHsEG?9&Swrx6cPh?*a6gzEF4Y-aBFX-Cug|L&n9_ZzY6JsPg0^} zjOQiBd5<}{OO*ve0UxP)@>y-JI~Q&d9)%wD0_bO@mbxmeQ?XQW-mOj*kC+neNw@@o z!lqYo!*16fNC8WwBf4=DxEqv;823arv&dN7fXYM4zCf~KXZH>H;N!^%#6)ssB@rX| zQ~MEaaCLg%SUppY1vV=c0{_$SQ`0;EoE=4~Z0sHNv3`opgXS63-X2ODq~dl{@i_%# z0tdjJtQ1vsDD$CeF0i4~7>Cm`G=vq_;&T>3Dd!UdKyVXh29OX>k*S`|E@Te6kSqBxpwtDfXVku zYXFCgm;L+FnYUM|bhSjsdmA4n_5plh2x(lEgWCiEpzErukfe2m>U6R}Z<6}keOpA| zWsmk{OWPj{-ReQ$3K5kHObF5v5NDgDs8~QckOtiqLGR9-7_f~H%kMXL?NU5emo*~q z7j(fo!YouBbS`dFc{axrWw%WU*g}?}DVju1L{ixmcN_6=nrh3u?IMcSS8f-*0;KZn zq|T!x5!rME;jd50L$dj3QcT$%yau+&;5PgaghbKC0p6@xrEtE{oZ69ve4EN9`Nx0` z_6*=CPPYiKoh~%SOpUXSykjPWNe9 zNh!r(N%yIrMkOpmPrAw!44m*UCo#m#yv_t1wHzHJ8BnN3PFED-sq!i`r}JfheCl9a z`dW9|;~}EX3}0-P0q_#YxVi833g6+t(Lo-61F(VZaNtV-^bH4=UiDM&14pU&TC7km zeeS&N@;BkT1h8qZNH;9jxk+Dse_b}ZEU6sRcdi%o#b5Ne0w8ODgP>b;xkGS^P~QN& z0g%4G9ALSr&0m!McLd)ly)U1x-ahouLk~Ul|4zL?qv-Lw04VOi#GvI@5kEzWpQl`O z2q2UsOS)&_B?Tj8779|%xZW)oCUgCYPv6{y(R>T#q60q`yO;t`x0m>Wbob#rLA3T# z&!TztWke4S!}V3Bx@cZeD%jY5Sf{9{)aMbMXQeyYCC01PWzP`x9;b7@bv9SFa1#?w zSB<&wwu11Gi%D%Mpi4;)`prkhLr$XcU*gC)jn%u7rsK+Whu&+(n~)riJe-rXMdwD_ z^A;+vpsR_IZfbR!%9@{ew^(iI=Kk5yZ?>rAh9+Im{QjhJKRqxiKP6_c4 zJF2KTkJo`#3YdyBk~>IwG|DsM2}~M-5|MCmuaiApuTfEH(qtX9?JWt0$PYmHw$>z! zzr=MWY`OzM4^b$}ZUjxysGcKK9oq4^n8NGqy=XPAmz&Va-T|Q7QWtkHvJG%`4LeSC zGk4(ichfKD!d+dT{?Ca=bMqF9mB{U?EV#?`K1*&pJrmldXzpof)}rm6OY5#_fO)S@ z3EO5I@T1f&Ac%E=UwECJ7Rii|0tX!Zg?g55dWfORNc#yGC;k!)eJ-s@`l>@pCd1sZ zHTogHLJIOrCK>}5(7Rike@g^aUfK(|njZt=#Ho-WPEXz=UgTLApq%E@oXbutPZ`^$ z>O)0gLmQ!9#5|z3U;1TF9XB2M;&sl~OR2i;I$i8Up6G@;cR9aAI#=cBCXMW^wwjRx z_utME$ajpsd$SrFt^&$k16?Oksq+g7$J z86$YmWB6d_%^izwgr-+OmeLLWwc>b276Scn9D665C9QAWZYN7iBR%|ee)*$_o2q0M@@*{$ zhHf<^H*`aDLeCn`*3{W7mIb{qjns>|?r7p+dad->l75Q;xfF4H-b+Z-9d~^F5RV3U zUE$Oe&tFxIxG0}`$~CEjHPReuv%K=gsU+P8u;@H+zot_CT|>B}RFNYQ^SelSf}1h& z#Bb$lNJx2t-b8n5_U$xU7OpJhrStOwz>Tfl(6Se0d-}Y5^Ev6w*9hPSd#7yt7pXf5 zvG}UCODw+Q!1uI3_q6|yQT*+6@Iwzh^w2{OJ@n8+4?XmEr|HA<_llYiJ@hB(Bmc_E z--@PBPQFlm`TgH3^%JCf|2o1S12DY4c_HoFG<|sbWQFe+K)*@)#dp2l{@wQ9r)3wx z<(;&Levv+GgAaY0KK`!|et0ALJOdJqy$hqiPjLhASzj;?@BUjuKSc5Gq6(j&Mf|^i wn67W1|I=x^|L{~UAA0DahaP(9p?@F!57v>ZNH$9Xf&c&j07*qoM6N<$f_sr%sEf&y`T5{wT;r&RKmfe!~}srI4a8Wx*!k&@FQpg9ToWVuS}aZ@NLIW z-`Gq3ou{>j!+S3WH&+nICpRsj&vAekUw-um>!y_S7^UBGsxS*FF;S;goWs!Q~k@5xp+-ZWSH$sPq1 zq@3LzWVZQ#yxywtwPjk!=yndm(ulYsOUZxT8W|^=%(yM`+xu_NADP}RO-q$pCBLB` zl?+|CqeXq0$_GimmpQVg=~(t%ADJSy$f24%s58l5U6Nocp(SDeS*mOl?Zy2W&oW%$ zkdK6h?C%2n?}xGOVc2}3Xv-y1!d{Vu*CBBz2t)@`k(bf;$^F|E=w-I#zHwi(w0g&Y z-iOSd#n1dHc{gbkEvu1kHnlb=QCfy+Tlsv4Y1y4cDaFQ{pH(yqJt8GGMTAJaiIp~I zCh=9yq|ZkI8V!jo&*VIe)Mn-+hO!`yq}1B=@#pb#t>33=U0I?gY&|{A+^hDhbPGe? zKa~3$DKB}x@1NTHTg3GduT8$lLi}}E=-D;9H6)P5m~!C;{wHq&I~}Wi%T2k5cx+;1 zL1Jhr`bkEk>=83R-T@(&vP2IisV7Lz6QHDDF`h*mT*Ya)sxVLu0zNjA=-ZZhUFEC_ zi>6(CEQU{?BoC}x#?BrW1i7`Fu)c{fKxn|M;blGGLIlM|%Rs%K;HcJHXPo85AY;wM z&P9^vTc0}bnyhKE2U%UBH4*h`ZLjOa^_&f*BTbMPqV#gq_A?Zg&G{k)E7~7=C8BCN zFq)c(QQISL%x!i=SJ{J&H5)iUhL$9I2ps~ek}Cq-IosQ3djiW}Cf;PEYuYV-2VLK^ z#q_h+tOVDb%Y?RP640%C-e-Ox{Bl2TJ}!LK7oZNN;*uw?#SAtuzTu^vn?_Z8*Xa?k zyZfu-rwcg+vhvyw?-ta@IPfNC0;+PY4fgzWfv zv_Q@dYW0$7W4MrFmyW?Wi`M27OO~op0dgXbaH^G4E zZ)KbWJ_S^*wUWyHG)e_#vd-wQv_3+L8e&h7Y$sswCG6oWt4Jt0h*MFvm zudK}*NzHA^NGoxsn1UWH9Nj#@1b@76{G$x-gmcU z|J>=_f)70y7H1!Cc7P|!tDD5%2iDgx@5JwE_WQIQVuhB$)3#k&u0>vbT+gZvA@jrv zR+xtgXwb5V!!6)d>^31XNXQx8RReLMu$hjiSAH(04!jQ6K6Us?u03G;)kpl!_95GW zLVqfNzWcZNrc-^h-E`QQ%WBGLX>V2vkInS2jyXI=eKl37x?>!*T97CQAP zlAH!VxjsmIDG8u{S9+MX*yF8qGq(7u;?QRJq!k!dWp41o%J#?Q1d#%ntVkY}@d>v> zukS|Q2n9{2kOez_^`Q-T81UF5LcZ9Sxu+_=L`su}jZ`Fdrz0s=0 zXZV+ij*mXnn4h?wEVxU&O8{=xay$pwtNkjT>r&b#0HJ#{Z#~s?(;>oGDosGTxHu5u zhy!Ut-=47E3QI#Ubc$7?FT0t(o_pb2=2G6ru5KoRH}cU}id#ocvS)czT>G};p6FZg zHoW%E?K|zQuZvMN6@g#>An=GReU!O4C=o7U{W5>*1q}|0mOVIf+w23%TSa{9pa^ot z76f>t_CH-HAVCmsil;!kRdpm{(ZD!!#fY;*;huUv)N2X0<8KaI z3ZFD&L>KN-Ms~iFnLsF%5$K#T7d~_hERzP&j_3tZOC?}YY>1s_(Mrp!zH$7_KGXmG zQ=Jy_bk_#-PS>7rwx}@H@hiEmoSa(49Q6prOvrr^C6|l*KZfASSjyOGpZvF==*ZGg z%m8(+wXOz%TbtmT^v1F*Qqcm)Y@m|C$ik>R%;H8v$d5pc>g>VV?qqTGP}20aRQ%*) zg=qG@x41uux08$?!rY+S$eyJBXD9w|%JP~{iFMJ&4EqU^c}|13s0%*&!N-bwIcCu5 z6WQT}=Ctmu1=*F$a;)i>{tja%I{l~x#IM0e{puD+1c8?fyWp^lk(5yufjHs%Q?*~h*7!Jh&_%}@JXlCDc*>WgGd z;VLDzK5C}lRSGL*sZ+>R#<{JYm=#OQsa}FMe#nSR3*jXe_EoJ@Q3#KZWJg4$qq7Pu z_Z`S2dCTVB%ek(j$%42tF(hqW5{G)@FTAWNV8WUC3S`%0?Xgox?^a~!KWR>Hgrn-3 zAO#=%pxf?cLl~$R|Mf7@OI*oHDi^sHd+u)WX3~c=jchBDs`u}dSL=KO{Z!@i{45*< z8)GMJum)p9;U*k163{G<S{Sv$NO*1#jvM)gMhGH?CF z&(C_Va++w;jqeCb8~z?)bU~L)`l(Dc_zH<0G`>`qhVBYP!JaF!xe+d&p-UH`dq>OI z3p;7Hlakj({Hf@nXi}%ORoBVDq_v38t#(PCRz%h9BQY-G=lcXRGHCRrT@PG6*^?laIm}X6Cy@btOaPK=fJf5N^H5Xrjjhuy+dQLWji22C#4gw^VK zB@!s!Wa5J$ipWs%F^Iv*SN0W}i{8;lJ@MZgFM$Dx&yL?%&erdLr_74$*;w~aqQyKs z_5IB$y(T5}zyewOy(lSRv!*`TUpeMBg@GMh*Oi8lxSS>My?c_06L z48aF&2>AT5q9jAS@W1d*#}wl-%rZGmhhq>{jfbT94vTM&&<|u?!G6EOeRr(m6}$QP*!xTMMPsD z`H52hYi;gz^zy!Jy^%5*m|*|gi8DicMTBALXdki23bM*Ay(0X`>C}6qQw*T!(nvP- z^Z)ZwK89o*Yo+al>e5 zzdnytHQ}ZqqS%!A5M)G<&MO&O6m5=6V9uuJE^`?|07~2N;1!<~)XefOVdG_v#fH_^ zhT94W{z?#&EFzAtTDdr>Nk03)tIxyfAAyiK|3m!{K2RCNp1sSwsMU{ir`Se*_X?pr z%Mw#ro(c`+JNwa6)z+E_5^B>zts-x6Fe$$b3Zro?qCl)gq-Nw0n|AI5I;k6yPJs9z z6Fl%0jwX)V=OrL;#Air8q9Kxiae>HT)P@qtZ}4+XQSsbsCTMiohd+hdCR+GXa{1*v zSwqozIx?-y2XwWgGLsfx(#ymUEl}_IQ~czQ?wlPX zswwm2%Lb!rMK-$#-x^Y`e2i#{L$v#lSs}<03{3pIRp1tuc*8* zC6hw2;mzTzjsbI`=Sksm&@YNFbv_TDr>%^xP=t`{`^s{;(oelF7LH_Y9UA38Ord-0 zmatNmF1Upi=BVM=^xt;Pb2%Axa$liNi*wGLBl^j;BVYG8)IWZR{cUq9EQ~5LoJs zTn;l#IRp;9vLRN^IRxiRC(q9-Y+3xyIydBl>SHDDw@*w|k7v`XOTY^LY#4-%RHP*> zx_x`o_9iXt2yGaT?(O}1Jb_c`*`J4A!Y_8c<2(1KTx9A%yT_X+ta%B)PY!LX+ldaa zYDZw$Jf+$isE<>EUB4dMVG$nd$VcdlaeWV7ei-;|b^Iy}t^r8BqagNE^fR?&^Q6+k zY9*otLrGrgP*hB-s!guM?2j11un13{jazGO`N9e28vBF?b6Y+UH`^6 zH~H85y!^HKxVeAFJ}y&Fy{ejv$l7A=v5BIXB{wR4RX8S7hF>Fh|IneY(Q4x&TY1@x zrlBl!a>Uom6hTlG({r>*qRTYn2z8J-&C&UCfX^We`qWD))X7Y`k6(xTV9mcrwDG7t zxd$c)t|ryN6oPXcC0G&)7W)7zj~>#Sm;WLatMvLU=A{eaA9YpmCssGK4yI6Dx+-q% zBTeVliesT7p<@2nSu2l@%Hn)`htY;J+j!p_S35hYZ5m|N+>a)}Bh_s=s26S$i(vKP z%0>&_ytJcYPgdbv#uvrbxql&}a;xu{>R}w69avR;4;2QYg|0C$U z^T+Db>qc$8Ed^JU_~rHB=I0k#`A?!U5#~bicDqqHtS)Zfg|qiO$t_E9y>>cNfvg={ zpJ3+dyXhH2P>Kej}W*H;^~xyO(4z+RjL>B z(=TkD3He{rgeRd;^=T8?%Z?0`$)J!t(Qd~J_lCw=(9a7RLcdaWiT>*5G!GK36jbL? zBkx;6rPMxxo=A4#rhU-=t@`hHiPzeU<1@q1Y!QUw7d18`5L%B!wy+HRz5Q6_E=Sap z?3BBsXX#_zIJE~r>|GJ5E!F(RpPpO;xGV!=x_$V=ERh+Jh#)u>{L7ZyAIvU`M*Z<~ z-ibIg&N`J{mYcScT3O&^`wb2Y1A7B&1r(C_WPgbXXK5b7Or-_Lu_!l4Y!FAm1{4|C59I4g8uFj}CQw@Z+V8(vG&sV{7 z>#*OPk#A{hlPaja^%J58GnWtOWIxSM&cB);Z6o#-*1bw~`$YM5N1$&BxA-jh4x2q& zn{gzBg^eqV|RDD6o9EGD}4vgg6-R`pyb^Eli|{yb!eWmL*Ci$ znr;Kr&>LpW6SroEx)m+5L*73Jr4li&aDv45apD+_xKSr7{`@HOh3X;3k*~I$7`|`_ zBgCN#N6%D_vn8eD|0s2mrVK{jm@Z6Tj7s8r%1lp(CN}XExK9J|h3ekTw#OB`<;+_C z24SI6Go(~|k-ipdadV+Jd;=l`o0RCfF$}~AV9ZSWNrlAt3nrVcLJ$>O%!iI+%~|*PdoVcgN5HG zQc*W%uR1251g52$Vg_AnW@98KryjbFaz9?fv_FVUydJZv?u;~_$SF|kZXU5)zLn(+ zCSzDg5ZrT4VN=+~x`q9VU4n>RU1oNzEL)#_Yzbq1#I`-spWYM!=YjwQ2Ugu0TGylf z{@017fXd4qy!OBwxv6qYmq3SC!O@OEd5iokB)5E=GR%9^w>BN8v>Hnaw?NimDoqj# z%;oc?1ZkmN0p-*4xw406e_Hq!`lBgaVL~P@aX$014?dDT9*Ksrb!VdmrDxLNG5xyKm391eVq#) zwGQZSL|)u;#)4K}?f0pt=`J|xFGhWinH6GNh}7Q}2*QzK6z}awtv*JXQ89?8C%o&A z0kO}p_a2{&eRT1iX@A>GD5I~C;*G-5;D+20>G7%uVj@7O=BoEDlEGZ=17;GFLbn#l zt@ex_(~ct7qV+=Nq?^h};~(svLz<1T{PIK876412ZPEmkbI*&W3V& zK8-wu3u%W#PHg0an~UabBB5}i5W32Q?QGYVkcxLtzSG+=7NNVus;c*6Z##F8l zkVN!0tSMsz(UE7cpa3H|ey|S+Y*!SJkI(Xo_Rxp>{XhE%z&KH6l5*|x)_~XwBuVNH z@bz#FaYlY*u61PEvk6S80E)(43#`{w%e(;C#wCVg=vrU{_XNs7bHZ4$fBx&IJv`oI z27izWhkCQh1Xh3WYJJ8=wK!7&XG1>jCFu$A(<@F#I5srPn7`Wh#q*KJk(={O6%3A^ zA6r6LI#mbPDt6b%c9mYg>JWfl)h6X+`HJE3iAn2p7u*SwodD+pp~jc+PJcGPzPos4 zu}QZvlWt6M{Vzx?3o~?4=O9dIp+Tg6Q7oMx^4$@FTAER?R%mRY8JfB>j?)KOo`>JT z>U{kfeOe|6#z&9%lTOH3FS1#fhUy(;V3oxLlUsZQQo27gVt7MQvKRG041`}2)LO>n zZNfjrfLGMoSk@!Y9@oj9Zbp3QjK_uMcw<|wqGdXWpVoaGCnMjzc0v$M5#?{*mD%4K z%lLB(Y$z(O7@-BY`XUKGF*5Q1IRm>;P@usF{jh{=3!|Yz6s)hr5WZJboqz=GNQT~p zWUW1xNhTB0#AKbH8e;0sW;{+$2*TpcPAd@cWdHEy1IYVCcxNoe|2m2yEnk5ywWAbK zTchA+!rTc5@0b5iZw52@$|+#0wFFJwqkOeNB5l1n3pg1oFR2@Oq#cJ+fv6cMsC;gp z-@04y1NLK4@=!B5$=ykj`ma)M4p3;XrMcFeCZB0QA@vo8(BBPo*)ge+g&(nLnSW$ zh-q7_{86(zQL^cu4C|l9CSnPlST|%f{S?dJ=qyZM2f@Ft>>nTp=wQt*7;UvjIx;w} zf%Gn(61A2%=#gqo?>g;CVAz+bjlfBjInltz#A|n-{yqm8giloS4bP_zs!>u&324-@h!(z2EMU-2TU^ z&OkEz&I_9ZJsrfL;FxqV{^u9`PH6AN()6wSm{?bT6(9ClP7vYNS;V?(s4ewu&p&pn zUsQaMEV!w+IgrS90ZmmRD0l=fQy%+jj3!m3XDG3uOMF;3mWhR!`h z^B^+%`3!Urc}Ar5N%#OtdQeK~L9j}iCpHC*bgLzdIiv4PdDfbXC>>iXau#UKgV2B? zDk)i0h%cdG<4pp=eKPI^mHuH{&y6jjatK=kD!IV`s)6Ih(i-JtJW7C4A;yf#vGpa@ zyR1Um&777a=qFSE;AsjI+;YJGWnn_iL(i*#^}Zhv*pk+1 zQRLf9xma{iFPiGrm7D+AdYAV|tE%X~c3aLnJZze-lJ>(Jt6?hTYjMR}(yCCY)VrP7@rK2SJA=38t#&#iS+X{?YW25l@fCOxJdL(#MY#(F ztHCj>Kn}}|i-bMC&jY-wE?h=3dSeeJ)mDh$-V%?ZB0kF%U|9hXXXysk`WJ2s_jzDc z_Yi2lRIBt0!6_uqoucaZhSp&@L-fRIdn~;kL@E>H%ZUXnH~p_DqCX1@jFdl1)Hsta z$R*OPOmclMF;a;ujpGD!5Co0CpdS!(z%B?;;_f#q+g+ZAseDg zNaB;0sd`kw*f5tW1R-UU7tSz)?) zouL!;LkfSR@7xf!oUf3{`&vqk=d&AOuyzhORgxedm9a`#V9a}KGfDnKFT{LFA%r;P zyUxfRTKQc(LwYbtUM6B?&5O`+|BR}Gm!v#gS`< z9^6WUfj8u+Rh#QEL#6ST2J(*n=I{MalyXlLKS(4sEFzV7!`t=X4?Jy*itOa-G7VfH zxdXQzbjDxCTWVJ175VkSOkNx&PK%#3`Gz2+h3h@UjK5-~;`n- zq(#G&f}@;~@`cqTvBb)^+4R`-s?|djPpUVfEGv@}O=D3Tem$VA%QM(^7uF_$&=I+% z)RQ%g8`F#PHBPNk*XI$cOHmS<$SGzxOok48xf~EBgmUo*g5CZU+XoF2%W|toeNl{P zIn{i8Ok{UOs$!8TCAn+H5yX-&CbA}#6Dy2n{---1l>Bp$IPiYI=?zdSYTT2p(hf&8 zc$b5-z?p%^YeZ8xd~#c>)nblknrDLtcnzUMw(KqAZ8o666iW~h<)%K?@|g`(U_)UI zungaR6VJV!=cSiLOpwu=q0PUX9$#0J6@C?@gp2d1P`EOYFiEIdz0!!38kLTI4lQIn zpm+N{AS3WrpkB`<;KizN=D z1-2szNZsN+;X-I1r-@7fMEFWIb!r^m!^UWwk!CfQ4cA+YdtwMGeZgprp5ctl8PQH| z(Ned^VB3eyOBL4CHRVyQ9Y=a`P8@AzbEH4q)do1tqu(rqhDY1NVN~wMVWSq${8pLOV8RdWZ$HsmC%e*z@<$B!q*hFpt6e$8y)(Ve^4H~oICnu;&~>ni05gAqe&{y z$cH9uxJ!*&PI=|FtG-L$He0;28=KZVxb(-kUk2mf8TmazA`dfQig_WO@>^aaEBKC= zk2x2@U;hsauxj+ITu|@VUjp8%=}K<-zxKte(^09f-eRqE^AnUonj=0Y72mV~s{}ie zTy^O3a{p117M4QMO1q)DS-=DKhZQ~s2CI!tcjsQzU*DKxT(j=W|7GMU{#wZ-gL}yf zYt!p7n)YwUA(S^u5~G=>9sRgEdn3IGm{FChr-FbPEPz4jk2jg>F+m7NylRS2ky+bK zJMvi#M%lMBProDk1*3=Iy?Lysd#J;A$i3sWv;@rKeUizQi%KR-;-5aw{3UC~zLQ_i zx%|GdU|!`9y&npd;=+LZ0%Z_Eo>tp0n?|P1B3$?w!Tx=n)D_HsV|QaAI#9Tuc7f9Z ztlr%E0pTs&A^}{(1ipV+!7Wc|OC_2oDj{YrpDfSso|2Xvt)s*!tB!vrF&Y9SzE+TY;12m6$B@Q1Qlw;^UZiLVwC z6+XWD$rPqI7?hQJApqUmS-h>e zfppbsk{ksn96%&{sayJ*i{Y+4G-_q*-YB@W>AO)V6<9eGsYPXThqzZMYTV|DOx}~P z4|(@}$#(^{)n1}Nd;;0;GO`N-HO-plDKdduHrY-v=P8Ghy{X`wh0$Mib)Snt><{Xt zuVjzRG<#6y?#IfqO*sRJ6`3(S6C$)#{$+ls7nt!-Ng(+0`S* z`~W8WoTm!y+v&*bK zbi$pdDLigmrf7l*^KreN2!qVtFRSHq(}N%R2YSB2di-JE-z44Op+O?yjz1x{lOslH zFnmbveTFn-%%S&Ea^Nz2h5_o+x&EwdwvT~|19nlS6g9B~CfH?FaIY!e*In?ifc@b& zfA-FU;DPNOfV9uNYiF)`M>Yr3dBsu)@prw7D1w6DU#|xqUQdhQ7@wx%ua{i2;j(IY zfXcaJptt*{jAM$?xh2^vAI!{SAY`G!mTMx=r_BKXhp0@&b5*&!LTh}3E8*UL?(g$i zK$6EBSkb-NHgW&7CN7RsZ&d1lOu5cHHhkW(eA#4F?DVp2@oxK!`x_kL%j?Go0eEvU zI5!a7yX`joI=KBQ>qBgXN&`(<{Ox$^ji#VZy zu7TS4twi)b`z`7Zw*tS@^DE{^sA@h+xo5#N!V)EXVQRYj&-rtlaJV*#N8fR$hZp-V z1`XcZODy>S`})>!FVow91sX9e0ol=BHez*k>*(QN2x@JL;1~t(OZh9U*d1Hk5D!gY z{O@ZaaejvyQ9?6i!)}*odh-nwitnRhj_VDX@Rc zHxk0W%k>KU=rP>$a|OaY1GY0hzY7VyyWjrYTZa3z8w{!1?zlQ3u(5+rsr?HL*YntLI|tDP2~-M^9V| z>O@m~eGx6xO#M!()IYYFZTwkmVRWy`&x{EXhb#Pkn1YOD*L*(nkXAt8HInYbGYz^{ z*zQ@pHb;3P_(HxN!Aq;hvzwz-)`mUYG})U84tTi+9-yFF$%>XU-X^ z)&Y{bdw7`O@POvD(UfdavNlH19@gdcpt&Yi@I;84ROS3fTH@<$ zXLH^fXK3e0Mr&W}Co_E(bvJ<1MxC{LcF7jP>1ADU`7i`%9!a+BMoG<+nJ;S=kb z&b;T?G_SD)J)S^Oy$)*vUsMhNbu<7(h~@f%u*BWr>`QT|5dma0vTj{f`12$Y-y!1^ZnR&#(52hLHV-pB zEfR{>THhSK5Wi(mVTsQ}5KOyeI%vMCjB>fmD zYj5Bt$L(iN3N67&n}F~^rRFAG`2&#F_{PqXW^mX_KKg%OK7HTvd3XI8WfDmNl*v>7 z_4lrr^#hMdg}>5V^#;O&FQ^MCA(z=^x3b4PNI}RiEK?|71%smo57~MAzq}h#MLbTv zEJ0JDuU81V26Db$W?mbi+2PZcE6(6FL}cD{xf7Ut zIUOPidl_81BNoIXt36O3+9O9t3SIyruinlZ312M(MHOX6Sr_{WQJ4b60e=Z`Qj|Jo zdj3A&IRhHmGytGyo`fEZ4Kz`Wo3S9G!lKU*Gp_Jp8#-i4qU@=89)yR-!vS0zv zU8MxPr#4jle#EO1NEHK2;iowUoOu?){d;{B1-NFN@RbwCd=#O4!ouL;YR}BwoL)~oc`kp^ zf@d|c{FKJEfgc0N5;qg`fn0MiA{||DyxONH2YFNO9;_!hiXp_AVNb`$B_N0|&pK#D%r*rKx)lt# zbc~K7qp5sDSOY-40Ddd?Pu+9YkaHS^SyjbJwPqQvcdeF1>#4b@X1YPwOZ6H-UetS4 zm2a&jR#&#)E$gAcT71tIjn!` zPl}bhoUdv0s15MSP-W0^7$tfcWh8lcQU8q%z$PFI5pXyEl!+EcsNAB_a1=23vp0XX z0DJWC))|u2cTXUN?nVHdz)LqYf31hvyPJJ0oWzUuv`qi1w*><6NExPl+eot|BC(br zE77sDa5f`fq1K4o3A6^FvOEA>u)RiBAD_vNLg9QeDcJ#d4T)nCj2~tS#=5jd4Hh}%+$Z+fb zr^umFI8Oa%RjF1HLXXZ zJ`nTh41Kaq`On~Q>6%Sz z1y6DAkF$h2J*R6x@}%YMj47kiZdcZQr9C7`d`*neK3o6k4}QU}S8NF@U>DRu6FpN{ zJ~TxNT2vt_2&qT!I?+7?P1HM_y3_lgc=VXV`O9cFOV~;xbM*#%zqWBoZ&zE&oj>_S zx-dRcj%w+m5Q~b|h4A7!Iy5_@X(GE2`xUQolcunJA}7vFbZq}|styTBO|EQQYZRZG z)3jq>C#{vc?MO6P*TbjI20N9TfS7y9izC!vz+IsH_T}}9 zVQhqkpO+;(!VmSYf(*Eei5+1E?*~SCF(`E;0D&(N%zMHe=@F8;rY6&^5t^fNXm`GI z(yODSjmgxEqPiLdxJ+Fv-xT%3`ApPZ$qeR+77!H`rMVyJ?X0D?^P9wTg)i49gH{0r zSkpOyx>E52Ce!CeT+2Ml_-%g_S9F-swm62u<5guh@`e+gU&;K%@;vUU`6xd-1BMRu z`O?$(mtsAM^KoLsVBR5b;;+cH$u8U9$0HIty|be8anyt{vM!5edYTnvd=@XxdtA+a8Vv{p@8}yijYD;NdKfGYl9URpA)s(Ei zpx`c6sAz1DBx^o4{X7Fd-^J2X&Yx7sEYz|S<0S7;YY)$M z{rhd0rySFrSZ;^GhxxU&ad#;! z2C+>i-~!b9GYS45yl)wFeM#{_G3XlfQWX5)EP~hooDBn5Dk}9{LD+~TU(DQ>aULj)gXfNYSvpuh6U`(hqi^vMmn6*p#*tBdiEd< ztV<;lA^eyT`8#wjGo-Pz>F^E)W*3ZJn7z{B<7S=59@;4FWH-wBiHqwup)Bx5H_b=2 zb2xYKQ|li%Dd#b*+ISQd)Bp7(5YSN!ND6vWu8e;xhjgE#f1KI#F3!bleW{{c!t;mj z?DrDRx5oVgBC;-AxFfR_unWWH6ZHsMv6+CD5K57bIFtB-!B0Bmp) zYoVck`?nYY3P3g#hrHdstZjCLXMns5f0zppM_maSiF~kGitl8G)t%@* z2Z98lV6RA8rDk&+x5SMK0x?hkP8fud{pR5YJFu*E1nTvSUE0$z;@i`O6U1VNQAQ58 zlGgLdccTK-ti>%|^In2iVwm%AiVWfR5aJ)w$ziU&TVmC1)LLjK0LA@Gj56Rj3hwea z1e}c|UYy|CyPO#A`q zuf~7X618Jv8JX~Pe^29MX3tP5ydxLsaxp)O z+1~X|rqDb+$ENGmiPuv=y@q$bXT_3m3^0%NTE(3J%8J+cRrswvpb!)`8v~of0c_H=m|{wF zP<>@3nqz4Z^3^xger%jl)o1sz(D?enE0%|^-)*Y^L-`<8eY1d|5={eeG;H*Hb_#55 zkO!ozP>Zb{y|})FaFuI-V|gn;ZSzkD8H`E~y5p~3-f!}x!D>R_fIG<4Yno+Ezm3*Z zoDKAA=@px3Pv1&ipNC6ETifv~v8dQn=c^+-{R?}i6O+V;BZNM{6rQAANFM7g=IOJe zzjxj+JowX$GLp}h37_qG22>^6Ga<8*PT}8T+@X0wJ<~>6J9xksc?O)Ck!(S^G=y$` zSO~wca&vju07RNe_AJ+vNaZ$UQ#${D3HN{wf`=gT&tHfpuTrk?_?HiFdfg_5=HH2agL+iTF&lgNo#TmzQ8$~R`irI(V3~V2 z{EOlhG{!Q!xYmzxDH!5EE=wh|;|C-Ft}-4Y6Sz4kjs<&?aysXihV2Z7uXZ(aWydGg$EwQrI2 z<%l{Z&lO@j>k?4Vhb9FI{D${y!j}UA1!-$bVdjaT%!I=U>tAW+Jk5-I*5@^8IozrJ zS1OC`{plGs6Mz`<4tDW7d{0XP2cby)xP#;(9*nh9#yH-l{7y$4(Ne;CcN9uffC zV^k(Xv-O@Xn}X-V)8})`Q@AKfudLm#27adHUmXyZPcK^-_oCk)Md)q4V9)k1=xID& zZ9oET0Hg2z)^!1P(*EOP$J}Ji3|#tjlUK4W z&tk=FHh~9)fig5}1R!WsX3f^%?t5=A8C$%>R*`41?5^QSeKz+(fgGS~t{?8`cOK1Un`Kvp;U(eFDlkJ0Ti z1@P%)^Z`FAF?jp?SRyo_#Zm zrm*JV*Zl9KoUu-6fV&EY<^gV*ffe8Ymu@_@I40VK(mJA9x+(yjT`OxRf0<-T03YRc zJ)?t@7!hlh9E=VHo11bYb8M!nv*;C<8!$*<(rxf5hbj`*j#$&Zh&|#9;NQMkNe~e) zO)tRIPn#}OPaXN5kRiT)hTf{3vVPY66PRZ}H%nh{>LzPw89)yfSHo zVI-n9`AV6gnV)6$@oZw%Kocx$0JuPgWB#}MAGyL|%Zty)yt+gCWA}5kM4(9oIHGRd zv^>_hjt1HiZahi0<1oxCe=1O|0eph*B_|<5OZ%tPA%_$UKywY_qs_~I5^oDGzoT57 zn_e8?8EF5vec<~!X?YJ_zabD;rMaX<>*v;%*jxC6*|9J1`Y-W3Q~aZMIN%Cvi8{UC ztnACgs7M%}cbs3v;K{;y-lg-b&sNUE$5bb2`GQ1BOo*Ec?aEZM%i>2qq}G?jhT%{R z70(%~@_;Ed_@y`_Lby3q{zUsA{juk2)Ce9Z5ee9vNeTk_S6CMj+u(rhyhZdWLG(=# z*M_9irhIAsE6e|x32(${<%x!2_VoidKdy7Ip47nz z5A`oc`TmKnl6A@^UVRmG{vD!kJfE#jH@Ci9zBJqScm9{Zg^6UI6KV@kZk~p;b3>o? zNr8_@wukWNC3L!;zal{eB{|kEI@uPHh#u&~om%z(*O{?GCsV9lwSDmv;+&z^;|+Q$ z6>@*z+gF%*#?(LZ_EV=i03g~{ ztochX)pSvk1E5(@#r~bE*y4k?`-5ckfB?2(Oer`_c?kR4ms^vbH|Ff$wQ?_>owC)$ z4m&op3d7$pN3q|261ngC?V5gc1J9Z;f_Ca(x1OH`&Bzi^pPOCWwxrIEZ_WoU`a1`_ zbMp^a?M|;AIMcASf5Q19Zy}kXgO$RsOeaU!baj(W_r`bcWRBrO{mxJ~gTJv%t%FoN z`N#-Qg=rTc5|R`zN@}bgtff+*x2K?M!U5~zvr}8-J<#+;KXsl1&;ccB#VbHYNTd5} zRfd4S6^|Eu{`x-Kbyzz0Gpy~OKh&x2EaHw6g`+F^TIpMlW@>R)5BF_M)9b37w=RKH z0g5G{_jersa>kMXSY?Qggx^;B#3P15W9NA4hshO*YKT_(ux!7qBV4#zh;N6$_g(6@@VNOWiC;Llv zNzFL@@b0u^jivpT4D4u+W)_+_mi%KW^)-sAYxgm7 zt-lm-7A{V&AT|P#dM&)*hP{6my5bIfMtI_KxBR1n9o0=W(8yQxvZ| z(9-JSgHaJwf1|ZS)7cr@%q}8hEg~TP&%flGz_Szn!Ne5vY=|QFb*@H# z%YP|;NL~(;$ivyiGh5U4PqcO63)?2GFsJj+omc{o>ucLjdMv&r0f^`ZPj~!IQ{Uf| z!+M-~)!?R^lw~`Xcb8n+QDen|vp|1TQ^Z!XqpJ%*#%(XoJ|W!710_56!XJ~voCdDE zjVu7+*D~yBm{x?aDadtdWG&VsBt85%p1U4dPpB!nAToW9hq-aE zONu2R-w5xWa(-ugEM=1Palo9q??XoY&eWRP3Q;!wwrZ0}ASz zSPK}>iz;uQT{$Q4j`L*CL4J+CW&kIB5d2wC6B`S{3;;uB0-ajU`dw;O-vK^Ci)uSm zb#3|NZ?Yo|d!P9$bWYa_WWnW*JW1Uj10>YhAI1G;h1y;@b1EYF0f-#O|D_i#lLXIJx5Mzm=C{6q&n-j#8CQk#=ari0>M&nnJq&n& zcK0=6@yCLqydeudw21!3Ehv$Tz^Rv%O0;P&9?tDkRN1c_b& zWwoj<{J9O=TWl%BZ6WT6nl}iJ)E-|xP=_{t@m%#_!ifrjzN&u0!hm|nbJZtHkN*#F z!rcyt1Kov!ikghtJ6t;91FtUv_*#RYoONzfhT-v7Mw=i0q_v?iJnV=5i#WSCgxh&A zo7lH+Bz)@;-SD^ur#8Q7sBpcS6uFcF!9x!Z^~r9B zTJ*Xops#8#k@j$2&Mu<78J1JsT1YP>IANw1#czh!<%TPP#vdGpDo_n*6@C56sPCouLR!j?9-4zEH4rLu>mGaEa6dQV$>cyEmQu?eB6R%J-Gp3 zwC9|22smGKW^HYLMOk_FKoOL!@bntVJ3UcGqbSs>M$*Pfxv{kK z%`&TubXu&MG3>+Tl_gcp ztQcR(a!B^RR{D|5$>8lx>O4&NzQbvOuZK6>R|oc}x7zpgqP_Z`&mZ3#U~=3Wel&l4 z%Jn1&RGDsEV?iC{<42AHy;Q^{?5{L^Jr(z0=0&bjEQ6~Ww@RYdt}tU52N^o}$T94p ztQ^lIMkJKr{9R}OD;r1l!wY}E|Cjk1I#KuOne}q|+0Rj?w8Cob`V%L&dPQ4EpHuP$0q{6)H<=ki)x39$V z7YV`8j8BRfKaJa`rOZ_k_|n^5e`@?z)4W#4;=TU(4g1}5XwG-PVBsnsaQU!w+jeP? zSVoABUh06XW)z_F!N&@(4+<%{eJslST{)1hirZ3yai$Lkq;pgKbFl1HlO7xcs3~)5 zaLEhast?xRO+fB_$?)9JX1?Br~x$#E}m z0DEkovU2e5QRs_f>%b5)eWQtfYYIDBByU9|{{wg!o>N5+nL|8I9eBp`sC@23RFzep z2VU-PLO<0diy9Qi1 zfCtsy$qB9dQELKFy;Y2`g>Sjuk}ljiD?IYl`5h2ygW!`vHFu#y_!vpbT1vpjY@GgXT6<4efvUc_l9&O)UxVU|hI6g1w ziYQ2HLFyEM?Ym-=J{-3_H$EIf8qr2u_%nWL!2g1Wyvu>;dNMI48QLZvzI(UrY5I-= z5z%>W1i>$;NUSFv_47`zklBAke!-552$TH|sxU`8M0U8xzQ{(A2omcFKoz=J9=Zuxrgi43uHdzI8;a+Wz{(p@+#$nFmx| zYPMwhBEnPp$*wWVtCzr@tUXYa+ugC}*_yQjCU%C7QUK^^*N$C(wcf*M$2egCy713N z{@9G9L7riMO35LXIN06rK|@54T^;m;)3|Qeg7}zqfq#Ly_sFgNf!sPoTcJE?>DN10%};n}^bC(C-r z)Y40eBG3_^LHAy0;~)1MNxK@++|W;cq+p6VQnLxfH5%47*!2039_AFazfh?fx+}z< z)dGFhf0X+!+^Cj%vz^auDssW`;^h^;p6ui#^W(m@o0o#sMnWBo?j^eyHGzI`6CB>F z@ZXG7yw%>9+@t{J9*Q%K%W;>mC;(Kv3xDtUb`KDM0x-EAR|rU#Ap=4deSEgp=7B*f ziRD7!7gt{y&dfZ&51XnQb^v*=nD}I*9a zNOd6i;tGGdt)7V-oB^$@RO??Wusm^u4g&Y?Ks0dch&aTSa~QUKifMmmO&%Z&R_ZlU zPas~IgOGi_0^j8=0;KgTu#tvW!d~*~@Gg!1ed&dK5ljANYLGO&zi+UJ$4fMk6(laR&Bm#)*Kdi|FR`wjeRjadEj z^szzZMqgueoPslf^z1x*srzJjo8TsDv0ImV+6{gU#olUS^VoT z=lAR!)pb7$^9t;f{-6M5v@lY5MEX+%HbFHygtd9H;;2797YC9qV;6Ia%N;m;F7V1$<+P6pYm8z*yPeTs2QAJ%cM55hsr~1 z7lG?hc+yPdTCQ#L{Bzb{*7-%5nfR`mNC*?+lhY|X+++>kbyjaFOaq^SQ}{|NE88zO z$4e~e`3s1k9%?IqHB@&92O#yiBKPo}8`)b}HA>g@M7`@1HaS7H4HNr;?}VEFkMKhT{jN6G(!s|7!9UZ7`Vb%0T}e z(UP?kswJ1+nTK1JEYB=hiCcyrCXA&Mb#SpaC`G4p^*zD4-waV~EeX4Re6 z(c&dkkg7Zd)3A4wYuOaC+`^a)Q&}Z8K;9QGS?f!_Nip{A&$u_$kZu|_^VN=w%J>9* zl;e~yRmI`%qy{%gbgMa&9MWLl-5nTcyS>@UuG{jA+xV>OHcJ}3G|^JQyP`G$dI=UY zyx83Y?s>qkaNFgRN%Ke<&-?P`i?AuK=aIRzgRP%6gP4v{!Kl@{W zwjfv$01BsG&U+Z)S%`xcs#ZUcU?}o=uJC?t2BQig3Nzv-td3rDcu3ycen@)&_gdCG z0SjNGmr+EYn|i>My=vqYnS;L&xrXrGoA7m8b@{omg@r-Ou99l|$AFItz_}qFYgE1& z7%8V303a@x9`bEA3S%OJ+qOjpEw+%dV zg&dCEs?Nw-S4OaMpo8;6vEqlzWQUgYoI_$2*;Qf+(F7uhUm-}ZLIiY^SW?N_4!+Va!-3bMmvRe zQ-o6Y33-DP^AmbTE9wlh$fOi!yr}}(j@&Uz6cKLedl&aD$Fh)jWb1qo2=yqqX={y6 zADH=H*x5&M0o^_x;d8s_ zqmluks5p!EKtaZJQd?vI`dv6zikrW1+{)|@@o4r)a{jw4qJBt;J{xJ~mF?A>Ju}6$0sV3+j-zgfY-Rol(CO}^}{~J=wGl(Xi4VPY|*58|)N|#GTSxHy>{Q;q(^CQJ|+$Y$>UKcF)1`3!g zv#koSmGqT?p+#eP>PR594&gyJovVOQxfakU8v#`Gh@9qDcmOTX*xals*||ASP(RS~ zT)!6*P73p%Q0IqeLiO!cz6g)Jo4>D8$DIq7pNayHlVBe^yISpvq*avB;}g{#bL$66 zsH~99wcC(PX-3D~kmWxmZ^5NQ3H|^c2w=Ej0{{~OG1g9;zpW!o5^|q!$A_G7V|+0*z>X89IY@xUl>r8sQ(>;`_&&l>je`f(Sfr{-UTHmIkOoc>%MS+xqm zbbzHeDOFwZx>u&l%iYfM8#2Us43}rfL|34r}`4?>~80KJFC>jY05)N zT^sW?c(gn99cR*xF6x?<39(&j z>%o_SPbRBW$_y@lp!68>ExWPYdDJyCB}}@JH|4Zow;YK#Kwt8Q`u~i!@ZEpnXMin9 zy+G*~u~I`RvErQyAbpzeG6T^n^q{S^x%84HKno}a%+dmabb^X>+B>)+)Kd61)8ih+ zG2~uepS$nq@o3t8iD6jflUetF40{}ow0KgL0SbsPq2x~knpyc=BFY}5#|t??G~uQG zwn*U(eDelgwX4bNhWANW{1yrPMqG3ioQN>Do<2_AmjA+;*;r1zs*VfXdGUWGZ3RJw zKx$fHlvy8F`6U2;un|ovDBRa2;9UK_|4(IkgdTj|170fR9Txz*0{t@AS*+gSeEqD( ziVXV1<)=a-r$b143!@lqgE_vX6t{wQo%SnWd+61; z&Wjw52Wy-(hkL*W&xS-TIwTLtGv)Z(vo1;(mH7BfQ?PR3Z*c}y^R*E&ozolR(BO7X zp!+crzFzaMt-(lYu-V~8J=_CFz^74U@G5~M3yET*QE*gDl+Uh-2jE%Wc~A2&MUgUr*k z$-81${^mc850>9I?S22Yf_l31PV5zqVYF@=r!5mkM-u9{n8oCv_Bx`nBBiF=l+Ezd zw3z4GNDZ6P!!Atw*Vij_!rb`hSoCFVqa^L}$Z*~bQ%yZPq=uxPCRD06j#USC71kRW zy{aVk-ax~q-TD$v5O?O~b3&UcB~grsIU*+B85FcLqx~2+w=(}qh>sH@1%5yr==H)i z5YK|K*sBgQRNBqJmHN6M#wp%PEln84THyDyEZa*7qj=FC3*Sc{aEda>nZ(Jg>OBdp zG~#gfLepc2xX|deKrYLLI~pt3atf9M-(i-1`)Fj)DzvRa{v34DbESm zMUJt0^e6ZUGst3Qjn^h|WkRr~Kj)c_Xd|g=kTsAnXV><-vyYKR3|hIzgL{%P6N4Iy zP1*^y7qBcEcRKPPc8jaJ#e%jj+i>}YhUhXAT8pjGMko#7LJ&sI^VZr%(KF~En|0lJY94rg8e3!_ZeNE}Z(c5Z~*$YkN+WRtp23WQLBWdM* zx$9Q5a9ayodQj+>dOo?~y7k)J_SOJsfd!TA0n)Bt-UfL4{A+;}COhf|gRJM>(91lH zFC@4_rq3wj3bm6FsS0p~4l{Bp$yDkC^;PSd2~xSzd2~Yi4@JzJ0^S0OIU2Viw4fIl z@Yi&e=E9k2UxxrI!Zl z5g5h*0WcRX!bnnuybC{PnwmQ4gD1d_ucr;P{`M`qw_fX&{(^SRf6k_wf84UCzEWuq zElM64P=TFBGgI>xM`9La!?*gl|Gv^+a8wQnDDc3Y3NeiJ&R_WiZ9Uz`2)q$RtID#6 zG(XwM+pnvGR(}>+G%-$%L58PuH_rqf{+29o6%iillpAc$qZ$u8z~u0Tk8BzKLUh)A zd(UuPUju#kGavl9aawxT=?LpPM~l8^ICOz_jnaOLUc)UKo;|~h-au+#Vm`*W@prCY z!6v27Y?6ZMN}{T6hWuKS*z9S&H3BNy-q)5%xk8bvPge5V z?F~X0LKEJ-e5(B1XO~^6h$CpiFv$k0^y3-8`jeeM23v2-KWHm-h29&!M9mHwyO$_% zfwsBgeEoy_Hk0XJK1)^F8%z+aBeESZLuI=xjzhs6f*fU-Tt2pUWMbvtdT#-KYu8X5 zrq>RF*j5;>>qcJj0dZgqJ!t6Q`jB;Ta{TUq@H0J-i%n`COHJ7Xm66)azG^!H2!h^6 zY5ux21?7F;cX}h;!yxQ&t$h^ShxeG|F7WZo`YT$_{YABUOpt0`>S|TVkpvbeH_>p$ zjm!V3-oC*Q`}-CAFM}y4Pi#^ydAVQ_|HZhYgoSeT^H*n)9 znqAa_#8FcP%w>vY<=Uh`X_NL+Kr#@6rN@cv9_vaq*eZLz3@Xv%o;dphe2E$H$zE+D3Q;O^c69W~&)b_N z?3;t|^j1Pb!urF@moGsPcw~$d?uw*jWSRv91?v}RwDHcV1l7?njdf@6VAH4c~q1q)I~9lU&eB45i1CiOS+t%Rubqfq*z-r(F1JO@xPX+wK^tj}lS#n#H6GGWRj z#HXH~WGzlCO86iob<$~gE8FpEnlT=6sl+53j4goia6Q+%+EGtCOBQw%C7Y!NTKARn zKJ&p~&eB->S|~kzn51GKpG^k6g`B{s6NaZpn8Ja+ahhsfMCc4NCUe;2IPI9TcG}w7 zDngP~*xnTtVdjRKwYqou`S@UtH$v!=K%k6Km<%4M=X$qR?Sh@9l~2><{0994DRb!QZaGyG&OdRMQ?^lEzXR{nnW^tuD<+X zahL!^VtGF}2*;sZu;={KzHJRZi~1s8{307?&VQ|=zFai!y;>s~P$XFz z9L?^frB+Cy_vOF7c!T#FhZX$Djru)A=pfpLQ-vB8pMd4D5QuRTdy3shR75-^sw-9a z<;xdb;k-nf5B)aGoS5>f^0$3?RaQu>_H3`r6B)thuRE$A6WF zTuG`ESz+IhWIs!eZ?DPh*^)>Wk+@%vxN5)L6-Ilsg(9~MK58_tgkq>^(bG8iiqa+V zY^__eCQiL=M5K?hhn-{;+dyd51c8-$Gc9vlaWk*d3{DmK*&RX?A(JXWeD-I)Y5MP9 zF<=#r|L(s4$v4fv%Qw}bN6AC)>WzDwIy;F#frs4}Lyh#&9*pp9KPeZnf`J54ZC?#F zlEKsgroNUs7qe^_SCVB#;WnqX#wq&nB2A}qV^O}Zg){i?AG2x;0sEIPHOZ0n=Tj2^`IKj6N}S!Hm7Z2t7x(}CDVcY(^Y-@E82^Yw4gzBNj51+tPAV6WSF?W~BL2{wMDskIG>fq0lP#W%*2f8c0#S z`N>1L-{0~_E5j(L#l3TO{}oR6^XJcjr%HFxs4xJg7(%Rca_hGEIAdkU4+19bj|#AL z@2YAoabK*kLdF2~SX=v4{YCxpA=-_2HMT1_` zI|c+ir^LNK^$fo$IP2ynMjc+*(&7pT3LYPiFk!Vjr7FJvwAJ$5L?9<^)B!?EJmn@< z5klco{eF~@7}sDTuK61uqmWk_Ew`J}HxAC=)88b7(U|eWcB6B#e-pT|<}!c+iSE?U zUxv33%A54sVkO*4in!V~r?@Y2EVibN{{rx>d?(N?M%5ZY&trm>ScbwM85v0vC0J^k z+rwyoa-qr;x=Fvbys$9fA~G!?$xHH@XN|77`J7L!!XRC!?#n%895!7NZWur>2N-f5 zG9|?lbi_Fh@{AA?y>sFok}8A(+UBeyZ26OWL9Rt-0_lH=iVtM9b(V8UeC4+C-jafW zaOMTuuUn@Bh8WCGvZ{>;uU=bu@#L(llp&m&;=+2NZHOz^(!s&Obk}@yo>}ckN3&0S zL~$@h;gX%oy^get>ft%k%Jqq>1bBU1u$MSAyk`hS#3uO61Cj}p?d+ca@w#i{!~I1s(aqZG zs*P@&89lCrVND)Mn3V_lf3YUwg;%C;2iKCOS7{gkTKw;tvy|J)Zn4#*d$E;dypcU5 z=H8Q5Wm8l#OM|6Q2P*=?`J(PIBfvy`(z3QMUp}4ojVNe0Y%y2n&7u@Mv}7rm{Ob6E zjnK)K^U-;*W$?FjipeCsft{V|O&rk7IEK0jZ&tcn0PF}=+?84q?qYe#Un=BB& zT#X_tfxmAbkGOVAmlB;N_s5*&=+nHbT}gOGiY}3pmc{}#sA~;?UlG?(>_@M8#m>yk z(9>@NIso?5|MhD=ORx#=l}*>cZ`;_5F{Grd>~NuUK=Tz(lQ4xdGqW6(H_Ix780)iz zfM2lckK?0&uVuem-Pwx2B~TY|pO!Qs@XPgLx!%x-fl0lA-h{|f9NuDt?KC zX{prtCzGpCi&I$xUW<%7(H{1-KHBE?HTRs0nd^R&KyU9HX@9^SK(k z;W!YyC#nCcW#fku`{zwH)9h%SN-E7rM8P&BXT3^7LgL4U^r4jmux9h~dF5ByGjANt z{`=*F;NfUu?~20_As*2U%^P-OlnG>JEv?^UE!5Gxk_8v)sE*m|_XpfcuK&i~v14(N zmPlqB7VB85FL8HtRQ~hz)IATPxgfKy?zcTHh|GJb?tz6$?`>(RNcuV>`}pzWq4O}h zaZPSE&kvM-Li9yg8CskbmX7I>{WcNfVigWq$4w2j8)v6C%IfRa)Vj@H~qlVr%%<`DS^e2kdc`c zCR63j8aO!-CLWBPkQlaWXl`lYa83KgJK9FJOV?zLib#N#H7{7stDkL_ z>cBo*WM_Y4uAdQV}V8)fT2->sP zt?y5A8uszBtm2`^IiCS?<{$asO6XY&5QYrnp!YjHZ?KLuB1UBZn{?+vY9ty=cHh-+ zQ$iB+=ip$#`yJ2QsiY{mjb=ly=|(=l)2yLupBF8+f5#=HB3l=<;_wR(X9AeB)xFH1 z8b9tBi|M~W85QK*;KG7AADfYCZ!%*0^Vv!JWVRYRgfRsm`Djaux38`XNpbWRRNf63 zz6Rsr;e`~3{>`g0PSxUUXl!I{wiM0-fF;f1+UIj3fGSN*&xmoOcyOnM$h?{etH!I6 z@8#LdapuLb$C%cG*!>{;mzNUFXS=uqNvCE{)Vcaa2+oM_r`z{|@;!Lk-Pe4qUdiQm zqw1~4_gJ&rO4qzqZ3Z+~#HzbhQl@bp%#fs_gpWak>q8xTa2%MJkU&(Yd8iy--gLYx z_9htL8c%ddcz3I*@8y6WPl;65#d1i|%Gyyv4IYXT$F@l6Ncde43%>yMkc`z)DfFy5 z5$FTh*9{x>!n&+!2X8`neE~)gc z00m7EL&4MfOM+BKM+aoF_$pe_wx*O2rI$I4QkNV~>kdMOumPW_leEoiZB%OaV_p5ybhgM{q`JV5 zClsHo9u$%JMYUgV&Yy#2^@!3By1*u+C!9BQech4SpEK(4si6V!PcgEVaoWoUoj4qh zW^jf4lqlv9SI4XWrDl$Ho?7`V64GtzPYJ-{)Q+E%P8mK?Z$KG+F)uR=8sO8FtuDw( z=pHdu&(HN{#N01PdEV`@=W-W{azC0&x5y=@*3(`SgkR4vgnUM9KSsekq1Zb|$(T8= z+{$3x+O-V5_}%3)bth|*^}U4tTNH*7jo4T~)Bz1FC)j=J6#8&`T8;V6wuc5sK?Fz0 zv~ngb+vbr7ZXsx*nLa$>#ii}<#Gx0r4`2APmh3ox3QzGn4gB9**zzdf;{*=gmUMue z9vN9?WVL&zde&?`_A>O19o(C@^$F=wUvS1qiiSg~@n6hI`GB{F6KFWb1j8`bq-Fx(5ptd0OIyuO&*P|`r z^z^hkf(2Dylxg@87f5ntI)9Lvn{Oz6q?ghTO@W|dkHuDZbX=DP6!df z(ic};u0)hb3$3D0K<#1kx4-u4*V5&KBo^L=3iwiMYv@be5!kK-J8mQ3b3EG8v^a+;0H^;e zh%V~+rXE>2NsJPEhI(}Yi)R36`{repYQ=__+sy{k1GmQaqnq%H&Xq^Kr*4=);a`| zQ&K7yc+#nXt?%aPxe-Ms*LQQ+o8l&x05kx8x*qOtOf4;kcXw-E1+89nfzJYJ8gVQH z1Du_mSq1Zp`HpJ;>TJ#Xp&f$wUyhM|Fl++ihFJ`w9inGE9hChR>2u$|0~u09Ph*&# z@V(1h9Y&B*K01*)v^0CMJga_^?uAX2qivAbLR31+0lJDg@C+W1tXo z(lz^9k3iO-Y5}vWa$4?I?vnBLI+&-~Co*2i*MCxp;Y0Vv;NXy| zccLz;V{&LNuU;{~UesSk#cu0X7#!_NFmwztbpKH)6Ute~klId^+?AxL%tDavvVS$S zKUvSWqT|uZ67^>cRF@a+QJOfca0D_Fj!6b|E$8p!NC#L9zfdhD3f{8(#4w2EBZGq8 z_~EWq`5diNb-V3is~4-^q__XnBqG=&$?cI;4xYROq_(yeP*RG%GpJf_0l9gV%??$m zyj_29J!NDNgrXXLevgJ5-x5XUaGo1pS+!6Ow%&4jC4CS`3QPYufP7BRqA|(3bkW`S zkP5nA9GRHi|qCVMJt!x3IqI`0MuXSQq(7GQOci;d3@N z!EX@aolDQ&6`C~PC4pB{-DS;tvn*r!E+gJYg@>>40Qu;`;n9S-My5tNkUZDampMn{ zS8+=fhYd^>YVZ8b*~#^5{bsc?RI0`>=)_<(3-k!b;yl9}p8r7t4@yf6r~(0*KFE2J z#BbZ&7#?ohe9qu*#)IWJ{gHhW>;{ zXz0?6D?X;Aaah{Jk4Iy%YODFD+B4Ly0LZ22*+_LW6Au`T5MuQ<91S(XSXr_yTFwK& z*N97z-mp9KDXpX%{CA|HIWgD0nBwQ{8|*jw6=tg)Cgs*DcI<*$!<{A>r#6heR#aV) z%AHF^3p-(F+i9t*?cY*-?*65~t@{RTi^D+D1*C6_)nj)u<$V{l^hvmGi(f`ZKzX@c zmNK*w1e(;mnJ9QQ2C}rYR2D19YPA5oiZdrWLar<|ey^i+GjT=2Xj|-!YxqR#el>r2 z-y31*jK9&JS9jj)egd0O$# zwJ$I;d-?+Q9*$GO)iMC-iF2pW?EB`?7YhNrIe+~+lS*^#-Dw*?W))V?TsKyK(ovO@ zvVzJoa;n-RhmyOy&{S$F46BJviDbQivlF~147#MZm3T^2;JHBp%pgdnYT39UrbpM4 zYqL6&XjzP(S|I0K?&cWx?JWsX+$cnqTdi0XQGt^p1KV>GlTV$U(pk!CnB+Y!?RgY0ZmYM{pC$;jm8tm+kn$Fgzj`_`V}Q zFk7<%Y4FrX@a|s(&HniK_&>}(41WmOpXbMH0axTcLD6!Fy8?z}$B*t`NM7?_HJ!C% zSbf}WaK;Yvyu7NaD#xl+T^6z*P*uqrHvay`bmUtaHIFp}e>Cy|YQGe)1m52IS~YX` zB%T4}c(ZJS{+4OsO8CzR{3eHoafk=y0UQ?tAGT1yr1|$27Z<(2cmPR!a(`jRx-<jr9`^#Wc4+235W6aBRuy7PWM^lWv&~_*1iMqShn?42yEZ-CbqteN z`PACdnwpxD3ov>%z@UQ=vgac|ccIeKgZKAxgwX><*2j^MXc6empQiK)XNiHkk0B(c;RY%=ZBr9+xg618DT4 z>${#QZd)btg+y2(AzJ8Lpv)Hs;r@YvNQVe_z)slOD$wDpW93-&+Vgju9-mR}o=f?B z2H)RqL4nxLnxFc^6v)f|@&ta9=_oG-fH*hAqs`_kaDG zT+ZTmwPux{(lre*ad5Xlen04#{s5E0z&!jo!TJxz+%KD}1V~oB9onNi90{+tx8q$cv|W>^3dt z+FH1ta#S?milKr_z2Qt(uNi@e4|ef+s|wx&{BgE@(crR+$WV=f*cK2807k;@!ZpFD zFbbG=g@A*fY3sx_*X-IrY#fbH+0QTnR4=G+7W*g!1BI3NuhTT|3E6l6t~t_XPOD}} zoPF{?JpdD8C%OFN2l++^kdD)Oeg9hs=b&Jq3Km_#VcsWBeXpf32BfI}63*%K*Jirx zl#!^&ZIUcKm8kbIQ}xo$jD@@9ska9Q^)4189Ckn~1W){+*p{hM7y$%w-CCS%w8pX* zu<%p3c)f72TrmwXj8bdvI-0c<(w&c>oefQ^FB2kXL)O*3pW9PcFc3U?8@_QY;YVu3 zjD@n94U8hC)=OLzYM8W8V($m!31&!T|^XH%pci?9uT+J zKkas5j0XzmeT8W>Tqh7U(XH-b0&F;TN`mIaeLa4`xL0;v(a|_soEdt~N33Wy5pAlA z!xb7;_~<0kh}WRteQYX5hA9g~KJrl(c$o%(7o9uC!D zdEMK**eY*6!Pgm%C$mM>ZvZN^1`ZE?nE6_)TBnML zWgsH3P0sPsvq^iVOAXr@qrv4pJ#quJG|(~A*VdUlr9R!3AD>%TSg?pJ=?H}(1As8G zT&~rYHv>5K(fSp^&&P*-pn)x%`W$bq#0WHYQb6OhZ;CHZh^~Drvhwh`y&d#ufsh{Y z%JTUSPwe!cL3XaL1e%(f21h(b_@^+S>VYh*YThNCqMv%8Ag7;ta61fh0Y}B)tS&uIA0W6ct&|GNn?q z&=h~Mfce|=;Sxmy>%Eq&M85zY43U2q<{@y+P1{J(ICnLJ)S`4#o%Oz;5BlQrX l@_4fS_}N-E;{Ur1zfkSryTGXi&gDTMb!8n`y`oLz{{SXw;VJ+C literal 0 HcmV?d00001 diff --git a/mods/psionics/icons/psi_fd/freeze.dmi b/mods/psionics/icons/psi_fd/freeze.dmi new file mode 100644 index 0000000000000000000000000000000000000000..0461619064548d99017daacafbeda541a56e0f40 GIT binary patch literal 2774 zcmV;{3Muu8P)V=-0C=2JR&a84_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex7wuvIWN;^NFm z%}mcIfpCgT5=&AQY!#F;lT+i9OOsNSxHwZXi;5L&6%4sJ(~1&vQz2{=g^87wxYQ{t zxca#$xcGW<0RZ%iCc8iLEPDU|3KvO4K~!jgy_rpH8^;yL|Ds4P%{6x!lQJoVlx#U7 zX~}jCLue2Lfl(*uhwIjeM4gb>qC(>dP)zu6{rOC&?Ii+xRt* z(8!f>d=K{S#dFVDJs%pm^49mnzYG9&3Oo(~=U+Jm07xi#oDK)sxTxiJ_4zCVE7nqArqdV4XeELJ-hWRFL z+%lqIXynRUb$)|D6TjU`__yR=w$l$6Z1!A?V_8~cjAL1|coGqB=|dv<0NLy++)f6mxirw#DbV7-1)mujx$>5c{IRQ2_R=d&o0?M`aaGeuRG8sr z?~_k@KN5@b9*_v4pLbQtZX#Y?%3g{_`TziX0|DHhyo-Dl@P>W)>IrGbr@K}@WXaOThs8u;15pNb?wBu zYuBeNLy9Z0fB^lT-6E| z{ECqTt;Ey9X`72rTOMX;;lyGb%P!dLxz8u3jB(wu-j78k^QJz_ZUK!)2;WsRl*}iCp;S5D(p%5`z*g!F!Kwl3XhvL_I$Xv2jSix+<)*8=}ZQF z9u6GO!?C^w1Ok|zd58eZVanbq+*>bf$u}Zk!Di19Fj)cGT8XD$n1~-uNm@e5w>%%1 z=ZLGCzF@N#toS*8k3hupelGxEmxsf#W5;SvdOQoC%VEsru9Oj9S;BVt4N36x$thUv z7prVfB7?kWjAL1{^2_NImeZ+*F(hZu$5FFc@x985NW?2jE#y^2!CGELUnGiET}LAE z06v!!8)^;(n;ivJMS1eBxE+2&5~Q03BAg61|BpWuZW1w?k~H(UtyX_4zKv-^BpL+( z$WjLRf`&jKh*G5rZhZ~?-QCE@GIskr-oBlDcnJUkzP+^xvx_2Py~1XE8_+uBHycRA zTdlm+I5OYqaFC^|#8&)Sy(%OV2_zErJEE_%w(5s^!kC_!LBUp&5eNqH%@<#xTCE~75QCy9I5Ieh2g#&({*_Y# zISs}*mKjY+jm^+zHz`(TuJcyemJaDC-*1c?O-Y(LQd;pNE~oh4wK8N`f+R2E=f{79 z*~cji9_+_gU;Gm`j>r7s5(56cP*ztlt5=2YSTCeZM%?#It)qODh+{5(Urc&-0|5S> zT}8*yV**g$0#>DtP8#IzR(0MSy5?kK7P=krG=Ie(5Ek0(f+R2E_}~wr6*Tlk4j?s` z#-71vg%!PszGwv1Y83!*ILM3sP#BIwM}s%U0H#eT}9a&G%ADP06OffgacbQHs(m7I>DxX z;MhyY8-Cv=pIPC(!e{gI!rggUp!tf|C!{kH_ILR4{>Rr5=;%P^lQFTYQg+8q{z6DE zEdc=B2M!7}zu_Q69}?(x7C?iL&F049_~o8n;g5fL z4}0n*vd8xn-n)ABx9?xQj{V0^2xR4Hep4BwMVPueqo1F+ajRudK#VSR+puI&YY;CyvOk9 z>2Q!G(XyOQ8A-C$sW3fut+EZiz5_nvcRH}K%Z-g<5z@?K*!Fe{t@w7Jb!XSAtD|3H z;>Im3$9nPnK)(?!be`CbZNfLMv9`%)0HBTIF*Q8{HM?r;`Bv7j1?W3=^Bo>wU83j{ zo|;n}AKp(kT&U3DPbbNV8@HO~GVvMnWyU6aCa!9_np4_8yq_%0#uIQlop2vGC~U=V z+v5-327ot)hYe@Yr4DEgyH-8H@c7pa&5-%U$)U<03S;8NEu_b;l>v;^`Sf=bZgP#a z13oi6{cb*hkSQj)e1Z0U&h6AwJ%4B1DZ(xMZ+_4G c-vhw^0K%R`(yQa|5&!@I07*qoM6N<$g1nDT9smFU literal 0 HcmV?d00001 diff --git a/mods/psionics/icons/psi_fd/lefthand.dmi b/mods/psionics/icons/psi_fd/lefthand.dmi new file mode 100644 index 0000000000000000000000000000000000000000..6e6c4d0c408931bc13aa9e7ff0b0034d30b4fa11 GIT binary patch literal 15096 zcmb`ucU)85wk{k*0hK0*fQU2!=|u#k3j)%cfRqqKigZQFOG^-xA|fCi#DMfJy%SJ+ zM|uqkNEZwx1d^<8#dq&>_qpG`=brn!_YYXf%3N#CHRgDp@r*ggiZsyEpt*4M0t5n~ z(R^^<2m&E%BmGfPfM;&=*1rG`Kl~p)^15&T;)$ozGcP9(cL?OK57Du@@4kprznkb<(GHn*j05i@B6cU#0F2oU-4Qzr_FXtVE{v z^BdnBA|492jw>BH{DmEl7KXK6D^lECEhRjXhU(4UEUo_V^~m5}P5CM#Gqm}yh71+( z(K#WS_wPOY>%&e4?CHm;)FtFpjUiP+XXW@0ZwA#gyIW<{TZ!~e#y+doUIn6)H9-=w zlJ*a-4!p8D_%vo9``FP|%iw*K^{dO-1(rr>3y+^mrrO(oi_%(lhiG9x$BYgg|bbC!>cz-oJuSK_Hqckh75B8(fex5asvu5FVTD1?`yANis+# zIzko_cAZ6MUFPUlZucr%HtKv!2?SDc$qhoSAf7U!zxG`HzKW>Ofx}y#WJn0lEQH0= zhVz+sK2&^t4f4EKdFEtB5z-nV139{j_(IX9AA{^T7zAE{zc&gT1RJV@ zzZ-p}cn$vUg^>*V^Z6zw{Y576L<{l=k0AezsjE3kjmMYT#SlArrGd#=uAU} zrsTHmojYP-i{OoC1PBZI=#4`C2Pa3Wl{KfMz6~n+t!@dhquMO(f;#EiK9spTvv#et zYsPT?0=0OO{gkP~{;f9lstI3a2c7fO{>*%l_bbyac5!LHQdBKAck=RyXa{;JH?+vAl2ioqMw$JX!kn-L%t+O-PL7= z7FWckSu)(g^X_<3XO5$V%ioj3gA|t0^lQs96?DyGM3s~(>F*COrA|DDj{Pn9M zIS?(qUXcDhH8b8(=Wsv(JDkxupRdJyxF0%qgQ4&dh8>^K@fx76`5f7Ti^gh?f zQ3XRr7=r>Yvsbb<&M;awh5o^|EneIe0tsf}{0F+pAe@?DOGxaE|A`FR#Pf$?-*J^x zq?RlztE^S+F*eS0AXx<8`zWdZnQHnu)_Ac=hML>850d zuEiFqTc*F~J0*Cv)*f5P7zWD4n)ne2#g=4OY73?Ij|j3C7z7eY1TsJZ;Ewh4Dja+;wa9~p?)HY{gkOz5 zkx4~jdhPXo^2GY_^O|qd5T_c0ygOqpZoD{peAC{fU9)1g|>i&GnhZ&E9-9vDczjfyE<6tJBBly`OD< zxXPxKb+B!S$U{{<`(0Y{6s{=VLRLWaWSM`Qe>mt?066fwM}1MbWxS9tP!L*Aw8nWS zto$)tu>N29HX}mx9p8GH?Liv8g_AT3YKdvpo8upseGcCFa;)5|da>X>hShBsB) zf1|L6t>jd*_IKq<5~N9ld=rJWOpX4@RuH7#9aEg_AX-ea1i5jQbMEseTUbHuBw4za zgTiF27g21m9_AqIOgW`pE%pIbVtQ33!P+1GJ#g%oT9R!G>zm6Om>GdJ`|#-vCPCHL z%Jk0s9#sRmn3y(2*}WF27v>wZ{<+Vy^A)^;$1-r*x8^dMb|slKMaipbBWu0kZ3a?Q z0g}ck0!iuHihUZKC7Hg_%9;IJP1K_OR$6*(-uH$_yp{x;{L~O;ltZzOfu&Bl&%gFk z8_+Qv2wTn-ZL6mksm$GeuyA+d0upGMdarMox`S~|_GM})&2S;Ynz~ji8KrqueYNEJ zOtYU1!PcIP(0i^W*J&>(+sH*sKM)N;>SZ@HZa2-#t~v&KlP6na#;fk3?S(Ah#&WQz zX^pvtqG+w41}J2}w`f7JIL+&v2Xm%uZwYtPgWy3#xpAB8ltA)Ef$xBq;B0x#b{-`! z`{5xyl`sDK17+%pCqCv!@FcSb`BqE*HqN!RaEWuuQ<`*=MWUCmc$Lk~G*X9YMizP#f#($6qbWI2sR7e#rnKY+&nFA84 z%azK!e+zKn_lK~EN1GB6diX(O;9cW*Xc7Oi-NH#^>6+WDLi$0mwi4qda}x6lYSKR7 zg9JNub?Fzxa#)04Co>rP)owg@uP0mw6d2(uByEw2Ub-pu-;f*sOG5frbs|1+*tK~` zzaNr84D`|HlSBU^VmM#LG0GD%;Ej>70FE$kXTEgX>de%3G7GPi?l<=@ zwvKw=^Bp;V3Uj3k)>(52m2sRRmiFRpF-lT%z)BEOCJCtvn9&AP9?@~k;D4755hHu= zk*Fv!(OIKO52VNjPPVY-fc@okefZ8rtokyb6L}ZG{y{ds^)!)kwKtqn?fweLjSo`2XOkVv3J$~5mC*YY zJ;gHReO0P-eZ?~AGUF&x(~Mo<^XGd(&sr*q7C%7a5qFmLhQT1@e7G_u8R%nSs;>y` z`^nc19CHBqI{=b{Elz_tsKCt-3Fzwb9?F(lXG5Llr%zh?5=_>z@>~7=%l8pZT?9#0 zL%DkEu)n?sz6i1sQ&{)*P1cq;M$FNI_i0Lq1d91xC`QjAoPJh*qqT6FUoWf{&GgA@ z#ce!+wrF|Ih}Y;=m+mulVS^a(9!lSVJqDsj-Xpw6>7HL_|6=nvdLrziU&mA$NXZ`_ zDnd06Zfei>;%2|p@?5yv`;9KkyYd#I*Y zz?j}K%A(R4qVD#~D593uFdweVH7k2Rm>wds2eQIY%#f5Q`2E@e z6hfU<^%n?0YXndfF>ZNgV64no;g0uEfVnD<6p(%fVCFdssLDS&A1o9-fwuCPPmxGO zgPf%kHz=N`v1rc%IxY%K3X5y{SAoU2k7iUM9qMrgx3g>qX>HKA5X>&r8N8R7lE8IQA#Uq2M!DM zqNU=5-E3+ZsQ$eHNLF8@$fBTPl*hL3%-UDka|n^`IdULQayI1YwmINMb7)JAMa4(; z$EHUz`h=!!5QKeTABRJ7j&Hq8FEXS1NP4lnwSp7W8up-IBcXSC6abC=Fr#fsE3SDD zap(9^76GW68>TNl8iK5 zB?vPwQ)T91o%p1@`H`8O$iY(t2*yurcB4Ziu8_UstrrcFga1*c(iqwt9NrbrwR}SP z{p*aE?t(MrO%RZ#6Z6Tbf(#s&&wHV2C_+asai@n_`_ zNsTq{2l@Jxo&jN2c!FY63u*67WjY**d(3)QiWA`%bJi?Oa+(Tmx}8m(57M!-7rtIH z!=vs1BxO*9skS^LR$gUSDzmRN<@l2B+t+3c!}|7MQdorM%w+Kl_WV!yG}cfjEb zaAe#=oGR23kGM-UOAVJzt&aH}5DcaOZ(0$L8G~T=(Jw|^0Q=ph>2EtTSs=ao4)vUT z9dz67ewXq7Nw?l%^HKa-Ybp&gBgwZFP$kLZPclmL`xWG!G{L}c#3pg-A(TS?bUbLr zgW1d;_jOKsqAFy=e%NPa$N2PP=Ek~}<4nHmx9nDY#7yk~_v#c6u~FN^zgH-sl1W7A zkHuk{FRs|x^4Yz(VlUJ%epiXHM3&9VfyGkOSCUKQ(yCk;D0p4An2eTbML?=Ejv$(S z+y0Zg|x_5Ro^0D{+PlZMvbvU9Q#>UzJ-`eXT2*!6; zW@R1f^qy-uC?bERgOO{!WIfD1r05MZHJNGjTZc#=a!_c&U~98Jmqq$P9GP@Gc<)Pp zmw^Q9*=dQcI9imVx^F10v)Z`Ur#zP|J_mtSUzAo1g+X!br2&X zX~y3xcs^}=+V#~x3Q_4s=Nhbn5CQoET%-@ zC$h+JQ-`!NSLOERDeETw0RYTg=R~P|z(y=!O*|>8QqDk&O{zs-yBg~ebgD>V6x6h^ zzFg4a=^?+#eWp*)MH4Ttmy21oK3=we?X17rk9ZsCiwPPQjpLZyw)W8ZZMfUtw|j>i zUo|+LbhcoV(#YV?cUwF+XEc0PjFU(YVm^%rewT9yd+#j6l?P`6Pe%lNJLeE#5f$YZ`(t(k9gFxP2<`>_}h?f&ZS-KtNm_1MLC zY&O?{lXmt-(&Q%$7sU!RWOAqv0xno6Tl85Rd}WseH#xL5y2j9bl4>gq=XXH9ZjsctQW2!BI_1SaKxxBvZ!{usf-k7PEWt<%{6EgN zrA1f@_4c;?ndXdLnDhdVC+(D5o6(0q4`q?uQ=2*E3KB1L1t!L`-r{AXS3jmS)S84z zVwzTq`*U`_owRTSezxwjws)P?Tx1g=N(wZ&UbV7lm#URWBffLo4J*6cnv5;=Ks)Xbr&3&#ol3s? zf@tmmEz_}{O-0AfnuLWDG`nX?CRc|kWVcMhWHkggP8m*~eiGy{1nuteetP#37fQiJ zgFg&AG>j;OLMOTtHclLuBczQnaujWAS3LS(MAg~rq_IC6&Fui~iy?*U{#C`(QG zu4+Sy=JExEWwCU$60Rzd9XFo4K5FY|O?c{3IDRAlqnoJPm8@S9PfzYv%KD9O{1r!n zzybN8f25O}-HLzRZk=2;3+{K1Os?<5$+il-yGmKDR-XemS+^UHYSy^mTZDSVoJ*b* zS#`hvr}1GU_X<+LRl%`(4s9D>?3)%TB@`PeAIA}cH?l5T^Op!0A>3-nD6aR{OfU*Bn}h_6Jz>V1;1$KG?Lzg;2?$ z-Sas3>X!fX&PU6-(>SjFx*W+uq)`UjET63F%4s}$=fo%D{l*Y8*vdD)w1eotHiuy^ z)_rr^q|mO>GwmrScsEqKwW6#t*t*=;yq0(^8(%w2b|xhU8FN+}3Rg;|0cTj=+4YoY zyH({o+Uv{Opt*4arp*J66YXdox2q1XlU@DPIukp5@p(H7uC%MA_9+hvwUR#nD<%-Y z90uIjN7hUhg3*DXpM#rzUFfUd_#S;IK^0s{3S_m?lAa4wk$XM9LQ1GrE8j;hJUmlS zh2WULCX6@nMB=TUcM){&wjto!&kqS<3T&mL#t~Ol=U2#!X+=f1;)QUe#nJUQyJU$X ze?C57kZyQ#k5!jN&g3yQoX@l&be@P^EzraNbP>hRXb9}_vzC4opsc@O}B z>o6_Kwwk!OtvcG6`Ep4=VKAr;Cs>V?m!iD?T7k1^h220=4Vrmv%l9zhe)qxTWF_X^ zCfcRJdEhun5iHMr8g#KDvd+5u2269e&T9^?K!sW8$Nt9XuY~g;#}S2J&ixA2eSoQ< z^;4ioPAaQ8{aDHw9EiXe2MlvyGzlNH;HgVyrZQ&PrYlWxyG`Wkie#~NqUMA1zG{ae zXzY6$%udhllqVN5!D7~Jxz)BjnR&LW4jlL2WRKXt4)eYUx{E5}G2Z(DNg))b!`UMA zacTJUw}(~EqP~UP=;lB)*ywS!+d79c$LpT~E|ng*jFDlUBAx5TG9HUn;GD99Pq#aX zYb*%;^Jww2x7zSqn?b?~CrPk`AnpFCK*jtByeDSgBlFk8a#`?poAr};Qy)!H@3e%+4ZJm8nq2C!>H#xjD)M3>pCL6MSqiMm=&0amH2g{F| zd+#?PnUI>n4GzdX=#{nSPOfSOlh{gAGJ5}_S`w%0$H5J4c${8U^0k(;miBikaKx3Z zFjGg?QfG)VsrMk=CIyNXS=$A3-#&8O_a3pFgtE5_zZzy5DVL4m8S=WfZCBgHIH7FH$3P!uYtByXSB8F{9bj55ZSohqMmAPcJ zn@#S%pb-kg?%uS}onc41&b`n~VY8+&b}CB?s@@ue<27lt{2b%fExI~4+xZ6nY{j=J zxx{jNb$|AhAQOhrBgX0M=q$ti;_k%*5#%_su;zKSXa)b^VZtJib)G)82DW~Yv!m)3Sk&O>;(2>Hw$ZGO<-_Hq`Y&r~~clR$t;u#LI&bmM&|H7JgHSYO! zP)d?V)IBtVFDO#ud{&bCGK-!u_SOY52%tKz%c=)sK}@u4LQh77h#tJ;ddK`N9XXP4(e&5i(#@~fCp9dwC5CwW$q z7r?k;#i1P@h{BNBzUt;|V>y`?fMtk*u%e8h5xS*}))oU@5be7b6&S*yY*;b?*=PS8 z(-i^I$KlIWMLQmlz=Bf>sshSE%(+Lhd#S|-Q=fO;j%_u>0(Z!xgJY&=Pe8bmgLw&07 zdup@TYp{t4Ukq+uD~2@Ez~}zULt#SZHPY=R(QmCtG)c71*0qdg!MU&0S)<*3B*ARN zV$E%#ht5nfSP0~)rXb<=4i~{jUPdw1`>jeioNwhSOygTx{vaqqkbw-nCZJ9+!U515 z#dKdBwM6Ye&TduD?I{<7*<(`rRwRNNdr0}u$>NjidqvSj5D050sTRNz`vKIwioq`K z?ALogh=fi?OinctO1(RrWx3E9feII$uzp0}xhl?;(>Q(Z)CXd&uC89E&0}acJ{Qos zbSvEG4`8c}!4GG*S-@CbyOwuclp&7!_^tg2RV@Ddfxia+OCpVn2SG zO8Mjk8A!02uB#4o1BFH-&Fff>TD<&@>?-Llr7=#ND5X{AtRbVM{)J$P-^+4{H+)oA zCT?@!`>ZXaB*!`@R}=O6MLvz6W9vtd;(38J&MrWJ1q_qES^;Z69})q`%nFScH^e65QV#=kEu7bm==Fn|7^B*)Q z?f09aY^+#+S3^*fV~g))+acNT?MFX?toP?yIRrS@FvGQv?3UE&a&K;oRi#Yt7^x$Y z?H8WYi5q)40g-U?%=4a9;Fx2bhxnr?`^UDJX2aC`m z^j-dMxRC{X@gp5n(m61qlPli_R|zHnFnuzV_Sv~`6!$u3gNZB3_48AiFH$uEqG?cj5I9`iGMrQ{GV$2yO5kdyQ5#~;yE0Wls>NT%GiFdCa!kX|+? zzhAP3U!W%wetCvvB_Kx8zq^hWV(>PToD*xvDNVY7?(hmHZ3u0!QbS;BKmt9x07d(F z-$lZ`&t!WCT^Z4q;To0TjpW>oXom(he8(!^3`r!7ovWDUMV-$>5)dE>b!|k;v6V>^ zI&72W3EPONlv?f2WS=cVPkv`8sTtqhT)%337s?P1Jy`(2PWUVZu^(f90R!z6!gP$=*L{=$z zsGseucT6r{p;d%EtjHTfi3l#@6B{B&+6CCbL-EK4!8Xnf9Rs)HVXe|rd0 z4YhFe&zjA3&JdY%eDz8fNUx2m>E`sxnQSj#a37Lf@eovSq`+=>%vD&wkJ z1!T~bL_;~loNELl)3IAeDLY1L*pz;k7d3o*O(`R{^DuAfEemhiC)?WJfF*7!HJ+w|vsf;?rl66UkkiA$sm1^I0V#r4OafyQETAG)& zGr{%2ynlxCf18Hxbb^Ei zjr%L4^T(5voDM#xUzU9FcHY+m#7HPo3&wRf8Cy;p(g?3@9VS|yRx#p**>I~S9_CI zKiFyH)q%Oc3=}+)S@2>ir!tzZJFpwBfF+8u9(+=h=i^{-az%fu>;v3QZv{+WYpI^) z_1c`~Mu-r7lTn&a0f)#^LR3mB*(?Ti*v)wqc$7LjT~quX<6U;B2|w`&P1$~*2JE*g zkqqADBmzF~Z6IodXj%BFyjao#Nd^b~IiO*Z*+iq+KB7|;w1Z`0{eWjC@mE(F^d5Tc zsRn%IB)&hn^h5RKc<9qVcEc%VQkQMkA3`&|1y$E&{O5j$i*Zzng7%J(k_+d4Ibyo> z?A{^(2FLq#R`v|DD0bUw?Sf~Q(;nMi&6u$rc0?9V4(*a=7Lz|p++G`9L$ry$kMF7M%xe09nB(yDyG$p4?d=Ryxr-u_ktgo zYh-4TtVW!^a%W~dnGwydVa?RcRrRUVx2@71s;bjIrY7_ z?jw!KTspV4Pi0;%XB0Kv7?1=xYGS!t34#@Q1b%|d@4gTL05P0bb@77;rB2-#I zf*a`}?E9ceeNQL399psK*}haE5Sue+GN0J`kNG{_gDXSC&+n2SbhPH$dvEPgdBm1c zwbO(CL{0ypt&$h=O5F?0>fIF^-$|A4lgM4o0U?o8#n{-)mjthY+NKdqe%mYI&^P{| z;A=JX)5TzJZl%`!{HKB%)@CiPQ&;g`2HQSvB`cvVg*3_%Gr8}|BofDXC1ya>bmu@z z&MMDkCv)r&t*(5fa(d0pX>A|93xNAGrdI`08`d#Jm%HQKB#Peii2k^r}9-bU6X5(3HzYopkGMPPVM z8)mthX7G6fVA(OM9RkB`aWu5)6YK9f+kQY|E?1`|y5ilMfZVdk8yZsBtcbDEc}B_s zBHaLq>*)?(0f|{Ilc#{MvDcV7d|ziErHs6G+g2XZC9id>6P)UaUw$aTKjL{>7BR+i z`<+5mREnun8|~a8z0@+Tkvz_a6Bw{hg^doC~kol|@5Lbn{ z@rMc{SVKP-^$#N)%In_2Q(S8Id&&(eFQur8ia|Q`tFe?kz~WxIS7MSbzWLREYU{$v3`AT6*EVw^@pr zP?&8!LV^Rb0T~M$y5On;FesKU46W4jDzW~84Nxj4vuBF%s4D10LvG{r#DH5wI>z){ z!GS;s;LGrBX~~WJd8V1L1Q;C149re8$X0X60OrzjDE9EL|!+TJQ(p? z2AV3Iu-4Tl=t*h_;LCp*h?+JpmDmQmdxnyV78l@-vh`sVR@xe?)ESgKIgiZ#VG5)d zWHyp_0G%mJx3u+5o=y>U2PteZs9}5a1!B-h?bG<(Vsh$Hppo$AVV$-s5qlfbdkWiH zngcAv;x>IMwh>k7HjAwpnyR%Lfd6HKI>v#undt<^O)7(q;lZa+i7PS)MAuSF{io^^ zgkh~*yX;FYJ^lDu+)KdG-Kz#?*N=9xP%(SE#B|p~d~+ z*q!P)jcol=axJceS)|sxXUixY98^>@z^@jvkC)bwD3etd(I{`)%B4rvZms}=Rm+bEyUrA` zu&Wmq0DC_NWwkAYS;siBc-?LWIC`ft#uKMD)5>L?NA5~+*O~jMt9WrL3NNWjl?WRf z0_+cD7d<(6rGX}HJ|Ni*z)8OX<{0CF{-pw-juEn-{XR@88+(g)muz#V85a`n_3a)% zUnhZ~;QHg&MmRYfin>&0Tx}1*Z~I$m2TcnWf>FQ2d+iz}xDH@YGjT_famk_?7Mri{Kap<8Z z^jG7JF$Q_qg*`t8?TDjx;1|`X;xU??YnJ~E;HdQlW=aWxh|`F5ocouG`+rqu|8>Aq z4zm5rShd8)(uE$$&S0$%IPD#U7&bw#19d~zp^MGnqE1b!sv2MyZXL!jd8=XY? zWP3!l0L!%=D;P(EKM{h2jgzGnP)Ya%D@rtwkriE1p=1f6<(50m9^cFYLsVf=)fB|2R@`$_|fa@FD=)`Amg9G@JUbf=^7%P z-KK!3pXfszHtsZAa4pfN9%gouDr4I2cwOqnS#Hq8o^PvXQldj2|a@?1rPJ42nOW# zeYBU(&j2RvKuh5|uwa_#`O+QY-!T!JNAA$#G(OH%9+lU}Fj(R$RxafqD5GYJK_s$5 zz)q=&mcaT0ssFwnHcN^tL3SzlryWiz-ccRdT==eC$1h#2$j>{!fyX z4sWWJ?{9khDli?H8y*<-*y-gLtp_^r;`_ux0JS}o_8#I9*fIbMfyTicsIo9F2M<6C zyc3WUbZ&uN9;WZe-Q6qQTTEp7qh0pOXKuzvG3Qcf55){XkaJZ zMnRq465H=jd`<5ap&)PwWhpJz%q)mU}{bc zzla}-N7F(b&42C;PHnD$I3@KO0(|9`1k!`3zpQCeX9*)#BnpiqR$a~kyJvwWp8F&W zKdh$vJC)fOuDb`OS_i@Z=G~b80;wI~DEX7p@6gvQY^+Iqh@f?7o0`~r&LVLfeq?l2 zP9sap;a0sc+m%5O)kId5z-A*gxyVi!yaGdQ4pp-H)f4jotxu> zagf(s#6ol#LFk+m{w7e@qWMran4eNUy|x2XinYCNdTyh-NI`bgBlhw*(B#5#{u@Ad zL5pl1LPkFyYXQmGr=Yst1PTGsmroy^nbAyKVy>b&4_^uyKQZ}QpH7x1O%8cRwsXOj ztF3Xxw5NWT~?`zSS#rD{&nC^-AP*ehFd zHsUS?kuHjxD6;`JyAoFmhS$$rx;z6~jyx%{>_3l#-xF$HZ0duN`8R^))i#203HY@H z7^PecKFxJ{rFqFb;ix~^gvV!#eDUj(nVW@Vm@-r1UY0!9k|IIY=%(tY`AzAa#&3YwIc( z((#G0UJs8lNBFnRHx>1`rkJ&nJp>~jRZ33uB`215{71a}GTe7`&^Wr>B#^CPHT$#b zx;IGM?SNA#AoQ3h5ixoDsRDPQa|C|Y6U2pTjK5X(j(qCr3?*18xz-N2w*iTt_pfDs zyr8f3!p^9hOBQK<9$Zwc=g8fxdDil)ELkOR_5#pE4uqd0#`FP4*I!M60nX`a)^kjCcwA~no1XJ z!S$hTzvgD4SMW)*A|8fJaXYrKSu;9O=h(KQaGg$1TMPBPQXo`xE#Y(^_|v6>ONw;b zzsx=hjDt9Ru1ZM-VfuS*qyu%HFE79aEK7ontcjD8-fW9RP=K$w8IYZ^8Tg!&CVi~r zwuf+|3eFoDc5U!K&RB?f{1Q}bfQBY;P8pW{DGUq*CDU$a$I|(=w(Iz~-1iW(OF*^2 z20*+Jtf--Onma?qr)Fn3@bO0$TY}Fo`1gbeAFu)FGRExyff14~qoIZyP43Um@p^5Q z;GlZv{a7*W7`fJ!+zqRR`h%y8wST;845Y1{v!H`2Z~g6{Pdfg{K|2?}AE{)#`sg9& zIi7#I@jv~RE<6H{nkzCA9pxztlVTU&GE7#F67^0=+*wUjkJ-(mCY9GBrI`pGaEbyA zg|g8&ge10#&SEOFM%08&<)7rfjKHI4h`y?7Bq}b`5b)110~K1~=ixV>l2!O#$eO6F z-4gn42ET*{$^9Sn*^QtRM-9-ctWK@R^?Z_IH}-ir-k2ei=Qa$wS<@LHT;o1bh6BQ% z+g!EvN#jx0Ln6K)hih=uat3Pow+Hiw$qax!lN8ne1+UM|K>c3Rg48eC4m`e;3JfYz zeBZwjW{{+WNf{UDz|??=MhLKQ=~K`iN=|S#91E@~E5AP&Hhc=wI`98sg&huvv8b@1 Ulb5&#UJTJx)4N}$ViWTJ0p!Cd{{R30 literal 0 HcmV?d00001 diff --git a/mods/psionics/icons/psi_fd/projectiles.dmi b/mods/psionics/icons/psi_fd/projectiles.dmi new file mode 100644 index 0000000000000000000000000000000000000000..79b9744210b324749f2cfdd92bd674fca96b0dc3 GIT binary patch literal 420 zcmV;V0bBlwP)V=-0C=2JR&a84_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex6#a*U0*I5Sc+ z(=$pSoZ^zil2jm5DKj}WzPKPWJGEGei!&v&s2C_{$i0KG{>K~yM_jnKgnf-n#T&~KE$k#Q&hI`BXNanb-KPy!`Tx_@_JNrsDi zaP%$we1mC3G2xAXYDUbTVvA=+PQ@0l*+7H1bGVsa`Hqa9*WU22*4#nuX4Z|H9^A(bye2+~)`43?OZelU|zu O0000Pg3>|h0TqxcRX{+xfJz4i z1nDK35PD0fk&xVp`|fj|Q}#K}y+87V%vx(^)_m{#er1LjBLhu_lbk0Z5D0^|mWBxg zLX`tPp(l=mmen_Pp5SXH(DaV4hNF+YxAS9PXHO3ZBp~x;q7viROQ$0i=g*vbf7XS- za`CPa%ZgD&sG3XkJC!ndqd@raNd6pVrKcZu2!u)dJDzo&jQHwAxgEXTV`sjJl$?M%qouJ&#_h@VdB+RTyI&eKWx6)gArL-@wuY){K<4@^ z{1MN1i}V(%hgJ4C)WvLCW}HQ+FTbMM>~VQmWPJ z=+sF=5%*3vNoh1KFh6kg@ze?0ItCq|y@hBnTJPA6o9Z@l4@_+`7mJS*FY$K%JaK2Q z3E@^={_e-Ox$Qd%cWc_9m%JR-3E#iHX$e`qc4gp_09g8UPQ6X=^;1NU4+6PFO@9Ic zd7(m04S@(GhC(2pPyB~womXEwxeoO5!1?L zs*;MOe79`G!_4T!@D;0P9B&P&{c<;06PxoaT7m_W=Z&qu^iPmN1TPfR_@##?moARR z_xs`&$5=+)&JJ=^?kon30~KxM2Bl3ZNDnmBReJRg5kz&2NDJ!;#f8=I4@$!enO z7a`?(s5CE6qj8nA@>W^!f>uqFwu)CuSjD;keTi{H045A)vA@G$)cD-+&t6h^4)4#K z)YU?S$69LMlW9Tng1PgbzcOFTyxPW8Y~pN{8sy@h@kmHjm9I`X`{l*&H?3 z38r@C_qy4ynmwfj=fPB z?c&9w?3C}051z-yhFN$tB^wHPP>ZXEtThGN885kUYz1hz48$-j-iS9+%AuISjf*74 zY~PpMez*_)8InOL8S@)@cqFWX~Ve>b{{r|DiPgFN84qG;!jI< zIbkb)r1kN7r2E^|r?r^sl3Y2qv+mr)=N3xNZs?#_ddip}DC^rGai!z>>UkO~gY+m; zK)G#dkHlEOOPDe3Dpd>O?K=5~YhToxf?vIwqee)qda`OvJBP-eARm8ixot+^^Xe^! z3it($GlwxUJlhTmgE9K3n_fS|9|be@937QR(um*tR8=`t*Zx-M3z$x-aI}K1GC+WK z>#vsL8QbZBoA>OPCL)D?)0oaVA(ifDEo$rsrJW90%qG8Ad4bzL8^EZw+j2GWw5-im zPJDBxi=B4B83p*4(t((AFwlU@EUanao0_zm3agH^m2|+6gqU`Z(u{rbnon}%W}Zdm zP_Ty@iY`1uU_^|8U2!QTT(H2kRYdgeV!_+ixFin^>-6yGA+Bl;#B(2|ds}=7%YvyL z$1ZpcYAXpr^EeFE?rhI-eND_P@96y+*zikLYD8N!Chu)Zpsuop479U7g_-370rFE! zFn9MWXw_5J@Y}j54>+a$s3m8yz$S%>g_Rki#jni6ryWP5SL$c55==S^2wPCK{zG5E z^oGc8Nb6tHMmGfrh(jQPOyGV9$1_@52;>$Y6%{0uMN0(&xlj9V&58FJ(jS_@Yfgg} zm9Opt)5!4W!uo*np|lwd3c68E8Ty-%MZ})@CJi>>yZoRFLFUby4g+uVMpATBp|2f| ze74^YJ>`>W$!)D~&LZ{*x;9*GmtAza6XKA}v*J-0Q&#g#8C4uWhCn`+d^-MTR4Lf_ zZKXM1*An`>;*US$nyY_%k!Cxq!1Uqm>SE@Vtd4j_?xMLls+GnNDdWMH{h3NP*?hyJ zqbs;Kawwx-hsQ3hPi1%3{DP>&HS}Is+QWRBQVEKnPHGf1T~hpfj*&N4BI-tQy?4ILcQ(0jm}4jWXm7dItm#Z_BqOIkD5Ejm6p$Tlh3!R>2Id8PriD@XzNlaEbsvA^ZafUcwsUEiR{R`%0oDDfIJ7`K zeWUS?fx_#WqNPKc?&W#(MO+7=FG?;bMVOVjAhsDVaycbvXjSa?QIj)vdOS1y&*H*) zXU#efyJc6|6U?op;up@OO$bhMIf5r& zzzL3o*nJzDza5h=Lm!huIFhbssq8V7682yE{&N4XIf&~*3gj^ve*Qt53@7U3r$2fE zuoqFsMLhbCJoCI__dNnD-S-nQ(J+7Lc!=FagKwf8ed9bHz&Nbv3PcN1t~{lojE{&c;}h5UwZz7x)$E2tkc z0?voVM%9#Spmatf?fx;lZ>t;~n3P~{J3W~vKVQ*EAU*|hvG;fdDv~;2u~X=dnC8j| zWCvUogA4o}1L>vnU1|&&_`NMsN3USIbh@V2U$pY@C9Pr_zbIRGQkoB4@3VOtZp4{{ z`qtb)bQhlaXJjM9=k|4C$0x+MR4|CxS zr0xqdcj$x5X(cohC!`B#E}hn%aK=e-Q%wvstB-)JTAeCh~5$>=swLi z-m&L?<2jL+)d&J~MKSx;I7|+4$~M*v$i%++K(FMn=~l;;phILES4G6HvxdWU*7`&E z#m79fQM6|Ow5Q^XiX9di)(rF?v|UZ!@~P7QQb&+|nd#|Ih&!mgU;2Evxh~UhJJJh0B9t9a zzag5yk+5!wo41knto_+q8-z=*1ENdQ+nlwf$b8syO>_k-zmlV~x4uo@_6_uo0Rr$I z;qew|)1^Fb*2}X~%kbvu-UPksNZl)LJ|U4v!lN;bc>V|W4;ae>&G(UZg?&a}jX9Kkpt{52Z?Y!IM-4JGAC}q5`CbsNlL|W}f*d5mK z6ecsJf5fK;8|Yo#`5HvlXQFiOj8&vlQJ0Q@t=3jwbCPq9r zex9oVmn69r)hrnOjXXCYyKm(U6fjYpR*pg0B6XfAt(BsPR9GL%iabMW7&! z74LVrJg)R8c2S5T2UcYJ1dPLf|6<|C^LpyX0`caqa!iB1et-Jx86f6BHibzSPl7(6 z*v;?0(i3BNrrldVfkU7uIR0wyWx=+%#iGooF^qn4BjI($ST&{V-r?5QXN(Dx9X*00 zvwu#Nf;sMHKgzdI{-mm*fr82#h-k)t$ft4N+3Lh^y1868U|PCYu%1seCV|m4b5dWmS&4W{h10?dm@yXmUQMfk2{9ZPNTxRsK`H@&DdTEtEsi zrBZ*|`PJ+Uve}ILC$R@y5Qq)95VJo0qv>EK zMD-3%IR|k2Th}=HIkzbJPbA(@+I1lm1T<>zbk4UMdR@JDvcAp8dIB%UfR$$NgJro0 zQ^vCb0$1<5_97d=+qby+`i#?61|G1Ijb9>)K6_`f-rmat@dKE!6HtN}vFLvpOzEJHH8vbBE+9r>a^z?4Umf`%NS{0G zXwPF|Rl(D+(&=`GG=$}^!#10#zP5+dZzfvZ_xo%Y&u;c}esVOXL?eK<0G;{ylI}mJ zZ>T7Z4+^;`%7ZyjI710gu#f2|(*YP6#)Lnj57E&O6rkT7JR;EW^G8h-dDWji-iK)U zp!5v9b~||OsQj+DLxMaIB%wwT4m0~iTgssR?eEUtnl{@UC3y#6j z@=6B_21P}KpwPteXsk!l3@6afny) zZp-X?^ARxMTsvlR-4)q2>vNujWZ(j+k@3e_em3y zu;2&cyW7U3XK4@Efgo-&aTlr2e!p53oH6z-1H{fic~i+D@EGBWv{Roq_kmSmL$fsK zlUa0kHe)bI917UT*V`+N5(u`l_qS0ZxUkkok}&`(l&JU=U4jvC2JY%CvPf8ca?oDs zTN>6}A~w#FB%DKRKNSRJ9&Aux3Iq~OaVj8~Uq&){G8;D<{f#B%xBd}Jwk}))eIF7zfNx2jFi%Jabb1dSRZwcwaO&!3XYf3G^ExBR zah~1Rb5jMIx%5e!2@5^l2UAET2RciUKl`YF)z|Aj`GS%H02u^~+S$69x4qcC{7Ba- zuNyHdJ1bQm2%N@kuu8t9a(m!U#PR7snnlDDjV3S6qFG31bB~n^Q)A;m7%^eioed@ng z2;hp~p9ckiUDts~KMa)PH@!}hlDgWr#cRZ&r9vOB(_x?xcyDP`_03O5Y7B!cxZ*S;xoNx8xQiOqP*e8yMR3lr+^Zwq14gGZhYH zf8w;{8eDEri>RzkP&oZ?+KO;e?4KP*L-z`AOZy=~y=$quj$GSnzPMk1u6So!^H%cE zKCjGPyERvd`oW}h2;Mp8h#65C79G;yDiAC^FQeG7n~1}ZkIEzZWL?+84&dm;eA$x+ zdsDnJX|uISHVDk!zKy9nVr-R1jl_P~E&8+3<8}FK`HVpkXR@Ix#GS5$k>=72+Mj#T zGBy{?TyF|H9u}qyS(x8yBL$JEj?g06)rf;dX*z{M%GZsygWjUG!F}laNdu0crS+(< z%=Z$5e^n94+k=`seQfpPsv59~J0vz=gfH`c(k9eX{?(i&+gWM!Y77iuMijN*UeUR1 zJqk)?l7z>?DMJWlakBrfCEcBGW8ZTFRR-N=^=LG0Eo-tqQ0CrLg+~RW2qwjY8;1kw zV?oLl*}*&KTeg2V?Tlz@z{Fq-YyDq^cno{fIcfsn!jZ|6_vPeuq-dyM$}0s|WYx^|uiPV#vEw zh4N0qtAWL}`Zfj|!KRakzuTp(;yM>Qv*EQ(nsK*JRa;@AJ%yERe=$4s`Xx5Jy!=GG z*Ub==)O3pO(K|lc_AoOxcl37`4D8@o=kMDH6!Ufc^SV640?sQj{rcqxD0#6yfuAY6 z_dszUER`=I9r1o=rMkI~yn92ql|!Y_W%?U1^kmUmMLK1!OW@geUH%wJ)Nk(Qv3ug{ zzhLYVJacMHhe4M*3_XZn+~BK^yj*gphOAyaX#BY!8j{l1?;t{_%v~rzh&JVpOW#zo zTa)1GZ+H4c$Fd{eIcG_STnr^`v-}{R`r+dW@3=#Uj7lEZQ__V6oAMq%#Yx_kd;1RR zCaCa={9?}fd~Dpb&-^sD8yIR%Nuu?a>Vn?|smi_BbO6f`zEq1LpLbt@E^L^{!aZH9 z4n6^Ocr2FDQsi@t1As-Ev7N9^XG?4Be#2}rwBspVhDW@q%xV5NvrF=@!=)?bz1_5} zp?u$lZK~e!I#NAP2e`QVt1)vN6<|I|q%%||ZrW5g%MN30NyaNCOBDLyrO8Xv8JI&n z@+Il;?5$MI(#JtIze1$^MOL_}&>1hKZ$+f1Ma z*?X16v_dM9LaT|aT*e1n##^zZ`>ivlPQEb>sT+0$FYfmJ3HoH6WMWsK59U3+f)xC413RUm>nF&&yxS%=w6HaWHeiHfm4V)d46LPGDi554)0$Uk5$4LQJ z2*Q;LbYjPn&NyzF7k986YwOxroBb0;PX*aw+3b+}@kcYL1=o4=B=Pvvr8prI@r_u$ zF2%rjuFXkZ2$^WG3qn@0pn`(x8>FSwgPJkZQn#qR_ZZolg3F{4lb`jy0i04LAJ zuM%zfM*xbN-DPkVlpB!`I8Ik|bLfE!nhD!C?dyGq) z(CuB!0gEky_`q&lPifxNEJ%>A|5foCGweE!pqxr>{&U8zaxT48hXeP$({LIdnHYM} zt_iOmwB6gCfNEWKxhBy1_P|+JrD`E`Sn+yV$H4;$*yLfIyM@jhzggz1zyw>#flF1c!j@Xmp0Xj5AOLvLdt;9U78F#qvDIAB z0rxpTIgVa$LPr^>giY?5*EKYhOnr*#yPg!7AdQw&!Ji64ahI&*X#`!tb%TyEHn+VZ z5zMxTppfk%lv*TM!OXO@DB|GJy$wdP048w!ENqWE5fwA)CvZopyDhtawxsUQEiCt0 zbXlCV)cq4pJJXvssiG7{@3(HzanrTLJB%rnVk8heVaqc3k6q9{KgYUraf5Ird{})4 zfg2gyoy^zz=3ry>-B|kD`frq#CB6wUq3x%fgjNkY!bN#opZDUZe1qR@uvBFP0Y!^l%(z>*xfnp} z=Gk*mX380-ao;6iL#Lx+!&NLx$A2jN zDKKHsigk2>8!ddN!_bB(zkRY=oTbBp3sqV1tKHmq!8?HIJ)qK;MZTl>PG4dd9~akv z!m6@pMKW_+YPAFkJa6BK=)$}}7H)c2U-aNKZP;PQeeYt@9SxU9m&I(3rl7N-APQtK zDcZWlyy?ZlB4fE;Ymp&!>3rJ)w^6N>FqGZb&~kL@A;&H+3Z8A={mKt@KkDEQS~IIT z*^I#7`sZNuT+Nny%yv)6wm6{d-+1!3@_tYXDp;!!gK?fn!&#z>w^?`qu#^i@n#Vif zLc~SY$PV<2)>pC8l2j!efojCsQZru#an%kvF6eOFpcoqxK3bN5PpbbMA;MA#AJOYf ze*#VH)eJ9^X&qNOw(3PI)$@W>;7L$-A*X>_iG3$(hEE z%Xsp|OdF~ZCzSYP1kC$Clolu{qe99Zb3<15Sx_4XMzEQD(aYv|g8L0IoD5y6k)0g| znK5vZ0jyEfA52BTZ2xPsHo6`SKz!Yw?cD5Wngce^NI5Ub(&&W0+cKgE4lxKMl>Ohf zSylK)`nTL;DOdT7eM&yI&nv~qc4~rfJyCSvFknSenX*@-hyE}E=+*@7cW@25*nS+6 z$Tx7qcja104sT*Fu0ybc?nL{}ZtTGVIwORy+#N>)stvIC4&R{A9N#wRNn8pW?4_ZE z(RtVw_Yeri?eQ@qg&3OXPZjF8-iZx%?+YL<%l~-|*rNq7D~7H9Ejr3F{F2^)O-h-B zUN;?|<&hm;#*=h1lER2mC`ZgeAX>8}JrdR-yP^D3H|YIyniIXNNxMW{_60wN=<1G-0dCi>z$meR`_(q98 z#yaz=kmtbUn31SZuK9jhN^0|`IXe6O0Yyh_CSxn_ElP`;9u4;gMnlD^UWaV9EFVA~ zoMvktn=uJ2US0nbEe#97*4!O;ovQh`u)Bthy-T_>G0Y2lOkE1pEZ}ZBxIb^f#F@^q zh5QnsT`zS`jzPRhipAD8$fkCNrro>#tCDTxuV=|3qx)%NnhIj-%A?U=suY z(5i$BQ+{f#=M8jG>Fzco#s3(AME4k2>I;?jrAKdLGrUHa+n)6_N63S*8Akjt)V@{( zqTmn2j}UUM>L{{p9mjRRK3e%iGB$I*3v&x?KO zEEIW;tzVfPPq7uKH^sIf`XZ5cxJk zhZea)0@wrQjd$@$u3adnF!Ek%cSvVR%`h+G`^(~uj7Xvf|4APeJKa=}{`2Fr?_K4A z73V~JwsHu1f7L**LykS$HcEpu9v`6JNBk<#N;t?Fc;h%R%DX2ac+aN@SOL zG=|>2i_XqG@UriU09XnOyq0}T1kFyH^jgFqBU-wyBJTwPWQ914upS_T@)C6~gy@Tb=X>Uu2!R;AOr~}CbHoOLBnAz$Cd#kL>aB6w z#4tc0qgvLHJc~Ta;2zrorY~T79-_iL?5T0>=p(4od{7_dHA=lnOPuBY;ZF~Ntf=Or zU_f{3kg>UPcb-16km|AlC7l(*Ug&|9R#hq|Uuz_`J3)VwMrD}RGW-K6SaCJm_Yx4a z&v7{r;!9*9Zpjv+I!b#LK#8Kejo@=0cvoypF>&LGq6Zyc@&3byoFFn`OlJNpj=IiQ zF`VCGfsZ{SHu-@^ef~g^ao02_Xhtnx20Zd-SoYq*uc&)RJ1VeIce(>C*zQ zHy4PNX9lqw_c<8zbl?%a35Mfd@yNo-`*pKgc$#9NA#S6mJ>^eK&V$|#lvKQ4o+~oB zVw$^p=kY+Yw&FQtZ+GxO0KUqLO2e`r#^B`;yDLarS@2f|8uR)dTWiRMc+L3osAEzb zSEX7lhacZZl@PjXjozfQk5H?%ZiLn`f$=xHYQZyVqv=k!u(`d}OxZR9GpAxfeQ zjQM+i)7bX=ua6&@S$-H*^#6%VgvOoB?-Y|wUG+BYzF>mtV_lR0rMUxS+lEb=n<)9d z8=2(#RLFlq@G3CE6|X+S50W#sufDi7S4$@ac$juwFd2VCS<8u8JEyofB%;2B*lC}n zuP7&uVP1Cr?nCK98X-pi2t>#1^Zp%#To+R(@6k`Kmzv_W&A5?=n;zu}$imm|$oQU? zP4z}8$$fIq3(Q>n#%95HztCo)J9(pQ=E-|n%J`2hEqRXAup={xRC@B;Cz(FYnX@n5c5cMA#(+;M($6tFmOZM6Au}`p ze;(B2%;A^SCg5Sfp}M`|mateiy`mSNcI@n?JXZlz`?AXy+}okF1lSK&LlMxOMEnHb z(5wKDq(PN`Cd1fX=&Wgwh+nt11Cv&G_jW=0z*w<-$s6G&;So$1%OW};j8DIXCHmIr zHD)m?oXvOO#m$I~D3=D8viXJwb_pYvgvXz}IfM&$=JU5Rf%8N8+I8f3=#GWAy27Xa zw;v>-2)kLRl1jahWA$3x#tLIm8rp&7!N^Y@jI4(`|ZuEhN%)X7c)XL)6VhpbN2b&MX=!QjURlJ?*xfK{EEDWtCe8s zA{Ly> z2{C5ai=iNQEoRt?)Jp%TzdKu$NopD>Q_ZOG;hp0(>#mjxpDYUSnadtjEf}{CA#2&i zirm}rHLCp@AN%BmEkDbSQF%1QtNL+gDVf-0FBj98>?=ej;T zRd+p;cg2`gC#}NFexl$){EBPN0|L%|w!NZ6SB0WQU?|46ySFvD&15v3AH7ubbzV+V z^DSKsr6};MAE#$HfTd{T9x(ADij)=`V2NWZS-ms-ct8WJgyv{OQG4@ROj=q=g}m@Y zAVWdbn%TYY%!Mrx81pKdil%2Ly~@*G{9grpe|WDXL16v+@E1Bw(_u{v_zHNXlYVnM&d`jzO80&KweG6U&OQ`DX6oxv1WUqAS=>zV3-xe3 z(@8AUmb0JiY=1kYIo>=uw1cg%$t+JIz5?@$!nAU^u~;k&EQdm?N-1VZ3Nedw@J?6f zT!Ew_9zW=_B{0vRTAOtJPDpwIgiSSnZ5qhZaTY_2mb=zpO;t*dbcJA{*0uJ=Z$iP0 z)_9!4)C=~mYua&7c68e>c_7^g2W;gy(;>gpp!bcW)_+hyYu*306ZdV@(N#rg#gzZ; z>6gW_%8NZp4+@*j><(!QphMB zOObj_dw2I6e^`@b)0EQdTvePVr_DDu{+JNSF5P*GRFlNiaTo2SZBIm;Ta$_kBO3#= z*74L}KXmHNp?X$PeHB>|C@N)X76f{kDm zO4#;qdGh~oO8I|4e}ORH^xPC31hSx|t78Aoc@L9yBi+%R2?80`cVSurR=rJGh0FCI zoLd&e2CD=tb3-8E$ex=gUg=UpwBBxp99=8%t4XEpfWttNF>z!31MvU{^hqWw+<{xy zWJ%#%W{rayA*x%#a`J2iW9h#2!jpHqp`6(lbtg+G+7T0-oEYxFlcL=ee}Q4KPm-ZK z9G|e!b~Hl1uc2WZRMB2)KV9vaFx=7Th~jl#)X<>@waqFl!%Ks;th>ucTV!^N(btcx z|2hTF(O%JXO9v#PoI|{R^B5MY2cU@}V-}H^$+oucH-bBziwYC$O>H-=_STK7j}kV? zG12o`DHHUM{y`2#mZXtkR#&UqbC;Lg9C7v_(G&;*mP`G=s~BZM#njJjE4uqezgZr`E>)ub2tw7Ulo@e z)8n)p3C(|fQ-2M3n?FSS_iMePy;Ao?hipY)xr5RuQ_jW8lx(d@gZ$L;_eMXc(JlO= zyo1iofZ|orRSFbW(48QkERwV@>*poB7`H+uh8|tP?mGVn5VFp8c&r7r7#s zj^C(d5J6~XSi~$Ua9AItq^|4gs~`?nq+VxOsr#+=>0_&w3V}+SketQg1ADG2`}^57 zLbzzt&6;oPx-Cq=;dnPW+W6M}lYM^dZ?i#2WVs+?+V$fuNxahjwl7agtUQ*t#JW9) z`9(69v6*7L$jfq*69yK9xRe#=JXe{BSowpEqV#0i0`%+0&TdGxOU|oFYJb~)((VxI zEz%coTskrH%9fhD?FJ}ELz8LhkaVRV!_;Fenh_tMHDOcDbjTP!E1_h6)<*T{4+W82;T-R`gO|KWy@e=Gp_*z;`Vc)Fh+5 zWf833>Cxf_X-FjkWGmTt+5&12IfWjv5|nc+6N4a-wWz0OAeSC;Tv7D<-bX3OPf(8Y z{r^$xzx=zv31n#N;qLgwpx~_Y;)7-_sWdQy>3ECokm)A|kWb+{Dr6EAHvVUi(Mp2P zU^K*Yvc9|Ly3EIN&t*sz{f>deW~rqqA- z#>jatFhyKnTJ$48hVrWX;o5B5B~n_NJpU|K+B`rut*!L<^kTXvrx=2*MM|r_>r$Ir zDcug37~FQQYwdDEX@+hCM)bO<*h@vh_&FC1n54rg-PdJx%0 z{2h6X?MLbUWS0*s@@01{p2=h4k3gtAYj!AvuO%^bh08+&c<=x2e>DCF^&`RV%=a|A UQJoA288Jlrrh!I<+WqJM2fpg+ng9R* literal 0 HcmV?d00001 diff --git a/mods/psionics/psionics.dm b/mods/psionics/psionics.dm new file mode 100644 index 0000000000000..c610b4702d28a --- /dev/null +++ b/mods/psionics/psionics.dm @@ -0,0 +1,4 @@ +/singleton/modpack/psionics + name = "Писоника" + desc = "Добавляет писонику с Final Destination" + author = "Твой никнейм" diff --git a/mods/psionics/psionics.dme b/mods/psionics/psionics.dme new file mode 100644 index 0000000000000..d6c889323a213 --- /dev/null +++ b/mods/psionics/psionics.dme @@ -0,0 +1,73 @@ +#ifndef MODPACK_PSIONICS +#define MODPACK_PSIONICS + +#include "psionics.dm" + + +#include "code/misc/psi.dm" +#include "code/misc/decoyobj.dm" +#include "code/misc/mindcontrol.dm" +#include "code/misc/defines.dm" +#include "code/complexus/complexus_helpers.dm" +#include "code/complexus/complexus_latency.dm" +#include "code/complexus/complexus_power_cache.dm" +#include "code/complexus/complexus_process.dm" +#include "code/complexus/complexus_topic.dm" +#include "code/complexus/complexus.dm" +#include "code/equipment/cerebro_enhancers.dm" +#include "code/equipment/foundation_implanter.dm" +#include "code/equipment/foundation_weapon.dm" +#include "code/equipment/implant.dm" +#include "code/equipment/null_ammo.dm" +#include "code/equipment/psimeter.dm" +#include "code/equipment/psimonitor.dm" +#include "code/equipment/psipower_blade.dm" +#include "code/equipment/psipower_bow.dm" +#include "code/equipment/psipower_cryokinesis.dm" +#include "code/equipment/psipower_electrokinesis.dm" +#include "code/equipment/psipower_engineering.dm" +#include "code/equipment/psipower_gun.dm" +#include "code/equipment/psipower_medical.dm" +#include "code/equipment/psipower_orbs.dm" +#include "code/equipment/psipower_tinker.dm" +#include "code/equipment/psipower_tk.dm" +#include "code/equipment/psipower.dm" +#include "code/events/_psi.dm" +#include "code/events/mini_spasm.dm" +#include "code/events/psi_balm.dm" +#include "code/events/psi_wail.dm" +#include "code/faculties/_faculty.dm" +#include "code/faculties/_power.dm" +#include "code/faculties/coercion.dm" +#include "code/faculties/consciousness.dm" +#include "code/faculties/energistics.dm" +#include "code/faculties/manifestation.dm" +#include "code/faculties/metakinesis.dm" +#include "code/faculties/psychokinesis.dm" +#include "code/faculties/redaction.dm" +#include "code/interface/ui_hub.dm" +#include "code/interface/ui_toggles.dm" +#include "code/interface/ui.dm" +#include "code/mob/mob_assay.dm" +#include "code/mob/mob_interactions.dm" +#include "code/mob/mob.dm" +#include "code/null/_null.dm" +#include "code/null/~null.dm" +#include "code/null/chemistry.dm" +#include "code/null/flooring.dm" +#include "code/null/material_sheet.dm" +#include "code/null/material_weapon.dm" +#include "code/null/material.dm" +#include "code/null/turf_floor.dm" +#include "code/null/turf_wall.dm" + +#endif +// BEGIN_INTERNALS +// END_INTERNALS +// BEGIN_FILE_DIR +#define FILE_DIR . +// END_FILE_DIR +// BEGIN_PREFERENCES +// END_PREFERENCES +// BEGIN_INCLUDE +// END_INCLUDE From df864ee0534811b098f1f3264756c1419f1cc224 Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Tue, 5 Nov 2024 15:10:09 +0100 Subject: [PATCH 02/60] pisonika2 --- baystation12.dme | 6 +- code/__defines/psi.dm | 22 ++- code/modules/admin/admin.dm | 2 +- .../preference_setup/preference_setup.dm | 5 + .../preference_setup/psionics/01_basic.dm | 56 +++++++ .../preference_setup/psionics/02_abilities.dm | 146 ++++++++++++++++++ mods/psionics/code/misc/defines.dm | 20 --- mods/psionics/code/mob/mob_assay.dm | 2 +- mods/psionics/psionics.dme | 1 - 9 files changed, 231 insertions(+), 29 deletions(-) create mode 100644 code/modules/client/preference_setup/psionics/01_basic.dm create mode 100644 code/modules/client/preference_setup/psionics/02_abilities.dm delete mode 100644 mods/psionics/code/misc/defines.dm diff --git a/baystation12.dme b/baystation12.dme index 920a4a2dcfc52..276fc4a6390bd 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -1544,6 +1544,8 @@ #include "code\modules\client\ui_style.dm" #include "code\modules\client\preference_setup\_defines.dm" #include "code\modules\client\preference_setup\preference_setup.dm" +#include "code\modules\client\preference_setup\psionics\02_abilities.dm" +#include "code\modules\client\preference_setup\psionics\01_basic.dm" #include "code\modules\client\preference_setup\antagonism\01_candidacy.dm" #include "code\modules\client\preference_setup\antagonism\02_setup.dm" #include "code\modules\client\preference_setup\background\01_culture.dm" @@ -3374,9 +3376,5 @@ #include "mods\_master_files\maps\mapsystem\maps.dm" #include "mods\_master_files\maps\sierra\sierra_ranks.dm" #include "mods\_master_files\maps\sierra\items\rigs.dm" -#include "mods\psionics\code\misc\decoyobj.dm" -#include "mods\psionics\code\misc\defines.dm" -#include "mods\psionics\code\misc\mindcontrol.dm" -#include "mods\psionics\code\misc\psi.dm" #include "~code\global_init.dm" // END_INCLUDE diff --git a/code/__defines/psi.dm b/code/__defines/psi.dm index c03bbe7d3d357..ee6c8217437dc 100644 --- a/code/__defines/psi.dm +++ b/code/__defines/psi.dm @@ -1,17 +1,35 @@ + #define PSI_IMPLANT_AUTOMATIC "Security Level Derived" #define PSI_IMPLANT_SHOCK "Issue Neural Shock" #define PSI_IMPLANT_WARN "Issue Reprimand" #define PSI_IMPLANT_LOG "Log Incident" #define PSI_IMPLANT_DISABLED "Disabled" - +/* #define PSI_COERCION "coercion" #define PSI_PSYCHOKINESIS "psychokinesis" #define PSI_REDACTION "redaction" #define PSI_ENERGISTICS "energistics" +*/ + +#define PSI_COERCION "catastellia" +#define PSI_CONSCIOUSNESS "allaxetia" +#define PSI_PSYCHOKINESIS "teleplexy" +#define PSI_MANIFESTATION "demiurgy" +#define PSI_METAKINESIS "metaplexy" +#define PSI_ENERGISTICS "hyloforia" +#define PSI_REDACTION "ephanoferia" +#define PSI_RANK_BLUNT 0 +#define PSI_RANK_LATENT 1 +#define PSI_RANK_APPRENTICE 2 +#define PSI_RANK_OPERANT 3 +#define PSI_RANK_MASTER 4 +#define PSI_RANK_GRANDMASTER 5 +/* #define PSI_RANK_BLUNT 0 #define PSI_RANK_LATENT 1 #define PSI_RANK_OPERANT 2 #define PSI_RANK_MASTER 3 #define PSI_RANK_GRANDMASTER 4 -#define PSI_RANK_PARAMOUNT 5 \ No newline at end of file +#define PSI_RANK_PARAMOUNT 5 +*/ diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index 8de76e0f1ef17..ff72482ccc583 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -144,7 +144,7 @@ var/global/floorIsLava = 0 body += "Remove psionics.

" body += "Trigger latencies.
" body += "" - for(var/faculty in list(PSI_COERCION, PSI_PSYCHOKINESIS, PSI_ENERGISTICS, PSI_REDACTION)) + for(var/faculty in list(PSI_COERCION, PSI_CONSCIOUSNESS, PSI_PSYCHOKINESIS, PSI_MANIFESTATION, PSI_ENERGISTICS, PSI_REDACTION, PSI_METAKINESIS)) var/singleton/psionic_faculty/faculty_singleton = SSpsi.get_faculty(faculty) var/faculty_rank = psyker.psi ? psyker.psi.get_rank(faculty) : 0 body += "" diff --git a/code/modules/client/preference_setup/preference_setup.dm b/code/modules/client/preference_setup/preference_setup.dm index 09344a28fcf70..1803a2b7cf894 100644 --- a/code/modules/client/preference_setup/preference_setup.dm +++ b/code/modules/client/preference_setup/preference_setup.dm @@ -30,6 +30,11 @@ var/global/const/CHARACTER_PREFERENCE_INPUT_TITLE = "Character Preference" sort_order = 4 category_item_type = /datum/category_item/player_setup_item/antagonism +/datum/category_group/player_setup_category/psionics_preferences + name = "Psionics" + sort_order = 5 + category_item_type = /datum/category_item/player_setup_item/psionics + /datum/category_group/player_setup_category/loadout_preferences name = "Loadout" sort_order = 6 diff --git a/code/modules/client/preference_setup/psionics/01_basic.dm b/code/modules/client/preference_setup/psionics/01_basic.dm new file mode 100644 index 0000000000000..5b122bdf49741 --- /dev/null +++ b/code/modules/client/preference_setup/psionics/01_basic.dm @@ -0,0 +1,56 @@ +GLOBAL_LIST_INIT(psi_status2text, list("C", "B", "A", "S")) +GLOBAL_LIST_INIT(text2psi_status, list("C" = 1, "B" = 2, "A" = 3, "S" = 4)) + +/datum/preferences + var/psi_threat_level = 0 + var/psi_status = 4 + var/psi_openness = FALSE + +/datum/category_item/player_setup_item/psionics/basic + name = "Basic" + sort_order = 1 + +/datum/category_item/player_setup_item/psionics/basic/load_character(datum/pref_record_reader/R) + pref.psi_threat_level = R.read("psi_threat_level") + pref.psi_status = R.read("psi_status") + pref.psi_openness = R.read("psi_openness") + +/datum/category_item/player_setup_item/psionics/basic/save_character(datum/pref_record_writer/W) + W.write("psi_threat_level", pref.psi_threat_level) + W.write("psi_status", pref.psi_status) + W.write("psi_openness", pref.psi_openness) + +/datum/category_item/player_setup_item/psionics/basic/sanitize_character() + pref.psi_threat_level = clamp(pref.psi_threat_level, 0, 4) + pref.psi_status = clamp(pref.psi_status , 1, 4) + +/datum/category_item/player_setup_item/psionics/basic/content() + . = list() + . += "Threat level: [pref.psi_threat_level]
" + + if(pref.psi_threat_level) + . += "Psionic status: [GLOB.psi_status2text[pref.psi_status]]
" + . += "Openness: [pref.psi_openness ? "Yes" : "No"]
" + + . = jointext(.,null) + +/datum/category_item/player_setup_item/psionics/OnTopic(href, list/href_list, mob/user) + if(href_list["select_psi_threat_level"]) + pref.psi_threat_level = text2num(input("Select threat level", CHARACTER_PREFERENCE_INPUT_TITLE, pref.psi_threat_level) in list("0", "1", "2", "3", "4")) + pref.psi_threat_level = clamp(pref.psi_threat_level, 0, 4) + pref.sanitize_psi_abilities() + return TOPIC_REFRESH + + else if(href_list["select_psi_status"]) + var/selection = input("Select psionics status", CHARACTER_PREFERENCE_INPUT_TITLE, GLOB.psi_status2text[pref.psi_status]) in GLOB.text2psi_status + if(!(selection in GLOB.text2psi_status)) + return TOPIC_HANDLED + + pref.psi_status = GLOB.text2psi_status[selection] + return TOPIC_REFRESH + + else if(href_list["toggle_psi_openness"]) + pref.psi_openness = !pref.psi_openness + return TOPIC_REFRESH + + return ..() diff --git a/code/modules/client/preference_setup/psionics/02_abilities.dm b/code/modules/client/preference_setup/psionics/02_abilities.dm new file mode 100644 index 0000000000000..c65fad995f604 --- /dev/null +++ b/code/modules/client/preference_setup/psionics/02_abilities.dm @@ -0,0 +1,146 @@ +GLOBAL_LIST_INIT(psi_level2cost, list( + "Blunt" = 0, + "Latent" = 1, + "Apprentice" = 2, + "Operant" = 4, + "Master" = 6, + "Grandmaster" = 8 +)) + +GLOBAL_LIST_INIT(psi_faculty2color, list( + "Catastellia" = COLOR_SURGERY_BLUE, + "Allaxetia" = COLOR_SURGERY_BLUE, + "Hyloforia" = COLOR_MEDICAL_UNKNOWN_IMPLANT, + "Demiurgy" = COLOR_LIGHT_CYAN, + "Metaplexy" = COLOR_SEDONA, + "Teleplexy" = COLOR_LIGHT_CYAN, + "Ephanoferia" = MANIFEST_COLOR_SERVICE +)) + +GLOBAL_LIST_INIT(psi_threat_level2free_points, list(3, 4, 9, 14)) + +/datum/preferences + var/list/psi_abilities + +/datum/preferences/proc/sanitize_psi_abilities() + if(!psi_threat_level) + return + + while(TRUE) + for(var/faculty in psi_abilities) + if(calculate_free_points() >= 0) + return + + if(psi_abilities[faculty] > 1) + --psi_abilities[faculty] + + +/datum/preferences/proc/calculate_free_points() + . = GLOB.psi_threat_level2free_points[psi_threat_level] + + for(var/faculty in psi_abilities) + for(var/level in 1 to GLOB.psi_level2cost.len) + var/level_name = GLOB.psi_level2cost[level] + var/level_cost = GLOB.psi_level2cost[level_name] + + if(psi_abilities[faculty] == level) + . -= level_cost + +/datum/category_item/player_setup_item/psionics/abilities + name = "Abilities" + sort_order = 3 + + var/static/list/psi_faculties_names + +/datum/category_item/player_setup_item/psionics/abilities/load_character(datum/pref_record_reader/R) + pref.psi_abilities = R.read("psi_abilities") + +/datum/category_item/player_setup_item/psionics/abilities/save_character(datum/pref_record_writer/W) + W.write("psi_abilities", pref.psi_abilities) + +/datum/category_item/player_setup_item/psionics/abilities/sanitize_character() + if(pref.psi_abilities?.len) + return ..() + + if(!psi_faculties_names) + psi_faculties_names = list() + + var/list/faculties = GET_SINGLETON_SUBTYPE_MAP(/singleton/psionic_faculty) + for(var/ftype in faculties) + var/singleton/psionic_faculty/faculty = faculties[ftype] + psi_faculties_names += faculty.name + + pref.psi_abilities = list() + for(var/faculty in psi_faculties_names) + pref.psi_abilities[faculty] = 1 + + return ..() + + +/datum/category_item/player_setup_item/psionics/abilities/proc/can_select_level(faculty, level) + if(level <= 1) + return TRUE // safe measure + + return (pref.calculate_free_points() + GLOB.psi_level2cost[GLOB.psi_level2cost[pref.psi_abilities[faculty]]]) >= GLOB.psi_level2cost[GLOB.psi_level2cost[level]] + +/datum/category_item/player_setup_item/psionics/abilities/content() + if(!pref.psi_threat_level) + return ..() + + if(!pref.psi_abilities) + sanitize_character() + + . = list() + + . += "" + + . += "
" + + . += FONT_LARGE("Points remaining: [pref.calculate_free_points()]") + + . += "
[faculty_singleton.name]
" + + for(var/faculty in pref.psi_abilities) + . += "" + . += "" + + for(var/level_index in 1 to GLOB.psi_level2cost.len) + var/level_name = GLOB.psi_level2cost[level_index] + + if(pref.psi_abilities[faculty] == level_index) + . += "" + else if(can_select_level(faculty, level_index)) + . += "" + else + . += "" + + . += "" + + . += "
[faculty]:
[level_name]
[level_name]
" + + . += "" + + . = jointext(., null) + +/datum/category_item/player_setup_item/psionics/abilities/OnTopic(href, list/href_list, mob/user) + if(..()) + return TOPIC_HANDLED + + if(href_list["select"]) + var/level = text2num(href_list["select"]) + var/faculty = href_list["faculty"] + + if(!can_select_level(faculty, level)) + return TOPIC_HANDLED + + pref.psi_abilities[faculty] = level + + return TOPIC_REFRESH diff --git a/mods/psionics/code/misc/defines.dm b/mods/psionics/code/misc/defines.dm deleted file mode 100644 index b45d101a724e5..0000000000000 --- a/mods/psionics/code/misc/defines.dm +++ /dev/null @@ -1,20 +0,0 @@ -#define PSI_IMPLANT_AUTOMATIC "Security Level Derived" -#define PSI_IMPLANT_SHOCK "Issue Neural Shock" -#define PSI_IMPLANT_WARN "Issue Reprimand" -#define PSI_IMPLANT_LOG "Log Incident" -#define PSI_IMPLANT_DISABLED "Disabled" - -#define PSI_COERCION "catastellia" -#define PSI_CONSCIOUSNESS "allaxetia" -#define PSI_PSYCHOKINESIS "teleplexy" -#define PSI_MANIFESTATION "demiurgy" -#define PSI_METAKINESIS "metaplexy" -#define PSI_ENERGISTICS "hyloforia" -#define PSI_REDACTION "ephanoferia" - -#define PSI_RANK_BLUNT 0 -#define PSI_RANK_LATENT 1 -#define PSI_RANK_APPRENTICE 2 -#define PSI_RANK_OPERANT 3 -#define PSI_RANK_MASTER 4 -#define PSI_RANK_GRANDMASTER 5 diff --git a/mods/psionics/code/mob/mob_assay.dm b/mods/psionics/code/mob/mob_assay.dm index a841209dd9063..e7c5c1f015313 100644 --- a/mods/psionics/code/mob/mob_assay.dm +++ b/mods/psionics/code/mob/mob_assay.dm @@ -64,7 +64,7 @@ for(var/faculty_id in psi.ranks) var/singleton/psionic_faculty/faculty = SSpsi.get_faculty(faculty_id) - if(psi.ranks[faculty.id] > 0) + if(psi.ranks[faculty_id] > 0) dat += "[use_He_is] assayed at the rank of [GLOB.psychic_ranks_to_strings[psi.ranks[faculty.id]]] for the [faculty.name] faculty.
" else dat += "[use_He_has] no notable power within the [faculty.name] faculty.
" diff --git a/mods/psionics/psionics.dme b/mods/psionics/psionics.dme index d6c889323a213..3eeb24a013853 100644 --- a/mods/psionics/psionics.dme +++ b/mods/psionics/psionics.dme @@ -7,7 +7,6 @@ #include "code/misc/psi.dm" #include "code/misc/decoyobj.dm" #include "code/misc/mindcontrol.dm" -#include "code/misc/defines.dm" #include "code/complexus/complexus_helpers.dm" #include "code/complexus/complexus_latency.dm" #include "code/complexus/complexus_power_cache.dm" From e4999e1b1a5861436f8309e3312bbfffba0dbdd2 Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Wed, 6 Nov 2024 15:12:36 +0100 Subject: [PATCH 03/60] =?UTF-8?q?=D0=9F=D0=B8=D1=81=D0=BE=D0=BD=D0=B8?= =?UTF-8?q?=D0=BA=D0=B0=203?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Пока что, не работает. Когда закончу со всем необходимым - постараюсь все упаковать в мод --- code/game/jobs/job/job.dm | 49 +++++++++++++++++++++++++++++++++++++-- 1 file changed, 47 insertions(+), 2 deletions(-) diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index 09ef39dbb7262..9eb01ebf11bcf 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -57,6 +57,9 @@ var/faction = MOB_FACTION_CREW + var/global/psi_allowed_species = list(/datum/species/human,/datum/species/human/vatgrown,/datum/species/human/tritonian,/datum/species/human/gravworlder,/datum/species/human/spacer) + + /datum/job/New() if(prob(100-availablity_chance)) //Close positions, blah blah. @@ -71,6 +74,48 @@ /datum/job/dd_SortValue() return title + +/datum/job/proc/give_psi(mob/living/carbon/human/H) + + if(!(all_species[H.client.prefs.species].type in psi_allowed_species)) + return + + if(psi_latency_chance && prob(psi_latency_chance)) + H.set_psi_rank(pick(PSI_COERCION, PSI_REDACTION, PSI_ENERGISTICS, PSI_PSYCHOKINESIS, PSI_CONSCIOUSNESS, PSI_MANIFESTATION, PSI_METAKINESIS), 1, defer_update = TRUE) + + var/list/psi_abilities_by_name = H.client.prefs.psi_abilities + + if(!H.client.prefs.psi_threat_level) + return + + LAZYINITLIST(psi_faculties) + for(var/faculty_name in psi_abilities_by_name) + var/singleton/psionic_faculty/faculty = SSpsi.faculties_by_name[faculty_name] + var/faculty_id = faculty.id + psi_faculties |= list("[faculty_id]" = psi_abilities_by_name[faculty_name] - 1) + + for(var/psi in psi_faculties) + if(psi_faculties[psi] > 0) + H.set_psi_rank(psi, psi_faculties[psi], take_larger = TRUE, defer_update = TRUE) + + H.psi.update() + + give_psionic_implant_on_join ||= (H.client.prefs.psi_openness && H.client.prefs.psi_status < 4) + + if(!give_psionic_implant_on_join) + return + + var/obj/item/implant/psi_control/imp = new + imp.implanted(H) + imp.forceMove(H) + imp.imp_in = H + imp.implanted = TRUE + var/obj/item/organ/external/affected = H.get_organ(BP_HEAD) + if(affected) + affected.implants += imp + imp.part = affected + to_chat(H, SPAN_DANGER("As a registered psionic, you are fitted with a psi-dampening control implant. Using psi-power while the implant is active will result in neural shocks and your violation being reported.")) + /datum/job/proc/equip(mob/living/carbon/human/H, alt_title, datum/mil_branch/branch, datum/mil_rank/grade) if (required_language) @@ -80,7 +125,7 @@ if (!length(H.languages)) H.add_language(LANGUAGE_SPACER) H.set_default_language(all_languages[LANGUAGE_SPACER]) - +/* if(psi_latency_chance && prob(psi_latency_chance)) H.set_psi_rank(pick(PSI_COERCION, PSI_REDACTION, PSI_ENERGISTICS, PSI_PSYCHOKINESIS), 1, defer_update = TRUE) if(islist(psi_faculties)) @@ -99,7 +144,7 @@ affected.implants += imp imp.part = affected to_chat(H, SPAN_DANGER("As a registered psionic, you are fitted with a psi-dampening control implant. Using psi-power while the implant is active will result in neural shocks and your violation being reported.")) - +*/ var/singleton/hierarchy/outfit/outfit = get_outfit(H, alt_title, branch, grade) if(outfit) . = outfit.equip(H, title, alt_title) if(faction) From 9a40388309879cfb26d1395f9f1a76d4b1f5ab61 Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Sun, 10 Nov 2024 12:36:18 +0100 Subject: [PATCH 04/60] =?UTF-8?q?=D0=9F=D0=B8=D1=81=D0=BE=D0=BD=D0=B8?= =?UTF-8?q?=D0=BA=D0=B0=204=3F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- baystation12.dme | 4 ++-- code/game/jobs/job/job.dm | 2 ++ mods/psionics/icons/psi_fd/lefthand.dmi | Bin 15096 -> 12604 bytes mods/psionics/icons/psi_fd/righthand.dmi | Bin 13217 -> 13549 bytes mods/psionics/psionics.dm | 2 +- 5 files changed, 5 insertions(+), 3 deletions(-) diff --git a/baystation12.dme b/baystation12.dme index 276fc4a6390bd..0be07547fe584 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -1544,8 +1544,6 @@ #include "code\modules\client\ui_style.dm" #include "code\modules\client\preference_setup\_defines.dm" #include "code\modules\client\preference_setup\preference_setup.dm" -#include "code\modules\client\preference_setup\psionics\02_abilities.dm" -#include "code\modules\client\preference_setup\psionics\01_basic.dm" #include "code\modules\client\preference_setup\antagonism\01_candidacy.dm" #include "code\modules\client\preference_setup\antagonism\02_setup.dm" #include "code\modules\client\preference_setup\background\01_culture.dm" @@ -1585,6 +1583,8 @@ #include "code\modules\client\preference_setup\loadout\lists\xenowear.dm" #include "code\modules\client\preference_setup\occupation\occupation.dm" #include "code\modules\client\preference_setup\occupation\skill_selection.dm" +#include "code\modules\client\preference_setup\psionics\01_basic.dm" +#include "code\modules\client\preference_setup\psionics\02_abilities.dm" #include "code\modules\clothing\_clothing.dm" #include "code\modules\clothing\_clothing_flags.dm" #include "code\modules\clothing\buttons.dm" diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index 9eb01ebf11bcf..406f09a713b01 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -125,6 +125,8 @@ if (!length(H.languages)) H.add_language(LANGUAGE_SPACER) H.set_default_language(all_languages[LANGUAGE_SPACER]) + + give_psi(H) /* if(psi_latency_chance && prob(psi_latency_chance)) H.set_psi_rank(pick(PSI_COERCION, PSI_REDACTION, PSI_ENERGISTICS, PSI_PSYCHOKINESIS), 1, defer_update = TRUE) diff --git a/mods/psionics/icons/psi_fd/lefthand.dmi b/mods/psionics/icons/psi_fd/lefthand.dmi index 6e6c4d0c408931bc13aa9e7ff0b0034d30b4fa11..dba031cd3a0d21a63e9448bae9bbcd2c081369cb 100644 GIT binary patch literal 12604 zcmb_?2UwHMpKU0Lh;$VZFmwRG>Dpf#0dIt*#2-15C z9}p=aAP@+I1n!$}|9kiD-o5{O_dfeP#xRqadFP!u=lsr;XnkFE+RHaDgFql!O$}8; z5Qr=v_=H`$2;`tM8$E%qrC{TyeyUEs4nD44ey*M#Akd5K*d!gAZ+EY}8OBs!I*@TZ zpy=xuR3dj|wPs)Bo<-Sw zZ!31TJzj&3Vk_i_%E62ZBXpH_F|^4%Pj@d1HWr7H4;VKWMTGTmfk2!fO;si17ulE` z#50cR+4VecM|W~(wD9eo6zJ;*{aLMM+vpC-ZD z-nU!F=v?xt)qnBJ@||y+7+wER@R)qVDUvl#F zx|}D(J-RtOm;+uP^c@<+9dNo^|H|I=9TNA=1=2a*l+@(F1k^fHG*JNGG1N>9z}NMJ zFyQ~sVU(00P}l`tP9Pz|Nk#?&*^*IT0unSDir4k!6k5{esX!q8*h%U>Y@GRP#N_5|#Rn3wy zOdc!=@TEkpzV=&sd&Ep9y&&JR*H#u5rLpw%&uDRcHxi7Xlw=QEFu2B>lpSxP6uy*8 z;9wl>#tDgi#EInbdh8w~KP-4RZ(-(qdgwXqnEQIMF6vXmDn9UVY|>x;4BzB(_kj9d zmYV0Xe*{irorJ}~Qx{|`?N+<69GfF7S`_F_ej;ZVAY)-r9 zXEt~<0?_m1-spl0a{M9d@)4`JleR@iHQh1-td-`7Vu*^zzTV-8ieeBCM z3O6@zUA1wU=}%i6E!yAbBIm)$X|5){d2N;cPsiSTVG*#a5&7Al-pj1*B;aUqn!X%Q zJN??Y8~Lhn%1-m9{ch_aj2HY=l}45|VkfCTqQ%ov$Lft8N5bthFSPpMJsqa|#Xw67 zZ)VW)8401b-oL8F8&TZ8bHM_Yg|7Y5!yE;oTA8o*m!@h0y@tbp5}KbbQLCq9OqmAl zGWc68@EX5rbPfbvjF`21yusjaIl*iEzH#W+cMUQSKHUl;FBP~h9dCwRFNDY;}`P(oP$1niF?Aw z@W(?LId0auIc~r3#9yh$JY-}E;x=Vvm{9l4!IRxFAuZ;dFvJ z*w-)d>`$Q(M^=|wbq4}k89@;^dhZ}AreSX#&Mqk;Talgj(PT((f^ciE6Av%VEXPe} z+1Kj2-h%GJUv<)Ad|!kH9))Qzh@7 zv1P5qv+64)6yjEqm5;#nv4pIC9wIOMxd-Zm;`V@);$Kjg%RcqtgrJZ+8DUlhg~CI$uX)_FH*OKzFCqy1b7REV7s) zd(GfLA78Og?y|F9t955qJGPS$59B$>&?r97XqZ)6kT7$V_>osuR*>=NFKOLiT`0;w zdWLa+q@Ta6Zp?=kn)l>f94$jL%P3$Sp6JvUrya0WODJsEPHQP>RGHE=48Ye$$Ul;A zn6h&*_hehmGdSRt9MT=FgxZ%fm(fwn*c-{3=Kvk-ynx}6y(L|qlB4;axKOxQ*wB_E z9GFw^G&S0wG1}cNF!Gn2Q9a*ThQyOhzB{}Hl9N&Ve>|)NFQVQw$zHv zqtyAIaRY0t@zc(~JsihQ26Qck?mJp$c=3em?9m6Rj`s7(Ucl*%`3LR7*{5B#cS091 zNsT;Hi_z%MB1!S}G3ckitC}9*q9mccTxnMB%}1+M2vczeT#j=|eIj(P%WNWvH5{=0kYsq|8n=I)XJyvpzM7M|Y ze)Tr2vMg}ey1LMxpn^oxG|}I+F`D$AsU`ey%?|9kkU_f_NQpvw>+a9*Fw@n*%)U~B zK_8FkX_C9@k_EKg-I!tfV_z|0&$TzOI)BJO2^=MX*pj3+R#N`1+>-^#98D z|2^h{K&Zi?24@`+8pqy2D|AP|{IdTQ#oKkhm9x3fMY+ZlT2SAuV)6XhmZ@!$5CEUr zpFU;-o$Yvs?PqWNfa^g7R8pHXsk2c|LHTYeMm;wK^ARa&A zi;mw?IM#$8Hc;j1P}S{_MQ!=`|M|VKVrHD`Vnq1*^Q6o3^tuxYC4FX5MYegPOzn<1 z+O}VJbWvKqty&czuufSV#1PFP?Xvx{?7n&T?SWUx*Y?aLZKEvXZtsE56cC0MCD6V2 zm@&$Uf2hZz(7-#R&aDh})mxn0H*d=PiLdj$Gb-z&+b-Rzu~@3hkeJE5(txWTtvh`( zLCQ94yVTUEWGaOkjRsj(Z&@J_wKSN5unY=Gw9#?v5)({YE%YGLjA;J*jcT|!xkS_ z9S;vKHa`*%T-`r@t=Wy7yk(vid4RlWJnGTC64-kU9bPXDh%(V zP*>ap$+d++0TIpq>4Uf5jzW~)EQoU;px0Hese{EuYjKuH612Z@^$jejwGo= zH79Nluv-J>1Jx>31C2-L@7Ih&SH?Cqj8Mcn3pVb(CSBIa=^@FDOk8lO*%!A#?>!R z<^y5H(+UjVkB!_oQGbGs1eK5xbnV&-CqGn3-N8msh#3K@zZXFvEHELd zr#qt8xu^ddbCabTyeIaY&=usfe}Z^nOCyH|OYoc-5RK)CE9u--+9w{Dqz_ZjRpz1> z`ur_g)MUj29WXdv4A(${k!MRg=YWF606c@|xh&^d6e2Yj?t3c$VYG45O=h^%(aZSiob%Ck;O~=$1^Gx? zDNEt!7w-!|M-*1#kJXoy)GrP`r(EeASB<;j=cZQH#lBaRBQ$Wk>9+q{3k2}q>IBAf z!TCDb>?y|toy>w(diHBbt<5wV2~4X+(&*6ks>f&7tl<4UMfkxsM zM89&dc7?M5_V)<7c>Zv+Q||T=>f#>Nmr$RKu)kf$NXG1i75Xp^K|MwO>`(u28$1Pm zTKXOYnFb(kZu>u^9bc)w+^ukvzZ*QGQbhSccDnp=3#-y$pEw-={d=<0Oe7j-6~3K- zZBa5Z6075{pKHz4LPE}OlIDl>qi}=pO5gD{5^}8+u)IquyWhHxD>fJy&!2hy0Kcm1 zl5lWzFIc!>W=Y&l37Fry5v1m{GUn>?Yy-rx9UOIrITmvT(xm`Hl+W-hisyI#$Lv(qCLBFG zMO2DUKs`MVV^+vU{6#LYdhfp9zdkB!P3czlO{u-+%R4iZ@7enAR9m_ba} zt;yG(H8q@<^6Eu>%z4~^cuMkW!0>UY5ATb&{OT?qkL%Bgx4Ouv8WI&1+~}XDZISAR zl(U=XI{W>l=8Cf+;d|5=YsL2GmLOQP>cMwQ>>lcRPOx2Dl7p%Lsg$x(5YX5tV0^aZ z{lhIz5l^h#R!Jidkexy9Tq8Ovsx!!kJ5`M21B=y7&$>={3LFlmH*BX>{M_MA=6?ww zUqlTN2x)5ZaF=z9m0zPh4Nf0L9xx(&1%3X0_HOmBsK~%Tqo8Si{9n%ZtLVH(5<~0j zU6!bC)pcw^Zc%C3vaiW{8Ogy4V#T;SEfsPNC|!i@{KAj3s8Cu#@EfTz%^tRlTU2D_W51ZBBwbptV`^LW*7ftEoV=>yg-f(6fs|fV& z)5ac4{e2q!d(0!!Z%3TW@!Pr7d^xnm0m`{+{C5nRW#e*q3d@N1H`ng}0z@h+8Yn&{ zUB3Mes;Opvn$eh(B3-beY6dNrp#uafizHaT0FG_FLunvWdEXZoLz$i8(xsFijFz@% zMnjV*FDYe9vS&&A%;^YP>0}v2fG!_y!NUE1~2>!q(|#>)~o@B(TVe ziuHOH&$D6gQYd{#!MC+Fb!~lQxD;MCyM24I*FveEzbe3%d=8RjuwRg0k7CC!n-&n0 zcUWGPAN7%EgOEfQCR_re~a4RCe;MGGCtX`cBxe`?aYzY9W1-!t7vd%JeO$&q?&e<@ELH_ zF_@Q3T$)oeSr}WkxtxF=H@8ZE-N}mQ%sb}GtA8~VmJ9a?SsC&}K-C@*7mgflSo^-W zwQa5rRF1p~-g=FR8>0O4XUF5RW%%0_hwCEPl)ye&zcsv{DU0)myc~I4+N}?HmGA`z z!5Bm*^~SIkFTCB2*~B_eZf|Q+Bf77{IwgvfLkxud zDQt>pq~h>Q(fd_8Sgh}S8Bn34(*mr35N-FBi#FyZ{L}>=4m_AN!qQWHe?NKqGT!-@ z2P&4@Ag=8T>&UdJS(kjri8SzFlf9*3aIBvlu_I4m>k%ov`D=JOg_)`ad*m?9WOWr> z)JU-2$@9BCY;6Pduh|tPP_AIUd}M$ZprTulzrMNRK8i&_n`Ba*@;y7@3?vXt)znn0 z$sLh1kK}n)5<-@j3$dt5TyG{BEC@~X1Cr>U(F5bd(9-Bh1P)#*In^1`HQwfNUQalS zWyP0DI&U0Ws#Z6Z4KM9tle9a9PO!h%q4P?3oSx_4$SyM7U?(E2;Es~wc~unv7hcca z*YFx_M`zJ2Qj&~_j%?a+%j!RwruQ7(b1>T+&&o5(W*sS&R485Tt*R0hp!+q6L1~Hk6nocRqHtcgE1$x zztLZ6aD`sHN+nIBM+E3Sf%bhlGAU2lEJiOzLbIrTuifT70*%E zd@1q>__x4*D_3_6y*E~`YKv~VWO|E1UE!0JxxlRG5(X%1_~|HSyhJHjKyJ^ljAQyq?2iZ3 z-rjBvm$J#f3@6ZzLDLX+_KhVOi6fIP2a};!YkMpKkEr!abxb(o`9F3uXe3Pp*h<^VaN!Kx^pgYTNn#d1byTjjxW013eQDfB!-v= zO$;rfwS)s({B;CaIT;yKmu-W!aX5y2&s2FA>koOc@R@rl*cabvHpA{OG+8vZJ-&)R z88ZuNyN5kFM1>SBW3PKb1sgq_|0*XG*=YeAa(Sne2T_V1o4kf^*J~dt2T4XyXB-nrHHhF?KsfjowMhIxDN|oH18&gwF2lr z)%f;7&K?f0!@+h&nzR%?9Sp48cm=d(qbWz>(^Zw?uvxZ&H`sK4P+FHwrl^q9c}n|U zsn_?egdWsOp}E{fq z375m)>sI8%o!XU+G^s;!H(b@SHDzr#4z@y0Z+5v2VwhfPUsrNUF9P?M1sLg9=RXH( zWZpN)Q5~7C0Aq220>KIWy4^6^`yWL|)+gy}0|r{`DA>Brei{?gb=quHuMgHpm{Ssq zIP%LKFTsd-Ow}D#xy}WSTx2FJ;UbBwpBB9*JOVIBT>UlKui@HhJJ)_UV?Jx(TX$9> zI;HV;(@e$m`!}@23&T4z@P<4?ivf1TI0!4o)U_GQqp>)jVDp!V3)kc6NYr?^hecwZ zx;c|!%fcn1`(eajNA^1Lk+#_8!~9Q&4sz67+um2r9|-`n%h}au*2>IyCv~81-#~sp z!^cN3?R}IF z0QYD)JiX$BV%gVMQxKpEmG!(@(EMHds`UvJAgJ*6G4ffA1cE3KH?`bx;JpE8y!wtp9HWcSi9iL2wAeGe$Sz4^q-vSJf~F6Id^_j##?Fp;CQJIUJ)JQ|Ak zfFa)oP{=ZXP6OpbuD~SWIV+^nI0^5Kbt8q#>ZzV$zT0lJ3r2Ud24y?wGj|38dsP%5 zcmtwO)=sg;#sQjYb}HDq`CO;AI`(=mPD4E35cY`=;U}QVd>FCZiDJeRnif*G94Za# zW|^^pi`5sy08NX6*n4|@;o|mbZMEOca|AQL*gRsXNu>iuIKNGUp}_z?^e*F0UGwugI<@61@VeP;g;Af6elp3>J5g4j6vo? zLyi0v?C0MvXVA4xK6KB4k!-`Q8+J|^C1SYvt-|eXV~z!&1M#b+6CO=DajGP$NU14{ zpl7Cx-v)CCV&gF~m;ix}HlFCLux2dk>&;XU(b-8z7P4`$*}EtHQ^YcGod$M`_)5MB z^B&rH@&#((qU1ImwpO^k=(bH_hLTp`{^obM8wMWV4G~Fm`R?&{Z7S__5pb}oQuQt$ zs@ola56{oa>~arkK&jz33vBYj;qr%HgU`+mtw$x?(>^@Nrv+|3Fwm0j0xS&M@566N zY#IC0zOh8MA!a^4+BP>CX);5)DHT3fK(_PvZ_HQcjRpSI)D67Jx)X2+;?@SWzjni= z!}_9)(;w+W;;pC~YkB2(Wh6VyRWlWD%&!8B+4lm=_muB9QWi*H{|T+yZ&WX>aJ%g; z{mTz_GQ?W2JWXf?U#P~{{2@^q#9L?#X3m41TGqGQMVw=14eByN99aXe7OW_9rorFS zEWn*AS_SC@Vwkc+q+ zqUHxkWH^8B(5vPFQ4C24d*mmP`9ek*l)9f)Rz}AQ4pAic8J&F=^SZP4fRy6_0fF{T zW*y=eftFN(mLh>)BAlc|9+RIQPyUFDmGZ!R(5DvM`0_rlO$ z@z+}cnhz*~0VsGv0YTi1@amwWVo(;~zhEgVQVb;%QcP>49xTxTN*W)${bW*B;up>*u%gQ?rY%*%l9mdpOd+`*1*Sfxhwr=cEFeMk7?Cl12CZNWg z6z<#}NMOY^x9+2g+$qQj0dt2;z4DKrTfo>m5DLSOPa}@AB4w#(ub)4q?n^aznb!05 zWr(x99l9hZw&agQRlh(Mi)XemtYxa&+Fh~d(o9J(`jH-Vn<9n*(PeU(<5dcWlP!Xt z`;Gs?iE{Vs5^r)R*v7_Y$XD(H^_)d@^}+d{{e7RZQ4MPW%Xz+NWaE^{NXH&<=-K%8 z=W&Hpyr1RNp4h{i+^%h^xnwC@4)#IcFBYnk*|`S=W=9pky3{?~gm+l;ep)_&Leo&R zZ1$CA^YBmTn`HBIqMC7*U9h!eL*wHj<{WWOV9}SMI~H(zkj0?T=7BGyy*{H00b^lY z)M<9j+et_ZxJ`clNRgI=DPZI0TWT-Ckr5HJcpKUVY?ia_E--F{ZhxPey{w_PzzV*k zR>cW;Ob*N3xTMLJ>H=$ar5+hw$)y(N=64K7l57SKz52A;RLj(Dw#tJ?p82-%?k)bt zZ)M;8=#lnKE_g-kOC@c5D3AvGi5#VcQoS{dIZ?eKjeUy8a6tX^JgJ1YXRvn`V5n8$7F(8hVT z^|{8H0pUM0BWfq_rl%;jc*gA=Q9LU-JToC0)fMdioTVEgC()oK3u)j7ViXDSkd?R2 zu16?UoFJ+v?v$NPO*yLT76YPAiC`ARgn&|i1Oy9+ymX9-|<| zlxhFZ59?JUn$nUq*bZoG9%u3t`;_>68nL7Zt0L*)xS51k- zHr^#RS!)aEST^Gx6Y7K^e3+qgZKe@qSEq0?Oq;7eNtJK zu=!4m?q6P4fb_Z|o-+)xoC9nUH#&Z>z8PYSfnsV=i{7cQ77dxzw-I+REAqHi5%qp3 zRCX$QD(|!_BXexO2soN3UaW}`;Cl9@gfT{UfrUHS7XR8*p*E@`7NcCBlwHWnZOsvQ zy?M23#H{goi}6E)Ap|dH4{y%i%TU{aZB+phl$VCq&DdlmM6oG30sTFv?cy2k0CpWh z)pr7SfHBD-$(ji=!Pcnl)rUiaM?e+LMb-*I9<8xBe4%}C+ehp$w)IJEOhmd~H_DXV*%Hb9Igf$`pHtafC7D;X@U>*bKU{3vG627SvLptK z?SCbtgpu0~$OdQ^_f^kKkpT?2P_QUmqa>vevRyN;p}Ym$%E?!p!Il_|e>shwh`^DN z=_|^x>C}vv{a~|V4tFfNI2Z;3wNMQ>J2Rz+JvqEbIY`9@2-vX1lsJvMJ4@3rNk`N( zh%--zIUQjpB62?iYFv*T_D{evf5(Fs=}RW|Mr}oVlO@5<(K?uwBNI`!pyYV%Cw8ZE zF|xDetz_Rz0`3tB^g4=S0Shjun>9Pz#D577-2i%uqPbRf<16>*Z#GcDawCt=w`+Pm z2F@!oFU;ONZ+2un|3bOu=f62M6~6Q7&b$-g?KUDl|ARdSwNJUv&ek5D(ZHNa>qf8E zMhv+T#zk{b56^6BV-U9FOa}*OxMWMs;>OV2PCz1=1Y?uu(o;3EJ)FSs9t5y;Kn)dw z|3X>n`f*#o(Ai7sXTSrzt7)_== zGnunfl=wQH9M#6m$3a8gVu7gyvLl z$%En-N28)_IRZNw3>sG(D-VN9;F(LJLcoo~IGcg38=uRpla9BR)`9Rc@L>X#C?$vTHC^)>oUDf^Q1r=)TuFm?Z4Yd_q^qZM~r?f33y-X`)dqNv&uP9j1!o{i{?-Ta-Rg~-h5axe7EctIF4u~Oo>!ja&{g`*) z)KaS9r98k-udj>!-e@WVIR$Ci6BhjCw1DEeZw0gk<1=zsPiGoLNs(JEH{XtTZ}vy9 z^UI-tvfRAvNs~reya5B1kh>=}YC<=BJ0aO`P-vhpyy(n4Ei5X^rj_`5^s86$53{VT z3_gqbV#86>`fGT3V>3vWmE9lUzS(|!##^D~nTU8A?t(7%N7?wN(Cu4HmPeU^RvK|~ z$1m*9>v=gB3vs07hkH8L`z?nRAgVCM&y8&lL}T{WbECb`$nW#Xh@|tBenIh0%aeFj z)nrlPAS|lCh6>E0CwE9}K%R=`Y5L#toVENQhB=+GFchZ_v_^KEOwXJO>nXOXV|2|} z7#V@+a3kjxpaV5hQp*gBhthPKNB77qS0Qo==9Z_$b^9s)T?5cZ9C_PU78T&9s;oWg zqk785LL?Mt3|XDJKQ2;lB1bBElCKr(Zp>`AuVscCubLQZR&Rr2vz zr{|~(3;(?5hDxM8WCM7a>~r(!K-;L3lZNvFx+T?x&K6i)OdvQ=S)BFlYFFc%yPIb{ zzvh#>Dq>>1&Ua=J`?+#vGTVYKE+Ir-)oGlQVM2bti6_5+>xv=@4EqV}j5E{Sej9BW z;^R|n!r$3cfRHS!^1Pk#-WboAR_B5&@bn~JhR#}Y$*>_zmmdf0xD0nbrrJaliRwK> zuyN>h){WQ}tEp@Vng!0v+=&DHoI%rh>wGbAqc=eLk`lAB@sJ+jo^2LzL$(_%ye{yZ z9dB;=_|m-^yb&Y!XQJ8sTKu&SL%5G~HsI!Y?Sy;;{Ik&6$=C9vRTC%klF3QNBKYTW z-}=tIA&weg(XuB_Cgx3OY=~pB-kY8kHBnk=UazBgzo?OEsqn6$xT;CuTxPH1iQYzI zg*dackwGz3Sr$aQ(HGUKR&I&*cTgu2f;F||j`^`uw9fPGM9F&M?>?O>ak^OKR`h(p zKY_F0*fWHKuRQ)`dp!+kS=7SgyUo()uN$%xVerQGtd(!PpnL}43KC-(xMmJ+t;%E? z-#%ebuyv!)vJC_>{rp?=QqX4Dx2?o9nevMmaz*)32@39Seb<(6fIyUm4@t%jr1Z3o z61W`A3Hg`X)=DRJ%Rox##TTWTuUGzY^ZLIO+JM5qW$k}n1x5X_CPXl>`f0-lU5Vp# zzFN7l#<%4@e)hGVpjRIrksVsgJ9N{?8wV=#10?2c+^+O$Q&Rn1Z-zvP$6bavN|)4E zgDsCtfmSrq$Bsa%d`;qAv2Gw`9pM@C7Y&p=&SMj>`tsTt1*1TY|`BxoH z@{js9>R!&zR4D3=#Vmx0wWGUZt-iP6Pds5A5!BPi%PTuKEUJBT^awy!4~Cp0 zgb~s#^Fcs67WpntA(3@G_jWYH%*%aBET$4-0JM-BymhLo`cu})yvjAy71`8m{q%d$ zF>~=Q!(wlI|DL4N8|N7C7djtl3Yn0jJH-P`dDiJgU9oX&_gZnQo`tImqMz(62qxWE z_TuBH_o$ARFWvVrQKI%~SzCsjLAJ8EjZ=#$#)+$-y(WstPrj^zyiI@%lg_q#E<#i< m{Gadd{<}r&f0&kU=T!aF+BSo&w1U7~fixfMs#Yo6hW`)j^jO*e literal 15096 zcmb`ucU)85wk{k*0hK0*fQU2!=|u#k3j)%cfRqqKigZQFOG^-xA|fCi#DMfJy%SJ+ zM|uqkNEZwx1d^<8#dq&>_qpG`=brn!_YYXf%3N#CHRgDp@r*ggiZsyEpt*4M0t5n~ z(R^^<2m&E%BmGfPfM;&=*1rG`Kl~p)^15&T;)$ozGcP9(cL?OK57Du@@4kprznkb<(GHn*j05i@B6cU#0F2oU-4Qzr_FXtVE{v z^BdnBA|492jw>BH{DmEl7KXK6D^lECEhRjXhU(4UEUo_V^~m5}P5CM#Gqm}yh71+( z(K#WS_wPOY>%&e4?CHm;)FtFpjUiP+XXW@0ZwA#gyIW<{TZ!~e#y+doUIn6)H9-=w zlJ*a-4!p8D_%vo9``FP|%iw*K^{dO-1(rr>3y+^mrrO(oi_%(lhiG9x$BYgg|bbC!>cz-oJuSK_Hqckh75B8(fex5asvu5FVTD1?`yANis+# zIzko_cAZ6MUFPUlZucr%HtKv!2?SDc$qhoSAf7U!zxG`HzKW>Ofx}y#WJn0lEQH0= zhVz+sK2&^t4f4EKdFEtB5z-nV139{j_(IX9AA{^T7zAE{zc&gT1RJV@ zzZ-p}cn$vUg^>*V^Z6zw{Y576L<{l=k0AezsjE3kjmMYT#SlArrGd#=uAU} zrsTHmojYP-i{OoC1PBZI=#4`C2Pa3Wl{KfMz6~n+t!@dhquMO(f;#EiK9spTvv#et zYsPT?0=0OO{gkP~{;f9lstI3a2c7fO{>*%l_bbyac5!LHQdBKAck=RyXa{;JH?+vAl2ioqMw$JX!kn-L%t+O-PL7= z7FWckSu)(g^X_<3XO5$V%ioj3gA|t0^lQs96?DyGM3s~(>F*COrA|DDj{Pn9M zIS?(qUXcDhH8b8(=Wsv(JDkxupRdJyxF0%qgQ4&dh8>^K@fx76`5f7Ti^gh?f zQ3XRr7=r>Yvsbb<&M;awh5o^|EneIe0tsf}{0F+pAe@?DOGxaE|A`FR#Pf$?-*J^x zq?RlztE^S+F*eS0AXx<8`zWdZnQHnu)_Ac=hML>850d zuEiFqTc*F~J0*Cv)*f5P7zWD4n)ne2#g=4OY73?Ij|j3C7z7eY1TsJZ;Ewh4Dja+;wa9~p?)HY{gkOz5 zkx4~jdhPXo^2GY_^O|qd5T_c0ygOqpZoD{peAC{fU9)1g|>i&GnhZ&E9-9vDczjfyE<6tJBBly`OD< zxXPxKb+B!S$U{{<`(0Y{6s{=VLRLWaWSM`Qe>mt?066fwM}1MbWxS9tP!L*Aw8nWS zto$)tu>N29HX}mx9p8GH?Liv8g_AT3YKdvpo8upseGcCFa;)5|da>X>hShBsB) zf1|L6t>jd*_IKq<5~N9ld=rJWOpX4@RuH7#9aEg_AX-ea1i5jQbMEseTUbHuBw4za zgTiF27g21m9_AqIOgW`pE%pIbVtQ33!P+1GJ#g%oT9R!G>zm6Om>GdJ`|#-vCPCHL z%Jk0s9#sRmn3y(2*}WF27v>wZ{<+Vy^A)^;$1-r*x8^dMb|slKMaipbBWu0kZ3a?Q z0g}ck0!iuHihUZKC7Hg_%9;IJP1K_OR$6*(-uH$_yp{x;{L~O;ltZzOfu&Bl&%gFk z8_+Qv2wTn-ZL6mksm$GeuyA+d0upGMdarMox`S~|_GM})&2S;Ynz~ji8KrqueYNEJ zOtYU1!PcIP(0i^W*J&>(+sH*sKM)N;>SZ@HZa2-#t~v&KlP6na#;fk3?S(Ah#&WQz zX^pvtqG+w41}J2}w`f7JIL+&v2Xm%uZwYtPgWy3#xpAB8ltA)Ef$xBq;B0x#b{-`! z`{5xyl`sDK17+%pCqCv!@FcSb`BqE*HqN!RaEWuuQ<`*=MWUCmc$Lk~G*X9YMizP#f#($6qbWI2sR7e#rnKY+&nFA84 z%azK!e+zKn_lK~EN1GB6diX(O;9cW*Xc7Oi-NH#^>6+WDLi$0mwi4qda}x6lYSKR7 zg9JNub?Fzxa#)04Co>rP)owg@uP0mw6d2(uByEw2Ub-pu-;f*sOG5frbs|1+*tK~` zzaNr84D`|HlSBU^VmM#LG0GD%;Ej>70FE$kXTEgX>de%3G7GPi?l<=@ zwvKw=^Bp;V3Uj3k)>(52m2sRRmiFRpF-lT%z)BEOCJCtvn9&AP9?@~k;D4755hHu= zk*Fv!(OIKO52VNjPPVY-fc@okefZ8rtokyb6L}ZG{y{ds^)!)kwKtqn?fweLjSo`2XOkVv3J$~5mC*YY zJ;gHReO0P-eZ?~AGUF&x(~Mo<^XGd(&sr*q7C%7a5qFmLhQT1@e7G_u8R%nSs;>y` z`^nc19CHBqI{=b{Elz_tsKCt-3Fzwb9?F(lXG5Llr%zh?5=_>z@>~7=%l8pZT?9#0 zL%DkEu)n?sz6i1sQ&{)*P1cq;M$FNI_i0Lq1d91xC`QjAoPJh*qqT6FUoWf{&GgA@ z#ce!+wrF|Ih}Y;=m+mulVS^a(9!lSVJqDsj-Xpw6>7HL_|6=nvdLrziU&mA$NXZ`_ zDnd06Zfei>;%2|p@?5yv`;9KkyYd#I*Y zz?j}K%A(R4qVD#~D593uFdweVH7k2Rm>wds2eQIY%#f5Q`2E@e z6hfU<^%n?0YXndfF>ZNgV64no;g0uEfVnD<6p(%fVCFdssLDS&A1o9-fwuCPPmxGO zgPf%kHz=N`v1rc%IxY%K3X5y{SAoU2k7iUM9qMrgx3g>qX>HKA5X>&r8N8R7lE8IQA#Uq2M!DM zqNU=5-E3+ZsQ$eHNLF8@$fBTPl*hL3%-UDka|n^`IdULQayI1YwmINMb7)JAMa4(; z$EHUz`h=!!5QKeTABRJ7j&Hq8FEXS1NP4lnwSp7W8up-IBcXSC6abC=Fr#fsE3SDD zap(9^76GW68>TNl8iK5 zB?vPwQ)T91o%p1@`H`8O$iY(t2*yurcB4Ziu8_UstrrcFga1*c(iqwt9NrbrwR}SP z{p*aE?t(MrO%RZ#6Z6Tbf(#s&&wHV2C_+asai@n_`_ zNsTq{2l@Jxo&jN2c!FY63u*67WjY**d(3)QiWA`%bJi?Oa+(Tmx}8m(57M!-7rtIH z!=vs1BxO*9skS^LR$gUSDzmRN<@l2B+t+3c!}|7MQdorM%w+Kl_WV!yG}cfjEb zaAe#=oGR23kGM-UOAVJzt&aH}5DcaOZ(0$L8G~T=(Jw|^0Q=ph>2EtTSs=ao4)vUT z9dz67ewXq7Nw?l%^HKa-Ybp&gBgwZFP$kLZPclmL`xWG!G{L}c#3pg-A(TS?bUbLr zgW1d;_jOKsqAFy=e%NPa$N2PP=Ek~}<4nHmx9nDY#7yk~_v#c6u~FN^zgH-sl1W7A zkHuk{FRs|x^4Yz(VlUJ%epiXHM3&9VfyGkOSCUKQ(yCk;D0p4An2eTbML?=Ejv$(S z+y0Zg|x_5Ro^0D{+PlZMvbvU9Q#>UzJ-`eXT2*!6; zW@R1f^qy-uC?bERgOO{!WIfD1r05MZHJNGjTZc#=a!_c&U~98Jmqq$P9GP@Gc<)Pp zmw^Q9*=dQcI9imVx^F10v)Z`Ur#zP|J_mtSUzAo1g+X!br2&X zX~y3xcs^}=+V#~x3Q_4s=Nhbn5CQoET%-@ zC$h+JQ-`!NSLOERDeETw0RYTg=R~P|z(y=!O*|>8QqDk&O{zs-yBg~ebgD>V6x6h^ zzFg4a=^?+#eWp*)MH4Ttmy21oK3=we?X17rk9ZsCiwPPQjpLZyw)W8ZZMfUtw|j>i zUo|+LbhcoV(#YV?cUwF+XEc0PjFU(YVm^%rewT9yd+#j6l?P`6Pe%lNJLeE#5f$YZ`(t(k9gFxP2<`>_}h?f&ZS-KtNm_1MLC zY&O?{lXmt-(&Q%$7sU!RWOAqv0xno6Tl85Rd}WseH#xL5y2j9bl4>gq=XXH9ZjsctQW2!BI_1SaKxxBvZ!{usf-k7PEWt<%{6EgN zrA1f@_4c;?ndXdLnDhdVC+(D5o6(0q4`q?uQ=2*E3KB1L1t!L`-r{AXS3jmS)S84z zVwzTq`*U`_owRTSezxwjws)P?Tx1g=N(wZ&UbV7lm#URWBffLo4J*6cnv5;=Ks)Xbr&3&#ol3s? zf@tmmEz_}{O-0AfnuLWDG`nX?CRc|kWVcMhWHkggP8m*~eiGy{1nuteetP#37fQiJ zgFg&AG>j;OLMOTtHclLuBczQnaujWAS3LS(MAg~rq_IC6&Fui~iy?*U{#C`(QG zu4+Sy=JExEWwCU$60Rzd9XFo4K5FY|O?c{3IDRAlqnoJPm8@S9PfzYv%KD9O{1r!n zzybN8f25O}-HLzRZk=2;3+{K1Os?<5$+il-yGmKDR-XemS+^UHYSy^mTZDSVoJ*b* zS#`hvr}1GU_X<+LRl%`(4s9D>?3)%TB@`PeAIA}cH?l5T^Op!0A>3-nD6aR{OfU*Bn}h_6Jz>V1;1$KG?Lzg;2?$ z-Sas3>X!fX&PU6-(>SjFx*W+uq)`UjET63F%4s}$=fo%D{l*Y8*vdD)w1eotHiuy^ z)_rr^q|mO>GwmrScsEqKwW6#t*t*=;yq0(^8(%w2b|xhU8FN+}3Rg;|0cTj=+4YoY zyH({o+Uv{Opt*4arp*J66YXdox2q1XlU@DPIukp5@p(H7uC%MA_9+hvwUR#nD<%-Y z90uIjN7hUhg3*DXpM#rzUFfUd_#S;IK^0s{3S_m?lAa4wk$XM9LQ1GrE8j;hJUmlS zh2WULCX6@nMB=TUcM){&wjto!&kqS<3T&mL#t~Ol=U2#!X+=f1;)QUe#nJUQyJU$X ze?C57kZyQ#k5!jN&g3yQoX@l&be@P^EzraNbP>hRXb9}_vzC4opsc@O}B z>o6_Kwwk!OtvcG6`Ep4=VKAr;Cs>V?m!iD?T7k1^h220=4Vrmv%l9zhe)qxTWF_X^ zCfcRJdEhun5iHMr8g#KDvd+5u2269e&T9^?K!sW8$Nt9XuY~g;#}S2J&ixA2eSoQ< z^;4ioPAaQ8{aDHw9EiXe2MlvyGzlNH;HgVyrZQ&PrYlWxyG`Wkie#~NqUMA1zG{ae zXzY6$%udhllqVN5!D7~Jxz)BjnR&LW4jlL2WRKXt4)eYUx{E5}G2Z(DNg))b!`UMA zacTJUw}(~EqP~UP=;lB)*ywS!+d79c$LpT~E|ng*jFDlUBAx5TG9HUn;GD99Pq#aX zYb*%;^Jww2x7zSqn?b?~CrPk`AnpFCK*jtByeDSgBlFk8a#`?poAr};Qy)!H@3e%+4ZJm8nq2C!>H#xjD)M3>pCL6MSqiMm=&0amH2g{F| zd+#?PnUI>n4GzdX=#{nSPOfSOlh{gAGJ5}_S`w%0$H5J4c${8U^0k(;miBikaKx3Z zFjGg?QfG)VsrMk=CIyNXS=$A3-#&8O_a3pFgtE5_zZzy5DVL4m8S=WfZCBgHIH7FH$3P!uYtByXSB8F{9bj55ZSohqMmAPcJ zn@#S%pb-kg?%uS}onc41&b`n~VY8+&b}CB?s@@ue<27lt{2b%fExI~4+xZ6nY{j=J zxx{jNb$|AhAQOhrBgX0M=q$ti;_k%*5#%_su;zKSXa)b^VZtJib)G)82DW~Yv!m)3Sk&O>;(2>Hw$ZGO<-_Hq`Y&r~~clR$t;u#LI&bmM&|H7JgHSYO! zP)d?V)IBtVFDO#ud{&bCGK-!u_SOY52%tKz%c=)sK}@u4LQh77h#tJ;ddK`N9XXP4(e&5i(#@~fCp9dwC5CwW$q z7r?k;#i1P@h{BNBzUt;|V>y`?fMtk*u%e8h5xS*}))oU@5be7b6&S*yY*;b?*=PS8 z(-i^I$KlIWMLQmlz=Bf>sshSE%(+Lhd#S|-Q=fO;j%_u>0(Z!xgJY&=Pe8bmgLw&07 zdup@TYp{t4Ukq+uD~2@Ez~}zULt#SZHPY=R(QmCtG)c71*0qdg!MU&0S)<*3B*ARN zV$E%#ht5nfSP0~)rXb<=4i~{jUPdw1`>jeioNwhSOygTx{vaqqkbw-nCZJ9+!U515 z#dKdBwM6Ye&TduD?I{<7*<(`rRwRNNdr0}u$>NjidqvSj5D050sTRNz`vKIwioq`K z?ALogh=fi?OinctO1(RrWx3E9feII$uzp0}xhl?;(>Q(Z)CXd&uC89E&0}acJ{Qos zbSvEG4`8c}!4GG*S-@CbyOwuclp&7!_^tg2RV@Ddfxia+OCpVn2SG zO8Mjk8A!02uB#4o1BFH-&Fff>TD<&@>?-Llr7=#ND5X{AtRbVM{)J$P-^+4{H+)oA zCT?@!`>ZXaB*!`@R}=O6MLvz6W9vtd;(38J&MrWJ1q_qES^;Z69})q`%nFScH^e65QV#=kEu7bm==Fn|7^B*)Q z?f09aY^+#+S3^*fV~g))+acNT?MFX?toP?yIRrS@FvGQv?3UE&a&K;oRi#Yt7^x$Y z?H8WYi5q)40g-U?%=4a9;Fx2bhxnr?`^UDJX2aC`m z^j-dMxRC{X@gp5n(m61qlPli_R|zHnFnuzV_Sv~`6!$u3gNZB3_48AiFH$uEqG?cj5I9`iGMrQ{GV$2yO5kdyQ5#~;yE0Wls>NT%GiFdCa!kX|+? zzhAP3U!W%wetCvvB_Kx8zq^hWV(>PToD*xvDNVY7?(hmHZ3u0!QbS;BKmt9x07d(F z-$lZ`&t!WCT^Z4q;To0TjpW>oXom(he8(!^3`r!7ovWDUMV-$>5)dE>b!|k;v6V>^ zI&72W3EPONlv?f2WS=cVPkv`8sTtqhT)%337s?P1Jy`(2PWUVZu^(f90R!z6!gP$=*L{=$z zsGseucT6r{p;d%EtjHTfi3l#@6B{B&+6CCbL-EK4!8Xnf9Rs)HVXe|rd0 z4YhFe&zjA3&JdY%eDz8fNUx2m>E`sxnQSj#a37Lf@eovSq`+=>%vD&wkJ z1!T~bL_;~loNELl)3IAeDLY1L*pz;k7d3o*O(`R{^DuAfEemhiC)?WJfF*7!HJ+w|vsf;?rl66UkkiA$sm1^I0V#r4OafyQETAG)& zGr{%2ynlxCf18Hxbb^Ei zjr%L4^T(5voDM#xUzU9FcHY+m#7HPo3&wRf8Cy;p(g?3@9VS|yRx#p**>I~S9_CI zKiFyH)q%Oc3=}+)S@2>ir!tzZJFpwBfF+8u9(+=h=i^{-az%fu>;v3QZv{+WYpI^) z_1c`~Mu-r7lTn&a0f)#^LR3mB*(?Ti*v)wqc$7LjT~quX<6U;B2|w`&P1$~*2JE*g zkqqADBmzF~Z6IodXj%BFyjao#Nd^b~IiO*Z*+iq+KB7|;w1Z`0{eWjC@mE(F^d5Tc zsRn%IB)&hn^h5RKc<9qVcEc%VQkQMkA3`&|1y$E&{O5j$i*Zzng7%J(k_+d4Ibyo> z?A{^(2FLq#R`v|DD0bUw?Sf~Q(;nMi&6u$rc0?9V4(*a=7Lz|p++G`9L$ry$kMF7M%xe09nB(yDyG$p4?d=Ryxr-u_ktgo zYh-4TtVW!^a%W~dnGwydVa?RcRrRUVx2@71s;bjIrY7_ z?jw!KTspV4Pi0;%XB0Kv7?1=xYGS!t34#@Q1b%|d@4gTL05P0bb@77;rB2-#I zf*a`}?E9ceeNQL399psK*}haE5Sue+GN0J`kNG{_gDXSC&+n2SbhPH$dvEPgdBm1c zwbO(CL{0ypt&$h=O5F?0>fIF^-$|A4lgM4o0U?o8#n{-)mjthY+NKdqe%mYI&^P{| z;A=JX)5TzJZl%`!{HKB%)@CiPQ&;g`2HQSvB`cvVg*3_%Gr8}|BofDXC1ya>bmu@z z&MMDkCv)r&t*(5fa(d0pX>A|93xNAGrdI`08`d#Jm%HQKB#Peii2k^r}9-bU6X5(3HzYopkGMPPVM z8)mthX7G6fVA(OM9RkB`aWu5)6YK9f+kQY|E?1`|y5ilMfZVdk8yZsBtcbDEc}B_s zBHaLq>*)?(0f|{Ilc#{MvDcV7d|ziErHs6G+g2XZC9id>6P)UaUw$aTKjL{>7BR+i z`<+5mREnun8|~a8z0@+Tkvz_a6Bw{hg^doC~kol|@5Lbn{ z@rMc{SVKP-^$#N)%In_2Q(S8Id&&(eFQur8ia|Q`tFe?kz~WxIS7MSbzWLREYU{$v3`AT6*EVw^@pr zP?&8!LV^Rb0T~M$y5On;FesKU46W4jDzW~84Nxj4vuBF%s4D10LvG{r#DH5wI>z){ z!GS;s;LGrBX~~WJd8V1L1Q;C149re8$X0X60OrzjDE9EL|!+TJQ(p? z2AV3Iu-4Tl=t*h_;LCp*h?+JpmDmQmdxnyV78l@-vh`sVR@xe?)ESgKIgiZ#VG5)d zWHyp_0G%mJx3u+5o=y>U2PteZs9}5a1!B-h?bG<(Vsh$Hppo$AVV$-s5qlfbdkWiH zngcAv;x>IMwh>k7HjAwpnyR%Lfd6HKI>v#undt<^O)7(q;lZa+i7PS)MAuSF{io^^ zgkh~*yX;FYJ^lDu+)KdG-Kz#?*N=9xP%(SE#B|p~d~+ z*q!P)jcol=axJceS)|sxXUixY98^>@z^@jvkC)bwD3etd(I{`)%B4rvZms}=Rm+bEyUrA` zu&Wmq0DC_NWwkAYS;siBc-?LWIC`ft#uKMD)5>L?NA5~+*O~jMt9WrL3NNWjl?WRf z0_+cD7d<(6rGX}HJ|Ni*z)8OX<{0CF{-pw-juEn-{XR@88+(g)muz#V85a`n_3a)% zUnhZ~;QHg&MmRYfin>&0Tx}1*Z~I$m2TcnWf>FQ2d+iz}xDH@YGjT_famk_?7Mri{Kap<8Z z^jG7JF$Q_qg*`t8?TDjx;1|`X;xU??YnJ~E;HdQlW=aWxh|`F5ocouG`+rqu|8>Aq z4zm5rShd8)(uE$$&S0$%IPD#U7&bw#19d~zp^MGnqE1b!sv2MyZXL!jd8=XY? zWP3!l0L!%=D;P(EKM{h2jgzGnP)Ya%D@rtwkriE1p=1f6<(50m9^cFYLsVf=)fB|2R@`$_|fa@FD=)`Amg9G@JUbf=^7%P z-KK!3pXfszHtsZAa4pfN9%gouDr4I2cwOqnS#Hq8o^PvXQldj2|a@?1rPJ42nOW# zeYBU(&j2RvKuh5|uwa_#`O+QY-!T!JNAA$#G(OH%9+lU}Fj(R$RxafqD5GYJK_s$5 zz)q=&mcaT0ssFwnHcN^tL3SzlryWiz-ccRdT==eC$1h#2$j>{!fyX z4sWWJ?{9khDli?H8y*<-*y-gLtp_^r;`_ux0JS}o_8#I9*fIbMfyTicsIo9F2M<6C zyc3WUbZ&uN9;WZe-Q6qQTTEp7qh0pOXKuzvG3Qcf55){XkaJZ zMnRq465H=jd`<5ap&)PwWhpJz%q)mU}{bc zzla}-N7F(b&42C;PHnD$I3@KO0(|9`1k!`3zpQCeX9*)#BnpiqR$a~kyJvwWp8F&W zKdh$vJC)fOuDb`OS_i@Z=G~b80;wI~DEX7p@6gvQY^+Iqh@f?7o0`~r&LVLfeq?l2 zP9sap;a0sc+m%5O)kId5z-A*gxyVi!yaGdQ4pp-H)f4jotxu> zagf(s#6ol#LFk+m{w7e@qWMran4eNUy|x2XinYCNdTyh-NI`bgBlhw*(B#5#{u@Ad zL5pl1LPkFyYXQmGr=Yst1PTGsmroy^nbAyKVy>b&4_^uyKQZ}QpH7x1O%8cRwsXOj ztF3Xxw5NWT~?`zSS#rD{&nC^-AP*ehFd zHsUS?kuHjxD6;`JyAoFmhS$$rx;z6~jyx%{>_3l#-xF$HZ0duN`8R^))i#203HY@H z7^PecKFxJ{rFqFb;ix~^gvV!#eDUj(nVW@Vm@-r1UY0!9k|IIY=%(tY`AzAa#&3YwIc( z((#G0UJs8lNBFnRHx>1`rkJ&nJp>~jRZ33uB`215{71a}GTe7`&^Wr>B#^CPHT$#b zx;IGM?SNA#AoQ3h5ixoDsRDPQa|C|Y6U2pTjK5X(j(qCr3?*18xz-N2w*iTt_pfDs zyr8f3!p^9hOBQK<9$Zwc=g8fxdDil)ELkOR_5#pE4uqd0#`FP4*I!M60nX`a)^kjCcwA~no1XJ z!S$hTzvgD4SMW)*A|8fJaXYrKSu;9O=h(KQaGg$1TMPBPQXo`xE#Y(^_|v6>ONw;b zzsx=hjDt9Ru1ZM-VfuS*qyu%HFE79aEK7ontcjD8-fW9RP=K$w8IYZ^8Tg!&CVi~r zwuf+|3eFoDc5U!K&RB?f{1Q}bfQBY;P8pW{DGUq*CDU$a$I|(=w(Iz~-1iW(OF*^2 z20*+Jtf--Onma?qr)Fn3@bO0$TY}Fo`1gbeAFu)FGRExyff14~qoIZyP43Um@p^5Q z;GlZv{a7*W7`fJ!+zqRR`h%y8wST;845Y1{v!H`2Z~g6{Pdfg{K|2?}AE{)#`sg9& zIi7#I@jv~RE<6H{nkzCA9pxztlVTU&GE7#F67^0=+*wUjkJ-(mCY9GBrI`pGaEbyA zg|g8&ge10#&SEOFM%08&<)7rfjKHI4h`y?7Bq}b`5b)110~K1~=ixV>l2!O#$eO6F z-4gn42ET*{$^9Sn*^QtRM-9-ctWK@R^?Z_IH}-ir-k2ei=Qa$wS<@LHT;o1bh6BQ% z+g!EvN#jx0Ln6K)hih=uat3Pow+Hiw$qax!lN8ne1+UM|K>c3Rg48eC4m`e;3JfYz zeBZwjW{{+WNf{UDz|??=MhLKQ=~K`iN=|S#91E@~E5AP&Hhc=wI`98sg&huvv8b@1 Ulb5&#UJTJx)4N}$ViWTJ0p!Cd{{R30 diff --git a/mods/psionics/icons/psi_fd/righthand.dmi b/mods/psionics/icons/psi_fd/righthand.dmi index 43d2990ee841178e14334ac353510a6cab3bed9a..0306a380cda6ded49f5a457fe9e752bc62981bfc 100644 GIT binary patch literal 13549 zcmb_@2{e@N-}gu&Dr7BTEJd=E7F&#EWXZmiB_xTg*|#yIWGib(gvc&J2$_kjktJJ% z$so&E$2Mce%zI70|M|bqdCqg5_q@;ho|DXd&wXFZclmri-|M=>7#V0CXFkmgfk2My zXv0k)5V~CO6V7x5+`+xB^8~*pgUu{_;f_8I-VY!7KJ@f}KmxN~Br2b1y?88gVUCl# zoXdsCE@^4RzHC$xuI>_Dpjswx6dZEonQ$(fa?pouB5~Zo!n3aZ1im^^Zd-4MfwNbv zgj34AB_d+nj5*G?dS?950G(P(vAv?a&5U+z?DZ!R4V+q){av|G(&0TfS3#`TZ99WY zA5mJ4zmL==(7k99pm=u#>;yQU*Nij>$c5faDZf2on9}kIlhh*O^&1UUywbu7x7tbi z(Jf3g7JT-;;K5zu_WZzHneFt%amUQ&hOSF){t9!BLV}hppR_J@tfxaDP>2p(%`7l$ zb;{kDe>_8Mqv-xomM2jbX_MzX*sb`*;(b!}v`)`?EX+$>+=rGI^J}P2@_8oC4}J(N zkQ~~+yU1#_*q-Z`TX0q5N}5a)KlV4>i`j-7lFab>Uz>bM9Xh_<#j_rcPky}+E}0)V z-qBIrkNl)~yTD|mdB@v!dH8_(<)iiJ`=Zk9#+@vmWwX?)T}%*&YJl6#qYU8c zqbl7Y2t>*#9DKpT357rg4*d^ri;LVmCQ}h}cO$3BW>1ir4dRyklEcHKPUL8H%FtdG ztZcMO7y^-X6f5fIU^kBX!}T~KjXN*l!L@@=2-d~U^zRSV$OKuXeH`pn4GPL&)ja5z z+g{eRgzf<{M8gdR=;r0G?4( z!-;;6%%Bc5GsoD&HuM!roMNhsWt~Fxlg@S!HU~xqgYWF^zx)Aye@@WlInHjj!hxCu zF9w-+`ucnC%Xw5)x4qg**uvPP`DOdpA%eeBe-WCFY|r+rY;mmdB;A`|Z;}dWF;jCg zzQvv?XjYBx&GSuiERiQZQnW5Ay|G$2g#+l!p@to9p&AE!2u&%=tqGTPdXoYlCmx=B%Fc5s%h=QSdk#)0` zA6HVq09$fa31xQOr-h|XI3xx&A4TF7?z_JI#ujyu=fb}q?ffynKy2-+8u^vE+K9>w zrd`D(WxXPPbk>Idec0;GRxMRvec4&rLq=C1@>68Ab7R4$=f`_$kMy`1Y|c##;>(OB zR(xM)5nXO;;cCBF7pekd8>E0oGuo^YVn7{*^Z1bXjSn-^3=4wI*-u_kxBB&HvP66 z-l%9*>F4*+78sy%chE}i;+nD$18%>WBp7Disp56v1Ez_(d7D8R#@-&~94c>c<3eqm zl!s#hO#%>`RrObup@)8v-{8oHJ2K#iLf+=ZU z*yP~v=bwq4ozfJKAJfQNOOgL$S!l!%?L2!lU3^-@8@#h9j|hT`x>rAmjjQt#4heDO zY><~@^W}Lf&)j4v@t(k@DXt3VGfec7QpqZfI4=>e!ys_&q~)BRGc=dUo!d9Z?B1qO ztVOt9e(BxVSO=5GQQw{kf6Tyynv}Fh6}K`c>XIj36uYX5tFQ%BS5{>dPpZUhZIm*L zt3sg9A0~L1yd734**=IobQl7$`W@*Df#foPG=(@n{(C1ELI(-w1`q$o+iVWzw--)^ z)Eom3s`k3~yfS}E=GF%|5zfokbjeUl3Flk+tgLsStx%ogokbpKqK$1`^UCv_d=`!i zFHgO`+sqOt`O9DaTJziNF~#@21Bc5R6+7!3|5!Y5j^JM{&#&U!La8Kx0kB>E?3CoL z)Z6G`Q!O2zotLtsKRh+1Wm7NRzTDt-e0ITkrQ`Y=o9rT7r`1wx8}rrYIa@p9F5Ni5 zD|Fx@|B|BGm`s960AJPG<)WpQv0Y0W<;F3$nhNXmayPz9!g=Y@i~Ci#f(K?RweuKh z9fGzk5sU6iT}Oqz(bFe+XxF>hmJgisGcdqp62rEaTF|cM z6AU9?f2NH~^V6qa7iMRx4!OXteK_3Q=~nUXiNW?kQ(u1~ylQMKJR0lIzo^!)Quax=l3n?8@N1iONxd7N+TkN}g1?CY4TVf+984`2tQ|MH6=}z**1Y z{P`YXlpYN#KGqaCJ&U#iohC+8JO?;T04NHqx}CohMRfjCPeWE4vRsTEqVki3!8H#t z50a+e!g@&UKCw}eNK_`RpAqiJYX6=fd8s2VGg^3NQpWP0o|a*hw!Wd(&aN8b{v8%hgE_BOmVu$lRGBnejYpTSC}<1|J%~I*@A8$GTzgb>G~kb$ z@RzG>)||Q>shmT|YL#I%-$-W-I;>Qv(|SRiWLb|x26F8ExIAL6dV_G=OXDiZ3?N=#p-Qeg@lXVRNtJ@lTmMsGdz27S%(RtQ$Q*?Uj5S$ z3->N0#7V0o=IGnCRIam}P_22#EhwyV)G_qWIn1rMmlUlM_5jh|C^5SJ`2lkOF*cu@ znN9WB&z$T;_^z<%lV&FNAPn+%RCDJMZ+j;2y6&rk;(L6W+oCmXygFy3pS}RX2zn`2 z1Hmt)tRwYDC*mLQJpF%wO^DV1MpLNSdMj2LhK>TSwi1*#+uX;Yqd(VdP`1}&56x+e zj3|sPXl_eOPIsi=vjLAb*M@pqw^n=NCNQ?dfYz$t)HaTK$8@Y5^-MfH)hHY>kv1O4 zHepa5cluUQd9K}QH3I7AS^IHBhShHUWvV~fV!$uLH~&0Uw24kQxB;2^4Q&eEv>~!e z7}3c(=EMI5+}9{>dlfvR6p7jUIO_+__e>2U5S9@enPI2wRNvUS)RTS4?}~AAyq#o@ zm?=R;7FOdWGLCzJOzO7&Es$9LB2EPLm9L|JFfxYg+cEtQ(~+8K05hYRHMIj=ixz4P zE?mCSQd-eh<({FC28aMq1wio6F9Qqk=sK9~#{ORMeHl#29m?1W7FX!fyn=lhmWM?q z{-D3roDljaCwlvMXQvbu-tr7e&y_1*e;7V173cQLe$)?_?B})3`3Au0+M3F8qu=>k z2|=E`Ff9kUKT7}y0S4>xoV!(QPtMwq@1p)8C#+7_YTe$P!KQ@`lHghzGF^Lidyf#4 zctclGOaCRdMZaU?bzfJSXuyfTzVmssWLxx(pI^N4!GwzAr5g9B@gGSXz6TZ;`~voj z_cDgw$s&zDn|F)_x$Q~M;9|)l)Gl<>bY%N4MLyxeKQJTKVp4DLqk4~GH;E`JErkNd zLjH1$py!J?z($fGJ(8EN7@v{o0;mpp?xoaRObnY7BnA{U@wmBA%ASz%KVJm7fGGjH z9T!E#Efg39#l-uM4!)``j(nHRuh>!{=qg2Vb90U;@i-u+0=ozIUm3jVsn5Ya7(g-@ z8h^{Na^H?adD5EjW@3M6J6t-_N(Gvmv(nd;a({C|c=AyHc&7~6B2kc^rg$?6GT84vDItvd!@I3qaxhZg;O=+`+uh+Jj zm$hRDSIP478Qi$F7Vz34)_Ep(rsiI&8{@x*`pn2*%mAfY% zX2h460H)tT{S-Z$B)jkWZWD;T`_#6Cxp+ zs-LT-noy_xPAxD<(r+)>Sdfc8Bqf#4i%<4GzA>+1iA9| zlf@WN)XcL|R7aKp0K+on2Y$x*Mz=54+@S4pns2a+=M^n6@TsZLVLzNndB+nP%z?%g zo30yL#c~%I`bu5M7zBYap_tmO)o3}x@`Y;C6!kQtoN7O z>;(k?h@Sm+>t!?zMylQ0qN8nv^JoHCErB4T^Oc~`XoP`h%pV=yvMO4@clxg@N>?+& z;V&C}&{6&=)d#1~QT>56I)P(@Z?0K!w*f$nT;<`a53t{~_|x}|YOKHxb)lHYI#4uI zuCj{`h#pRzLens6ddC)IZ}eoRHUHCE@)H2F-PQHIvKk!iZzBK-)1ZC@#*$C!eMqwk z(7IOhX_vvwyx1cH-S#ebcKXA7vbv(l9E1Daw;gfH9z?M`dN|xT_99i%+B)q#aZKnL zk;mW$B~<@wAIN9Ss**m9A^@fqq{;z@(h!b((8v5@N?h~{ZZCv~yT5FW&Wq+FQtuL$ zunx2^t!o-K%}lqh4^ImP4{%hRO`>5Ys1^X?0w)!@iMPHZ`?$6*gs-@&`gfrN?YAoF z@q$_Fr0~FY^M=8HscOXuOD&n^tNQTBceZDgxyrnL1KRTUZ+J97D=pS{-$=(Zaz}%CQwKE86!ey>B zt{j}>Jk=042U9k^5NI*%2^Ws!NBX6-%(T`{E1-!U14M)Dy41T{vEB<0^=(P zxvHL|UuNwri7@QQDhPa?$F^iy;HFeg+%JNw0GprV5SogNHUA^|I6yszm~Y7 zXC{YD5;0o;Ui5+{s@;=&1LNz{mzpvx!mw7Kp)G07QV{LrDt{f;uzGD@h9GURU5gx27WxkN*j`> zlk2iZ;n2D~ZuUVvO8$rap6Sz$STHiUP5 zN_z5;P(Dvq&vA4b*gC_TS7&U1RP`Pa>}EX(P^r{B{$GSL)XR&)z_J9?Q1Icgk9G4q*) zR%QAT$pUqs@7&~EX}yBYWDk>LB`E#u)#!~(km>?bG&`wmuPg^!S+aZw-6H@(;p33VtOAf3{ z9=eB2jxJ2dP&v=Nl=0{}Q4=q*ams|e55bDbAzw~&F|&QzZ=F~i%UOrz+L0G+cI&Ad zL3Yi#=!2+!Ycyf7X{CQp(9Obt4Y9b&SSKV8!+mksqAujHD!p{F10xCzbDc@R>=?J8 z;t>adU)A;$m*qEwQLhPK8%hdVLt!fq{?$oBZBh*?B`4p>-;HIMKKMcBwPht@!||S@ z%k#Ih3zopL8u^dYq0rsmaCIhb`XxlM=y#w)-8bh8lMTV+Y2PtZ)=Pw zWF>W*exGOvV?&)VP|G1j61t=N;|%SKWhMr)uSP3e{k`#fSEFt<(h3J6>^Upx@I#%g zdwv_4IYOu`lQHQ@Y|-d5NKuUQ_KM)4&UG*p?7|j0%nUyflQYi`hO!832H&MNN)4&d z3H8=qmYYxO-kQ6kmC-DyvQjOQ9x_ewslQbp?aB}>m_R^8JjppfhQ!`GdB`n!0-d_Z z?(i{3yq4`${EdFfUPX{d# zOWxK)zk0{u=nkak%B3v!-e^4!wRg2AJl}&(H#N_dY4#T#+7dWs*N1kiMJ&8qVt06N z#;bdJJtz%{FTQx}j~s;-Ef|chujm$CbJaCYIYB70WFGIn-z~D2&6Tt9J0Ohs;=5B_ zL;KBDj4q~rzGoekY%dB62{@bDSWmM>X=T`_WZfxK1^Q!~BW?ApUxVH=<{UP5Q8-&k zcXj-MOva!9w zDOgM04=qDcW)6J!4@@+>e3&YLSrLnoUC$5A4R1$R6>G>8Y}lX5xFjEU?jrDB>Ka@pcoQ-OiJ2g5z=|wv)n>gR5y+XU;3_nmdeC7<+oZP1{8!7cWXo zx{@jYTdsbuc5Y!h^3!=gnaD+6;}G@KL{{x<=)K2Kq%1ZnbV7Y(T{d7mq(1#*SoN&w zM@&<*=&Fj4fC!bO^)~0ro%6)-xhg|`X*o@v%@i*5q_3+?Ovp*~GhJCnj6*vY1cVWH*bcGN`bo!(_3 zl&Osh+6h4PoL_ZH^C~SArXG2?lt|}b@+AbYofnWN;in_`L~#&n+Y0{f{^?ruN9_@o z6p5>-Uu7OdB@Ht-B`ofRUHsZD1#H}lN>XEWFCnRt?)bZ3e1PnvVC-=g=iBz`Kn`8_ ze0f^YNPdQEdJqYFgS2Ze3jxkRz>ah)=FT>S6TGpk;3eIiM#q#>f(h75iCa>UrFKJc zAQd=L!)_L?bZ&~E_6dM?mxH@X$_e7C&j!7!HOPdv1)LFKecv>CD%h^tpf$Qu2Ki(9 z^3y~2*`~x`ZDV$b&w=kVOK)Aqmc`_JJjA(l+9+8jzWow%ASGvUhZdPP2ZQjM2)|8| z>Gv1*b`f1;dY2&=ToGOO4b%Z_=zR~2q~178#1XUlk!AGXbQry=f9wRtc? zMhBNCf|N&SJ173sM^?suvkZ=wQ9-Ra+`K_HQidY&^Fzj(?~h@lta;ihCkeI$ukLko zTA~S|8a8jfA)B9hQjKMlRuv(RH<9P8*8&_@Ug;*-N%R3KRkYFu9ziP5DF02siU@Lp zu?H>2zxy!@Hvgc+$1R@mFa3;!QP~7q z%f<;M;$LCWl`1M|;*hKGSJ3#a&;t$10#flng(`v#yv+r}Uxilkmo4A;pc@|s9E2WT z;ma5+2Goln9X^6KMK`Z$9;M&h=?JJ`3Hwronbn?a(DFwtRXPkP-^d;&fI&XvZ{{Q2ho)uhpbSI^eo6YMRjJ_q%gE{>~clL-U8+ zPV_ed*lk&l#dE7Su(*1#xJ1ReWRE9n1XR>-!iPib#wF6Ha{QgwBQ|q1m-248AYe9k zGy2bIAe1)`Cfh8e`)F!RSHe%GHF5O!WO2XR4JC1IX?D&cZ+PIHrk!tGx&Udu8dg9KlevtXlT#8B3T zv0+F+L1X<2k#Z4%331WUgTa-}!}EvUZ1&jFON_M7%|`Ua-I`B31uy6fuq)cR^k78p zrx2=z+cTT+me1J0+FuXYRc9=i?;= z2Oopv(vVdM(f@qAHEhjETk_jtTm=E_6+M3|)`lq_jxlK0VFNCYn!}F0jA3qG-q9jP zXZ~)Di~iO8uo27B#Hzg@(wf4HS$<40$r=7W6V|-BtB(${J>k@(X_HTb2I^JN1jGF5M<4gM8)l9TWmIp4W=8 z*4d=ry4C&~0^#^VI}4z%&MS%w?;Gc8oTX=bA9jiON-m7yE69#MRBO(>K2g z-sAJ*mpH5PpoQ-6+-_GerGN$Bc%&`C6EXE-N;gLE6GQ>SUhx`?Y7zu?B|wM81?3CT zo*syWg{fdhntm1cWO+YK7*V_ZfTndiy$ycpu}p2!MKgPT+1YZW6+6TOo3@18WFYB9 zVB-^Z4SjY-;-rFfz$`{|KMtltz|#@DqW(1%DpaG9UqS442r|~mG=A)3k@HvFIE&bW z&HlSLgAo{p;^A()_MS%HPR0+kyfFH9fFY#&c6wLT+5PZ}AuMCJIB<8rx%g5hZ72Qb zy!%-T+xPU6&tPgGl=@UjCUT<>~9|97lblTDf_kY@L<-D`a!3rFJ@(0<$a7U zPG!gVoIGU5n=`$r_vb$YTVDR(x+!Mr3?MHXn!cgBw;5WIU*M{VZFjC89SSx)w%ME- zdh!rDdVy=;MVISUVEjjYLX4FxRkknAwaF==Fgw+zUedA(C|A}lg{*eZ4d#%f3(jXp z`7!RHgdFi6HN@rFkU>8${>@qToZ?4rqw`xKpD8xGW$bzh=n_c7fiSuy4mMkqCC>N$ zGV1o@*#tU#O|ST6V>Td0yb0Sw-ss!u{p(4CSUAA4ud+)A*Gp$TCH}?`rKgXzSi7{3 zfZO^dhx!#k<-;V=0Nu8GuIIyEBRQLsMxtn(#ah5VpfB>~#XJ^afG6u6{X4~}X3NiPA1y_Zxl4T#k(I*s4u=n~hK9Vb# zD^e^!O^H`mIVpFz8y-Mbzm9`YXYa5sT#fW5Bw{)oIZ`(ib02NAwX?qhb zr0x7mIHJ}F1y36?Qadl`J&V333aSX~FFrM-0Wy+We&a~pbTicP(=sH<$OEzA^-DNMhHYA4(t|k3PKe=Gm{V0IW0Y=grhvNFzbhRwNF(vKm{Q_)ZEawYN=;60(_X$;NevoKByA-x- z=me*&loQW!N#k;NNp{?|Pizf{UC z{3!(@kUN&`i(YXaB6p6_NQ^aM**tPL6Pk=e$d51q(jx5i19+aHEd3&X3PgN!&S3= zrZG{EjFm5$c(yE7*1?aM7q!ovtW&$OdA_z%Z`JtRRqDA;cKxpWz^pMOfrE{fI=kI0 zYRc~`N-kBE{wg8hSr-a_E~mMae3dN4Z~U3Ov)MQYE_=4gJ$)=mArzLeH*Lq8m%8Zj z>j~W$Y8Qhus1D2kJZ-GeK<2IB^ z37og{leu|i4kI{(rs~>u^M7OlpmFVv{Jhdn&ORBvuu{v3^e&X={SKkzvDal*q2!OF)U24ADwvUBd8v>wv={p8U7d80EJ-_XF(yREu!sg4Kj%Q1c9cS)fTl z>btrUwWl4MvDzcoLdoq1t?5fEN#DLWMX`5}ADIGeN6U*4EqA|$lCGVpthOFA&`~_1 z_pO=7lE`Wk9=N$=cvUVfSXO-?8qd)qkjO94pK?dSI)68=R3~rwUhuH| zuB+E)wZwPROix8{yiDfdft7`T!kwuNV{V^JYUVzv-AhOb#?KJC?Gs-Ohdc?)lKYv` zCHDDU?G2$%qPyBHu#AQ9FP?CIK;jIcL+7)T-KA4sM1Y6dc$Cb4iA%&U->^?kpd0e; z@4kNIDLR=idFJ@;Q}-|u|7_ux2n!v-)Nnl5)mCi~-MjHcaJ&=p_YBb6Ik2w|ff)R! z^FRM_Bm2MKSNi7=5kW$gJn|Vdlt=q?upthIK%lYfLZ4`fP)-ZQ}vK(4)&jf78q2(pc+Gi$GH_Y5jyAOSA zESQjOF0J$^sk`6F+oykN+-nlQ0la_9u>(#y7)%8lPGMo->FX?s=5~f~IQ^3UEUP+7 zO7<8?CDq2MWd0~;hdB7Ip8^Pa8)Eu#;vOS0p`!*;H9wEV5Kml-^obg;*StbPC7p_L zZoXPX8^n4-Jh?2KOiCFh?-jj{i`05R>Ddj}o13)Ht1Fm{49g((qTIMr)Dx+{&F1YQ zANw|4P0qPmz2MMK)kdb3i04+%E)rBqqn9khRVY~GQj6x+erxnZ8qJc1Wv(uuR_&Ea z>kU2EB29EYNBmT$>Pc_Imy_fW?%Y*Rw21O2=Yx_5W4AKFK_|njp3X}f zwn@FAg^di`jkWEBs<6D)N4>aF?z233jva%8hpug&`Tfp??|!H8xXAp%Wv+$rw&wVm zDAMkGuoj-Nl6iI2%j{Up*|%4jXO_CqOB`$~9EX$Hw018U(ZG4xeyoivmo`GsXB?)y zL^!^j*I&o^g?gaQQj&ULbw3>~2$cFCerCrX2@#(Exh1KZgP6t1V$Zh+yeoCrX;rED zi#I2(b4}kheECt&ynV1`*Z~^TkUk}{YIxP!H zIq=fYVtz$UM&<8UxyJBC+$?>!QvsDX4H1DF{D^<7x=s%cy0S6+|JX%{gL6X1Jz)%h z@}A46l2d<{+MQ*AKuykGd-nodGw8x5>pi)^dcWQdz~9<6KO-rxb^6oY{nbE4^N*$%n3FWtzwi6iLK0|4buv7}Nba ziIL9(%=R8IO^u=YML+AwmlNDe48{B1rOEsy67jk^KhMp;MWbqO2>n(Y)l*8V>!Al!h_PxbN*-Ama(d@{l4JIdv~CS-{$FkBvae{x7hbwY+sOvoVF zs(|fz#Uxrm?zX!NJHBSxgn58(<)}|KC*k|8>e*;o0(jAsLm$fnorkIF@;Zx2>hg^! z5}5)Ws$e9A*1buNO2WT!`r+XH**~{*v~G%TB_`SaSd!WMn&r@ZMe4af**7OH<;w0A z&QArQK2pQLL~O(Lkl$QOgtxopPzLAtq0ndXN0{2^z3pBfBu8TEPijl4p5qaO$Q0HZ zsGXUc&ODgUMQSw-&|+OE0+k@;CG!rT>t)fkP*n)z?vZ~N%>T24-%q)rL(>xgrT3XG zfCa6;6naZjiWO|n={vJ7KJ?Sqr&&Na9q7Vt(Ya97z$I{g;V@T^4%4SJaO4t(p?s@< znw=TR37saL>eJV>Z73b-OaPKBZB1D8o;6l|r0#A`I|p9y3~Vq~Wu_DwGNmbf+k%xA z=837nJ{}dXqs32XY7bvq0w|UIp)xD^gML?7AeD%w1l)js+-kU$U*}G0;Vy~v0sq^R z;M#Pj`}C_uq(*MdrCQ<+HmLRer9*>_R#PVK8Pla4N$KA3dGwuQ89f0{KpM1>sW>#% z+AHJ)|FUc$(<-7OHMDdK_wnFv+{<}%C{;uFWWAv<56~NbWf2^HD>U?-V`^qsZgpyV zy(3LF>4>}7>au50y%VXAz`u$+-P}~(gdeqZ+L*=v7g^F@{MO1>|f!9PM{>&vx!2AWah!sD|V#3hqul`!uM*Q2vc@`;E z!7wj$SGzkDu#BjWwV7$Hlumb8vUh(5@>ns2;#0^epfrw?^d_pW(@#+9UU_8jrApDv z6EZb%Z}RcNJjlUh9IxzbaWA@e)`AD9B@u(SS}vm(#R($wH_T2Y%<9}L<0PA=hLJRP zM2)XzsNXn)*h{&oOP9Q<_er!)w=8f;QBHxZ~NhIcP4cNgM_LlhH5k#9EcTDHZ@RJ%5in1F6B_ffQ+^S-+Ty+Fl{yj0bY7c z3m%z5e5+w|V;;R3MwWZnv(Wi6o}4+#_LRT^W>PgfR6Y8Y3pRd|onLXd;EKOR>FAc} z8@t;lI}Q9Ot76wVwq(j$c0oi-5yu8`5%Pg3>|h0TqxcRX{+xfJz4i z1nDK35PD0fk&xVp`|fj|Q}#K}y+87V%vx(^)_m{#er1LjBLhu_lbk0Z5D0^|mWBxg zLX`tPp(l=mmen_Pp5SXH(DaV4hNF+YxAS9PXHO3ZBp~x;q7viROQ$0i=g*vbf7XS- za`CPa%ZgD&sG3XkJC!ndqd@raNd6pVrKcZu2!u)dJDzo&jQHwAxgEXTV`sjJl$?M%qouJ&#_h@VdB+RTyI&eKWx6)gArL-@wuY){K<4@^ z{1MN1i}V(%hgJ4C)WvLCW}HQ+FTbMM>~VQmWPJ z=+sF=5%*3vNoh1KFh6kg@ze?0ItCq|y@hBnTJPA6o9Z@l4@_+`7mJS*FY$K%JaK2Q z3E@^={_e-Ox$Qd%cWc_9m%JR-3E#iHX$e`qc4gp_09g8UPQ6X=^;1NU4+6PFO@9Ic zd7(m04S@(GhC(2pPyB~womXEwxeoO5!1?L zs*;MOe79`G!_4T!@D;0P9B&P&{c<;06PxoaT7m_W=Z&qu^iPmN1TPfR_@##?moARR z_xs`&$5=+)&JJ=^?kon30~KxM2Bl3ZNDnmBReJRg5kz&2NDJ!;#f8=I4@$!enO z7a`?(s5CE6qj8nA@>W^!f>uqFwu)CuSjD;keTi{H045A)vA@G$)cD-+&t6h^4)4#K z)YU?S$69LMlW9Tng1PgbzcOFTyxPW8Y~pN{8sy@h@kmHjm9I`X`{l*&H?3 z38r@C_qy4ynmwfj=fPB z?c&9w?3C}051z-yhFN$tB^wHPP>ZXEtThGN885kUYz1hz48$-j-iS9+%AuISjf*74 zY~PpMez*_)8InOL8S@)@cqFWX~Ve>b{{r|DiPgFN84qG;!jI< zIbkb)r1kN7r2E^|r?r^sl3Y2qv+mr)=N3xNZs?#_ddip}DC^rGai!z>>UkO~gY+m; zK)G#dkHlEOOPDe3Dpd>O?K=5~YhToxf?vIwqee)qda`OvJBP-eARm8ixot+^^Xe^! z3it($GlwxUJlhTmgE9K3n_fS|9|be@937QR(um*tR8=`t*Zx-M3z$x-aI}K1GC+WK z>#vsL8QbZBoA>OPCL)D?)0oaVA(ifDEo$rsrJW90%qG8Ad4bzL8^EZw+j2GWw5-im zPJDBxi=B4B83p*4(t((AFwlU@EUanao0_zm3agH^m2|+6gqU`Z(u{rbnon}%W}Zdm zP_Ty@iY`1uU_^|8U2!QTT(H2kRYdgeV!_+ixFin^>-6yGA+Bl;#B(2|ds}=7%YvyL z$1ZpcYAXpr^EeFE?rhI-eND_P@96y+*zikLYD8N!Chu)Zpsuop479U7g_-370rFE! zFn9MWXw_5J@Y}j54>+a$s3m8yz$S%>g_Rki#jni6ryWP5SL$c55==S^2wPCK{zG5E z^oGc8Nb6tHMmGfrh(jQPOyGV9$1_@52;>$Y6%{0uMN0(&xlj9V&58FJ(jS_@Yfgg} zm9Opt)5!4W!uo*np|lwd3c68E8Ty-%MZ})@CJi>>yZoRFLFUby4g+uVMpATBp|2f| ze74^YJ>`>W$!)D~&LZ{*x;9*GmtAza6XKA}v*J-0Q&#g#8C4uWhCn`+d^-MTR4Lf_ zZKXM1*An`>;*US$nyY_%k!Cxq!1Uqm>SE@Vtd4j_?xMLls+GnNDdWMH{h3NP*?hyJ zqbs;Kawwx-hsQ3hPi1%3{DP>&HS}Is+QWRBQVEKnPHGf1T~hpfj*&N4BI-tQy?4ILcQ(0jm}4jWXm7dItm#Z_BqOIkD5Ejm6p$Tlh3!R>2Id8PriD@XzNlaEbsvA^ZafUcwsUEiR{R`%0oDDfIJ7`K zeWUS?fx_#WqNPKc?&W#(MO+7=FG?;bMVOVjAhsDVaycbvXjSa?QIj)vdOS1y&*H*) zXU#efyJc6|6U?op;up@OO$bhMIf5r& zzzL3o*nJzDza5h=Lm!huIFhbssq8V7682yE{&N4XIf&~*3gj^ve*Qt53@7U3r$2fE zuoqFsMLhbCJoCI__dNnD-S-nQ(J+7Lc!=FagKwf8ed9bHz&Nbv3PcN1t~{lojE{&c;}h5UwZz7x)$E2tkc z0?voVM%9#Spmatf?fx;lZ>t;~n3P~{J3W~vKVQ*EAU*|hvG;fdDv~;2u~X=dnC8j| zWCvUogA4o}1L>vnU1|&&_`NMsN3USIbh@V2U$pY@C9Pr_zbIRGQkoB4@3VOtZp4{{ z`qtb)bQhlaXJjM9=k|4C$0x+MR4|CxS zr0xqdcj$x5X(cohC!`B#E}hn%aK=e-Q%wvstB-)JTAeCh~5$>=swLi z-m&L?<2jL+)d&J~MKSx;I7|+4$~M*v$i%++K(FMn=~l;;phILES4G6HvxdWU*7`&E z#m79fQM6|Ow5Q^XiX9di)(rF?v|UZ!@~P7QQb&+|nd#|Ih&!mgU;2Evxh~UhJJJh0B9t9a zzag5yk+5!wo41knto_+q8-z=*1ENdQ+nlwf$b8syO>_k-zmlV~x4uo@_6_uo0Rr$I z;qew|)1^Fb*2}X~%kbvu-UPksNZl)LJ|U4v!lN;bc>V|W4;ae>&G(UZg?&a}jX9Kkpt{52Z?Y!IM-4JGAC}q5`CbsNlL|W}f*d5mK z6ecsJf5fK;8|Yo#`5HvlXQFiOj8&vlQJ0Q@t=3jwbCPq9r zex9oVmn69r)hrnOjXXCYyKm(U6fjYpR*pg0B6XfAt(BsPR9GL%iabMW7&! z74LVrJg)R8c2S5T2UcYJ1dPLf|6<|C^LpyX0`caqa!iB1et-Jx86f6BHibzSPl7(6 z*v;?0(i3BNrrldVfkU7uIR0wyWx=+%#iGooF^qn4BjI($ST&{V-r?5QXN(Dx9X*00 zvwu#Nf;sMHKgzdI{-mm*fr82#h-k)t$ft4N+3Lh^y1868U|PCYu%1seCV|m4b5dWmS&4W{h10?dm@yXmUQMfk2{9ZPNTxRsK`H@&DdTEtEsi zrBZ*|`PJ+Uve}ILC$R@y5Qq)95VJo0qv>EK zMD-3%IR|k2Th}=HIkzbJPbA(@+I1lm1T<>zbk4UMdR@JDvcAp8dIB%UfR$$NgJro0 zQ^vCb0$1<5_97d=+qby+`i#?61|G1Ijb9>)K6_`f-rmat@dKE!6HtN}vFLvpOzEJHH8vbBE+9r>a^z?4Umf`%NS{0G zXwPF|Rl(D+(&=`GG=$}^!#10#zP5+dZzfvZ_xo%Y&u;c}esVOXL?eK<0G;{ylI}mJ zZ>T7Z4+^;`%7ZyjI710gu#f2|(*YP6#)Lnj57E&O6rkT7JR;EW^G8h-dDWji-iK)U zp!5v9b~||OsQj+DLxMaIB%wwT4m0~iTgssR?eEUtnl{@UC3y#6j z@=6B_21P}KpwPteXsk!l3@6afny) zZp-X?^ARxMTsvlR-4)q2>vNujWZ(j+k@3e_em3y zu;2&cyW7U3XK4@Efgo-&aTlr2e!p53oH6z-1H{fic~i+D@EGBWv{Roq_kmSmL$fsK zlUa0kHe)bI917UT*V`+N5(u`l_qS0ZxUkkok}&`(l&JU=U4jvC2JY%CvPf8ca?oDs zTN>6}A~w#FB%DKRKNSRJ9&Aux3Iq~OaVj8~Uq&){G8;D<{f#B%xBd}Jwk}))eIF7zfNx2jFi%Jabb1dSRZwcwaO&!3XYf3G^ExBR zah~1Rb5jMIx%5e!2@5^l2UAET2RciUKl`YF)z|Aj`GS%H02u^~+S$69x4qcC{7Ba- zuNyHdJ1bQm2%N@kuu8t9a(m!U#PR7snnlDDjV3S6qFG31bB~n^Q)A;m7%^eioed@ng z2;hp~p9ckiUDts~KMa)PH@!}hlDgWr#cRZ&r9vOB(_x?xcyDP`_03O5Y7B!cxZ*S;xoNx8xQiOqP*e8yMR3lr+^Zwq14gGZhYH zf8w;{8eDEri>RzkP&oZ?+KO;e?4KP*L-z`AOZy=~y=$quj$GSnzPMk1u6So!^H%cE zKCjGPyERvd`oW}h2;Mp8h#65C79G;yDiAC^FQeG7n~1}ZkIEzZWL?+84&dm;eA$x+ zdsDnJX|uISHVDk!zKy9nVr-R1jl_P~E&8+3<8}FK`HVpkXR@Ix#GS5$k>=72+Mj#T zGBy{?TyF|H9u}qyS(x8yBL$JEj?g06)rf;dX*z{M%GZsygWjUG!F}laNdu0crS+(< z%=Z$5e^n94+k=`seQfpPsv59~J0vz=gfH`c(k9eX{?(i&+gWM!Y77iuMijN*UeUR1 zJqk)?l7z>?DMJWlakBrfCEcBGW8ZTFRR-N=^=LG0Eo-tqQ0CrLg+~RW2qwjY8;1kw zV?oLl*}*&KTeg2V?Tlz@z{Fq-YyDq^cno{fIcfsn!jZ|6_vPeuq-dyM$}0s|WYx^|uiPV#vEw zh4N0qtAWL}`Zfj|!KRakzuTp(;yM>Qv*EQ(nsK*JRa;@AJ%yERe=$4s`Xx5Jy!=GG z*Ub==)O3pO(K|lc_AoOxcl37`4D8@o=kMDH6!Ufc^SV640?sQj{rcqxD0#6yfuAY6 z_dszUER`=I9r1o=rMkI~yn92ql|!Y_W%?U1^kmUmMLK1!OW@geUH%wJ)Nk(Qv3ug{ zzhLYVJacMHhe4M*3_XZn+~BK^yj*gphOAyaX#BY!8j{l1?;t{_%v~rzh&JVpOW#zo zTa)1GZ+H4c$Fd{eIcG_STnr^`v-}{R`r+dW@3=#Uj7lEZQ__V6oAMq%#Yx_kd;1RR zCaCa={9?}fd~Dpb&-^sD8yIR%Nuu?a>Vn?|smi_BbO6f`zEq1LpLbt@E^L^{!aZH9 z4n6^Ocr2FDQsi@t1As-Ev7N9^XG?4Be#2}rwBspVhDW@q%xV5NvrF=@!=)?bz1_5} zp?u$lZK~e!I#NAP2e`QVt1)vN6<|I|q%%||ZrW5g%MN30NyaNCOBDLyrO8Xv8JI&n z@+Il;?5$MI(#JtIze1$^MOL_}&>1hKZ$+f1Ma z*?X16v_dM9LaT|aT*e1n##^zZ`>ivlPQEb>sT+0$FYfmJ3HoH6WMWsK59U3+f)xC413RUm>nF&&yxS%=w6HaWHeiHfm4V)d46LPGDi554)0$Uk5$4LQJ z2*Q;LbYjPn&NyzF7k986YwOxroBb0;PX*aw+3b+}@kcYL1=o4=B=Pvvr8prI@r_u$ zF2%rjuFXkZ2$^WG3qn@0pn`(x8>FSwgPJkZQn#qR_ZZolg3F{4lb`jy0i04LAJ zuM%zfM*xbN-DPkVlpB!`I8Ik|bLfE!nhD!C?dyGq) z(CuB!0gEky_`q&lPifxNEJ%>A|5foCGweE!pqxr>{&U8zaxT48hXeP$({LIdnHYM} zt_iOmwB6gCfNEWKxhBy1_P|+JrD`E`Sn+yV$H4;$*yLfIyM@jhzggz1zyw>#flF1c!j@Xmp0Xj5AOLvLdt;9U78F#qvDIAB z0rxpTIgVa$LPr^>giY?5*EKYhOnr*#yPg!7AdQw&!Ji64ahI&*X#`!tb%TyEHn+VZ z5zMxTppfk%lv*TM!OXO@DB|GJy$wdP048w!ENqWE5fwA)CvZopyDhtawxsUQEiCt0 zbXlCV)cq4pJJXvssiG7{@3(HzanrTLJB%rnVk8heVaqc3k6q9{KgYUraf5Ird{})4 zfg2gyoy^zz=3ry>-B|kD`frq#CB6wUq3x%fgjNkY!bN#opZDUZe1qR@uvBFP0Y!^l%(z>*xfnp} z=Gk*mX380-ao;6iL#Lx+!&NLx$A2jN zDKKHsigk2>8!ddN!_bB(zkRY=oTbBp3sqV1tKHmq!8?HIJ)qK;MZTl>PG4dd9~akv z!m6@pMKW_+YPAFkJa6BK=)$}}7H)c2U-aNKZP;PQeeYt@9SxU9m&I(3rl7N-APQtK zDcZWlyy?ZlB4fE;Ymp&!>3rJ)w^6N>FqGZb&~kL@A;&H+3Z8A={mKt@KkDEQS~IIT z*^I#7`sZNuT+Nny%yv)6wm6{d-+1!3@_tYXDp;!!gK?fn!&#z>w^?`qu#^i@n#Vif zLc~SY$PV<2)>pC8l2j!efojCsQZru#an%kvF6eOFpcoqxK3bN5PpbbMA;MA#AJOYf ze*#VH)eJ9^X&qNOw(3PI)$@W>;7L$-A*X>_iG3$(hEE z%Xsp|OdF~ZCzSYP1kC$Clolu{qe99Zb3<15Sx_4XMzEQD(aYv|g8L0IoD5y6k)0g| znK5vZ0jyEfA52BTZ2xPsHo6`SKz!Yw?cD5Wngce^NI5Ub(&&W0+cKgE4lxKMl>Ohf zSylK)`nTL;DOdT7eM&yI&nv~qc4~rfJyCSvFknSenX*@-hyE}E=+*@7cW@25*nS+6 z$Tx7qcja104sT*Fu0ybc?nL{}ZtTGVIwORy+#N>)stvIC4&R{A9N#wRNn8pW?4_ZE z(RtVw_Yeri?eQ@qg&3OXPZjF8-iZx%?+YL<%l~-|*rNq7D~7H9Ejr3F{F2^)O-h-B zUN;?|<&hm;#*=h1lER2mC`ZgeAX>8}JrdR-yP^D3H|YIyniIXNNxMW{_60wN=<1G-0dCi>z$meR`_(q98 z#yaz=kmtbUn31SZuK9jhN^0|`IXe6O0Yyh_CSxn_ElP`;9u4;gMnlD^UWaV9EFVA~ zoMvktn=uJ2US0nbEe#97*4!O;ovQh`u)Bthy-T_>G0Y2lOkE1pEZ}ZBxIb^f#F@^q zh5QnsT`zS`jzPRhipAD8$fkCNrro>#tCDTxuV=|3qx)%NnhIj-%A?U=suY z(5i$BQ+{f#=M8jG>Fzco#s3(AME4k2>I;?jrAKdLGrUHa+n)6_N63S*8Akjt)V@{( zqTmn2j}UUM>L{{p9mjRRK3e%iGB$I*3v&x?KO zEEIW;tzVfPPq7uKH^sIf`XZ5cxJk zhZea)0@wrQjd$@$u3adnF!Ek%cSvVR%`h+G`^(~uj7Xvf|4APeJKa=}{`2Fr?_K4A z73V~JwsHu1f7L**LykS$HcEpu9v`6JNBk<#N;t?Fc;h%R%DX2ac+aN@SOL zG=|>2i_XqG@UriU09XnOyq0}T1kFyH^jgFqBU-wyBJTwPWQ914upS_T@)C6~gy@Tb=X>Uu2!R;AOr~}CbHoOLBnAz$Cd#kL>aB6w z#4tc0qgvLHJc~Ta;2zrorY~T79-_iL?5T0>=p(4od{7_dHA=lnOPuBY;ZF~Ntf=Or zU_f{3kg>UPcb-16km|AlC7l(*Ug&|9R#hq|Uuz_`J3)VwMrD}RGW-K6SaCJm_Yx4a z&v7{r;!9*9Zpjv+I!b#LK#8Kejo@=0cvoypF>&LGq6Zyc@&3byoFFn`OlJNpj=IiQ zF`VCGfsZ{SHu-@^ef~g^ao02_Xhtnx20Zd-SoYq*uc&)RJ1VeIce(>C*zQ zHy4PNX9lqw_c<8zbl?%a35Mfd@yNo-`*pKgc$#9NA#S6mJ>^eK&V$|#lvKQ4o+~oB zVw$^p=kY+Yw&FQtZ+GxO0KUqLO2e`r#^B`;yDLarS@2f|8uR)dTWiRMc+L3osAEzb zSEX7lhacZZl@PjXjozfQk5H?%ZiLn`f$=xHYQZyVqv=k!u(`d}OxZR9GpAxfeQ zjQM+i)7bX=ua6&@S$-H*^#6%VgvOoB?-Y|wUG+BYzF>mtV_lR0rMUxS+lEb=n<)9d z8=2(#RLFlq@G3CE6|X+S50W#sufDi7S4$@ac$juwFd2VCS<8u8JEyofB%;2B*lC}n zuP7&uVP1Cr?nCK98X-pi2t>#1^Zp%#To+R(@6k`Kmzv_W&A5?=n;zu}$imm|$oQU? zP4z}8$$fIq3(Q>n#%95HztCo)J9(pQ=E-|n%J`2hEqRXAup={xRC@B;Cz(FYnX@n5c5cMA#(+;M($6tFmOZM6Au}`p ze;(B2%;A^SCg5Sfp}M`|mateiy`mSNcI@n?JXZlz`?AXy+}okF1lSK&LlMxOMEnHb z(5wKDq(PN`Cd1fX=&Wgwh+nt11Cv&G_jW=0z*w<-$s6G&;So$1%OW};j8DIXCHmIr zHD)m?oXvOO#m$I~D3=D8viXJwb_pYvgvXz}IfM&$=JU5Rf%8N8+I8f3=#GWAy27Xa zw;v>-2)kLRl1jahWA$3x#tLIm8rp&7!N^Y@jI4(`|ZuEhN%)X7c)XL)6VhpbN2b&MX=!QjURlJ?*xfK{EEDWtCe8s zA{Ly> z2{C5ai=iNQEoRt?)Jp%TzdKu$NopD>Q_ZOG;hp0(>#mjxpDYUSnadtjEf}{CA#2&i zirm}rHLCp@AN%BmEkDbSQF%1QtNL+gDVf-0FBj98>?=ej;T zRd+p;cg2`gC#}NFexl$){EBPN0|L%|w!NZ6SB0WQU?|46ySFvD&15v3AH7ubbzV+V z^DSKsr6};MAE#$HfTd{T9x(ADij)=`V2NWZS-ms-ct8WJgyv{OQG4@ROj=q=g}m@Y zAVWdbn%TYY%!Mrx81pKdil%2Ly~@*G{9grpe|WDXL16v+@E1Bw(_u{v_zHNXlYVnM&d`jzO80&KweG6U&OQ`DX6oxv1WUqAS=>zV3-xe3 z(@8AUmb0JiY=1kYIo>=uw1cg%$t+JIz5?@$!nAU^u~;k&EQdm?N-1VZ3Nedw@J?6f zT!Ew_9zW=_B{0vRTAOtJPDpwIgiSSnZ5qhZaTY_2mb=zpO;t*dbcJA{*0uJ=Z$iP0 z)_9!4)C=~mYua&7c68e>c_7^g2W;gy(;>gpp!bcW)_+hyYu*306ZdV@(N#rg#gzZ; z>6gW_%8NZp4+@*j><(!QphMB zOObj_dw2I6e^`@b)0EQdTvePVr_DDu{+JNSF5P*GRFlNiaTo2SZBIm;Ta$_kBO3#= z*74L}KXmHNp?X$PeHB>|C@N)X76f{kDm zO4#;qdGh~oO8I|4e}ORH^xPC31hSx|t78Aoc@L9yBi+%R2?80`cVSurR=rJGh0FCI zoLd&e2CD=tb3-8E$ex=gUg=UpwBBxp99=8%t4XEpfWttNF>z!31MvU{^hqWw+<{xy zWJ%#%W{rayA*x%#a`J2iW9h#2!jpHqp`6(lbtg+G+7T0-oEYxFlcL=ee}Q4KPm-ZK z9G|e!b~Hl1uc2WZRMB2)KV9vaFx=7Th~jl#)X<>@waqFl!%Ks;th>ucTV!^N(btcx z|2hTF(O%JXO9v#PoI|{R^B5MY2cU@}V-}H^$+oucH-bBziwYC$O>H-=_STK7j}kV? zG12o`DHHUM{y`2#mZXtkR#&UqbC;Lg9C7v_(G&;*mP`G=s~BZM#njJjE4uqezgZr`E>)ub2tw7Ulo@e z)8n)p3C(|fQ-2M3n?FSS_iMePy;Ao?hipY)xr5RuQ_jW8lx(d@gZ$L;_eMXc(JlO= zyo1iofZ|orRSFbW(48QkERwV@>*poB7`H+uh8|tP?mGVn5VFp8c&r7r7#s zj^C(d5J6~XSi~$Ua9AItq^|4gs~`?nq+VxOsr#+=>0_&w3V}+SketQg1ADG2`}^57 zLbzzt&6;oPx-Cq=;dnPW+W6M}lYM^dZ?i#2WVs+?+V$fuNxahjwl7agtUQ*t#JW9) z`9(69v6*7L$jfq*69yK9xRe#=JXe{BSowpEqV#0i0`%+0&TdGxOU|oFYJb~)((VxI zEz%coTskrH%9fhD?FJ}ELz8LhkaVRV!_;Fenh_tMHDOcDbjTP!E1_h6)<*T{4+W82;T-R`gO|KWy@e=Gp_*z;`Vc)Fh+5 zWf833>Cxf_X-FjkWGmTt+5&12IfWjv5|nc+6N4a-wWz0OAeSC;Tv7D<-bX3OPf(8Y z{r^$xzx=zv31n#N;qLgwpx~_Y;)7-_sWdQy>3ECokm)A|kWb+{Dr6EAHvVUi(Mp2P zU^K*Yvc9|Ly3EIN&t*sz{f>deW~rqqA- z#>jatFhyKnTJ$48hVrWX;o5B5B~n_NJpU|K+B`rut*!L<^kTXvrx=2*MM|r_>r$Ir zDcug37~FQQYwdDEX@+hCM)bO<*h@vh_&FC1n54rg-PdJx%0 z{2h6X?MLbUWS0*s@@01{p2=h4k3gtAYj!AvuO%^bh08+&c<=x2e>DCF^&`RV%=a|A UQJoA288Jlrrh!I<+WqJM2fpg+ng9R* diff --git a/mods/psionics/psionics.dm b/mods/psionics/psionics.dm index c610b4702d28a..0ea1b7b746393 100644 --- a/mods/psionics/psionics.dm +++ b/mods/psionics/psionics.dm @@ -1,4 +1,4 @@ /singleton/modpack/psionics name = "Писоника" desc = "Добавляет писонику с Final Destination" - author = "Твой никнейм" + author = "Roche Hendson" From 23058919b1acc6167521c4a37f3dc617d8e6cc8f Mon Sep 17 00:00:00 2001 From: Lexanx <61974560+Lexanx@users.noreply.github.com> Date: Sat, 23 Nov 2024 02:30:29 +0300 Subject: [PATCH 05/60] =?UTF-8?q?vrode=20fix=20=D1=80=D0=B0=D0=BD=D1=82?= =?UTF-8?q?=D0=B0=D0=B9=D0=BC=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../preference_setup/psionics/02_abilities.dm | 6 ++-- .../code/complexus/complexus_helpers.dm | 2 +- mods/psionics/code/equipment/psipower.dm | 6 ++-- mods/psionics/code/equipment/psipower_bow.dm | 4 +-- .../code/equipment/psipower_engineering.dm | 28 +++++++++--------- mods/psionics/code/equipment/psipower_gun.dm | 4 +-- .../code/equipment/psipower_medical.dm | 28 +++++++++--------- mods/psionics/code/equipment/psipower_orbs.dm | 27 +++++++++-------- mods/psionics/code/faculties/coercion.dm | 12 ++++---- mods/psionics/code/faculties/energistics.dm | 14 ++++----- mods/psionics/code/faculties/redaction.dm | 2 ++ mods/psionics/code/interface/ui.dm | 2 +- mods/psionics/code/interface/ui_hub.dm | 2 +- mods/psionics/code/interface/ui_toggles.dm | 12 ++++---- mods/psionics/code/null/~null.dm | 4 ++- mods/psionics/icons/psi.dmi | Bin 0 -> 31329 bytes mods/psionics/icons/psychic_powers.dmi | Bin 0 -> 6801 bytes 17 files changed, 80 insertions(+), 73 deletions(-) create mode 100644 mods/psionics/icons/psi.dmi create mode 100644 mods/psionics/icons/psychic_powers.dmi diff --git a/code/modules/client/preference_setup/psionics/02_abilities.dm b/code/modules/client/preference_setup/psionics/02_abilities.dm index c65fad995f604..d0c3a9fd52441 100644 --- a/code/modules/client/preference_setup/psionics/02_abilities.dm +++ b/code/modules/client/preference_setup/psionics/02_abilities.dm @@ -39,7 +39,7 @@ GLOBAL_LIST_INIT(psi_threat_level2free_points, list(3, 4, 9, 14)) . = GLOB.psi_threat_level2free_points[psi_threat_level] for(var/faculty in psi_abilities) - for(var/level in 1 to GLOB.psi_level2cost.len) + for(var/level in 1 to LAZYLEN(GLOB.psi_level2cost)) var/level_name = GLOB.psi_level2cost[level] var/level_cost = GLOB.psi_level2cost[level_name] @@ -59,7 +59,7 @@ GLOBAL_LIST_INIT(psi_threat_level2free_points, list(3, 4, 9, 14)) W.write("psi_abilities", pref.psi_abilities) /datum/category_item/player_setup_item/psionics/abilities/sanitize_character() - if(pref.psi_abilities?.len) + if(LAZYLEN(pref.psi_abilities)) return ..() if(!psi_faculties_names) @@ -112,7 +112,7 @@ GLOBAL_LIST_INIT(psi_threat_level2free_points, list(3, 4, 9, 14)) . += "" . += "
[faculty]:
" - for(var/level_index in 1 to GLOB.psi_level2cost.len) + for(var/level_index in 1 to LAZYLEN(GLOB.psi_level2cost)) var/level_name = GLOB.psi_level2cost[level_index] if(pref.psi_abilities[faculty] == level_index) diff --git a/mods/psionics/code/complexus/complexus_helpers.dm b/mods/psionics/code/complexus/complexus_helpers.dm index a355703d8bda1..b5919a30757d3 100644 --- a/mods/psionics/code/complexus/complexus_helpers.dm +++ b/mods/psionics/code/complexus/complexus_helpers.dm @@ -93,7 +93,7 @@ pop.levitation = FALSE pop.pass_flags &= ~PASS_FLAG_TABLE pop.pixel_y = 0 - pop.overlays -= image('icons/screen/psi.dmi', "levitation") + pop.CutOverlays(image('mods/psionics/icons/psi.dmi', "levitation")) pop.stop_floating() //FD PSIONICS// if(pop.should_have_organ(BP_BRAIN)) diff --git a/mods/psionics/code/equipment/psipower.dm b/mods/psionics/code/equipment/psipower.dm index 3804d76e454d2..1104ac894dfff 100644 --- a/mods/psionics/code/equipment/psipower.dm +++ b/mods/psionics/code/equipment/psipower.dm @@ -1,6 +1,6 @@ /obj/item/psychic_power name = "psychic power" - icon = 'icons/obj/psychic_powers.dmi' + icon = 'mods/psionics/icons/psychic_powers.dmi' atom_flags = 0 anchored = TRUE var/maintain_cost = 3 @@ -12,8 +12,8 @@ ..() */ -/obj/item/psychic_power/New(mob/living/_owner) - owner = _owner +/obj/item/psychic_power/New() + owner = usr if(!istype(owner)) qdel(src) return diff --git a/mods/psionics/code/equipment/psipower_bow.dm b/mods/psionics/code/equipment/psipower_bow.dm index 803c16db32107..a78dbeba05507 100644 --- a/mods/psionics/code/equipment/psipower_bow.dm +++ b/mods/psionics/code/equipment/psipower_bow.dm @@ -64,8 +64,8 @@ maintain_cost = 2 draw_time = 10 -/obj/item/gun/launcher/crossbow/psibow/New(mob/living/_owner) - owner = _owner +/obj/item/gun/launcher/crossbow/psibow/New() + owner = usr if(!istype(owner)) qdel(src) return diff --git a/mods/psionics/code/equipment/psipower_engineering.dm b/mods/psionics/code/equipment/psipower_engineering.dm index 960670e6c88ed..944ace1a13cac 100644 --- a/mods/psionics/code/equipment/psipower_engineering.dm +++ b/mods/psionics/code/equipment/psipower_engineering.dm @@ -6,8 +6,8 @@ color = "#0095ff" alpha = 110 -/obj/item/clothing/gloves/insulated/psi/New(mob/living/_owner) - owner = _owner +/obj/item/clothing/gloves/insulated/psi/New() + owner = usr if(!istype(owner)) qdel(src) return @@ -55,8 +55,8 @@ color = "#0095ff" alpha = 110 -/obj/item/crowbar/psi/New(mob/living/_owner) - owner = _owner +/obj/item/crowbar/psi/New() + owner = usr if(!istype(owner)) qdel(src) return @@ -105,8 +105,8 @@ color = "#0095ff" alpha = 110 -/obj/item/screwdriver/psi/New(mob/living/_owner) - owner = _owner +/obj/item/screwdriver/psi/New() + owner = usr if(!istype(owner)) qdel(src) return @@ -155,8 +155,8 @@ color = "#0095ff" alpha = 110 -/obj/item/wirecutters/psi/New(mob/living/_owner) - owner = _owner +/obj/item/wirecutters/psi/New() + owner = usr if(!istype(owner)) qdel(src) return @@ -204,8 +204,8 @@ color = "#0095ff" alpha = 110 -/obj/item/wrench/psi/New(mob/living/_owner) - owner = _owner +/obj/item/wrench/psi/New() + owner = usr if(!istype(owner)) qdel(src) return @@ -257,8 +257,8 @@ color = "#0095ff" alpha = 110 -/obj/item/weldingtool/experimental/psi/New(mob/living/_owner) - owner = _owner +/obj/item/weldingtool/experimental/psi/New() + owner = usr if(!istype(owner)) qdel(src) return @@ -307,8 +307,8 @@ color = "#0095ff" alpha = 110 -/obj/item/device/multitool/psi/New(mob/living/_owner) - owner = _owner +/obj/item/device/multitool/psi/New() + owner = usr if(!istype(owner)) qdel(src) return diff --git a/mods/psionics/code/equipment/psipower_gun.dm b/mods/psionics/code/equipment/psipower_gun.dm index 7044a84143944..288b7fda78d24 100644 --- a/mods/psionics/code/equipment/psipower_gun.dm +++ b/mods/psionics/code/equipment/psipower_gun.dm @@ -78,8 +78,8 @@ self_recharge = 1 //if set, the weapon will recharge itself -/obj/item/gun/energy/psigun/New(mob/living/_owner) - owner = _owner +/obj/item/gun/energy/psigun/New() + owner = usr if(!istype(owner)) qdel(src) return diff --git a/mods/psionics/code/equipment/psipower_medical.dm b/mods/psionics/code/equipment/psipower_medical.dm index ce815dc9e4a8b..8a47941564380 100644 --- a/mods/psionics/code/equipment/psipower_medical.dm +++ b/mods/psionics/code/equipment/psipower_medical.dm @@ -9,8 +9,8 @@ color = "#0095ff" alpha = 110 -/obj/item/clothing/gloves/latex/psi/New(mob/living/_owner) - owner = _owner +/obj/item/clothing/gloves/latex/psi/New() + owner = usr if(!istype(owner)) qdel(src) return @@ -59,8 +59,8 @@ color = "#0095ff" alpha = 110 -/obj/item/retractor/psi/New(mob/living/_owner) - owner = _owner +/obj/item/retractor/psi/New() + owner = usr if(!istype(owner)) qdel(src) return @@ -95,8 +95,8 @@ color = "#0095ff" alpha = 110 -/obj/item/hemostat/psi/New(mob/living/_owner) - owner = _owner +/obj/item/hemostat/psi/New() + owner = usr if(!istype(owner)) qdel(src) return @@ -131,8 +131,8 @@ color = "#0095ff" alpha = 110 -/obj/item/surgicaldrill/psi/New(mob/living/_owner) - owner = _owner +/obj/item/surgicaldrill/psi/New() + owner = usr if(!istype(owner)) qdel(src) return @@ -167,8 +167,8 @@ color = "#0095ff" alpha = 110 -/obj/item/scalpel/psi/New(mob/living/_owner) - owner = _owner +/obj/item/scalpel/psi/New() + owner = usr if(!istype(owner)) qdel(src) return @@ -203,8 +203,8 @@ color = "#0095ff" alpha = 110 -/obj/item/circular_saw/psi/New(mob/living/_owner) - owner = _owner +/obj/item/circular_saw/psi/New() + owner = usr if(!istype(owner)) qdel(src) return @@ -239,8 +239,8 @@ color = "#0095ff" alpha = 110 -/obj/item/bonesetter/psi/New(mob/living/_owner) - owner = _owner +/obj/item/bonesetter/psi/New() + owner = usr if(!istype(owner)) qdel(src) return diff --git a/mods/psionics/code/equipment/psipower_orbs.dm b/mods/psionics/code/equipment/psipower_orbs.dm index 5bd3f3f4be504..6ddcb02f951b2 100644 --- a/mods/psionics/code/equipment/psipower_orbs.dm +++ b/mods/psionics/code/equipment/psipower_orbs.dm @@ -124,6 +124,7 @@ . = ..() /obj/item/psychic_power/psielectro/New(mob/living/user) + user = usr var/el_rank = user.psi.get_rank(PSI_METAKINESIS) maintain_cost -= el_rank @@ -328,6 +329,7 @@ var/flame_color = COLOR_RED /obj/item/psychic_power/psifire/New(mob/living/user) + user = usr var/fire_rank = user.psi.get_rank(PSI_METAKINESIS) maintain_cost -= fire_rank @@ -344,8 +346,8 @@ var/pyro_rank = user.psi.get_rank(PSI_METAKINESIS) if(combat_mode) var/list/options = list( - "FIRE WALL" = image('icons/screen/psi.dmi', "FIRE PUNCH"), - "FIRE JUMP" = image('icons/screen/psi.dmi', "FIRE JUMP") + "FIRE WALL" = image('mods/psionics/icons/psi.dmi', "FIRE PUNCH"), + "FIRE JUMP" = image('mods/psionics/icons/psi.dmi', "FIRE JUMP") ) var/chosen_option = show_radial_menu(user, user, options, radius = 25, require_near = TRUE) if (!chosen_option) @@ -369,8 +371,8 @@ /obj/item/psychic_power/psifire/AltClick(mob/living/carbon/user) var/list/options = list( - "HELP" = image('icons/screen/psi.dmi', "HELP"), - "HARM" = image('icons/screen/psi.dmi', "HARM") + "HELP" = image('mods/psionics/icons/psi.dmi', "HELP"), + "HARM" = image('mods/psionics/icons/psi.dmi', "HARM") ) var/chosen_option = show_radial_menu(user, user, options, radius = 25, require_near = TRUE) @@ -591,6 +593,7 @@ var/outer_radius = 2 /obj/item/psychic_power/psiice/New(mob/living/user) + user = usr var/cryo_rank = user.psi.get_rank(PSI_METAKINESIS) maintain_cost -= cryo_rank @@ -608,10 +611,10 @@ var/cryo_rank = user.psi.get_rank(PSI_METAKINESIS) if(combat_mode) var/list/options = list( - "ICE WALL" = image('icons/screen/psi.dmi', "WALL"), - "ICE SPIKES" = image('icons/screen/psi.dmi', "SPIKES"), - "ICE FISTS" = image('icons/screen/psi.dmi', "FISTS"), - "ICE SWORD" = image('icons/screen/psi.dmi', "SWORD") + "ICE WALL" = mutable_appearance('mods/psionics/icons/psi.dmi', "WALL"), + "ICE SPIKES" = mutable_appearance('mods/psionics/icons/psi.dmi', "SPIKES"), + "ICE FISTS" = mutable_appearance('mods/psionics/icons/psi.dmi', "FISTS"), + "ICE SWORD" = mutable_appearance('mods/psionics/icons/psi.dmi', "SWORD") ) var/chosen_option = show_radial_menu(user, user, options, radius = 25, require_near = TRUE) if (!chosen_option) @@ -643,8 +646,8 @@ /obj/item/psychic_power/psiice/AltClick(mob/living/user as mob) var/list/options = list( - "HELP" = image('icons/screen/psi.dmi', "HELP"), - "HARM" = image('icons/screen/psi.dmi', "HARM") + "HELP" = image('mods/psionics/icons/psi.dmi', "HELP"), + "HARM" = image('mods/psionics/icons/psi.dmi', "HARM") ) var/chosen_option = show_radial_menu(user, user, options, radius = 25, require_near = TRUE) @@ -678,7 +681,7 @@ continue targets += point - if(!targets.len) + if(!LAZYLEN(targets)) return FALSE var/turf/user_turf = get_turf(user) @@ -777,7 +780,7 @@ continue targets += point - if(!targets.len) + if(!LAZYLEN(targets)) return FALSE var/turf/user_turf = get_turf(user) diff --git a/mods/psionics/code/faculties/coercion.dm b/mods/psionics/code/faculties/coercion.dm index 14f2fbb815029..52d1205f9d5ab 100644 --- a/mods/psionics/code/faculties/coercion.dm +++ b/mods/psionics/code/faculties/coercion.dm @@ -64,12 +64,12 @@ /singleton/psionic_power/coercion/emotions/invoke(mob/living/user, mob/living/target) var/list/options = list( - "Joy" = image('icons/screen/psi.dmi', "JOY"), - "Sadness" = image('icons/screen/psi.dmi', "SADNESS"), - "Fear" = image('icons/screen/psi.dmi', "FEAR"), - "Caution" = image('icons/screen/psi.dmi', "ANXIETY"), - "Anger" = image('icons/screen/psi.dmi', "ANGER"), - "Stillness" = image('icons/screen/psi.dmi', "STILLNESS") + "Joy" = image('mods/psionics/icons/psi.dmi', "JOY"), + "Sadness" = image('mods/psionics/icons/psi.dmi', "SADNESS"), + "Fear" = image('mods/psionics/icons/psi.dmi', "FEAR"), + "Caution" = image('mods/psionics/icons/psi.dmi', "ANXIETY"), + "Anger" = image('mods/psionics/icons/psi.dmi', "ANGER"), + "Stillness" = image('mods/psionics/icons/psi.dmi', "STILLNESS") ) if(user.zone_sel.selecting != BP_CHEST) diff --git a/mods/psionics/code/faculties/energistics.dm b/mods/psionics/code/faculties/energistics.dm index 385b743d5051b..39ac387acc60a 100644 --- a/mods/psionics/code/faculties/energistics.dm +++ b/mods/psionics/code/faculties/energistics.dm @@ -141,10 +141,10 @@ /singleton/psionic_power/energistics/spit/invoke(mob/living/user, mob/living/target) var/list/options = list( - "Armor Piercing" = image('icons/screen/psi.dmi', "AP"), - "Explosive" = image('icons/screen/psi.dmi', "EXP"), - "Piercing Charges" = image('icons/screen/psi.dmi', "EXPAP"), - "Standart" = image('icons/screen/psi.dmi', "DEF") + "Armor Piercing" = image('mods/psionics/icons/psi.dmi', "AP"), + "Explosive" = image('mods/psionics/icons/psi.dmi', "EXP"), + "Piercing Charges" = image('mods/psionics/icons/psi.dmi', "EXPAP"), + "Standart" = image('mods/psionics/icons/psi.dmi', "DEF") ) if(user.zone_sel.selecting != BP_HEAD) @@ -284,8 +284,8 @@ /singleton/psionic_power/energistics/storm/invoke(mob/living/user, mob/living/target) var/list/options = list( - "Explosive" = image('icons/screen/psi.dmi', "EXP"), - "Standart" = image('icons/screen/psi.dmi', "DEF") + "Explosive" = image('mods/psionics/icons/psi.dmi', "EXP"), + "Standart" = image('mods/psionics/icons/psi.dmi', "DEF") ) if(user.zone_sel.selecting != BP_MOUTH) @@ -406,7 +406,7 @@ continue targets += point - if(!targets.len) + if(!LAZYLEN(targets)) return FALSE var/turf/user_turf = get_turf(user) diff --git a/mods/psionics/code/faculties/redaction.dm b/mods/psionics/code/faculties/redaction.dm index 34064f7b23bda..bbbb27d3a6892 100644 --- a/mods/psionics/code/faculties/redaction.dm +++ b/mods/psionics/code/faculties/redaction.dm @@ -49,6 +49,8 @@ //UPDATED /singleton/psionic_power/redaction/mend/invoke(mob/living/user, mob/living/carbon/human/target) + if(!isliving(target)) + return var/red_rank = user.psi.get_rank(PSI_REDACTION) var/pk_rank = user.psi.get_rank(PSI_PSYCHOKINESIS) var/obj/item/organ/external/E = target.get_organ(user.zone_sel.selecting) diff --git a/mods/psionics/code/interface/ui.dm b/mods/psionics/code/interface/ui.dm index 032cfcaf8eb68..d681bdf910656 100644 --- a/mods/psionics/code/interface/ui.dm +++ b/mods/psionics/code/interface/ui.dm @@ -1,5 +1,5 @@ /obj/screen/psi - icon = 'icons/screen/psi.dmi' + icon = 'mods/psionics/icons/psi.dmi' var/mob/living/owner var/hidden = TRUE diff --git a/mods/psionics/code/interface/ui_hub.dm b/mods/psionics/code/interface/ui_hub.dm index 79593dc1eed4f..be3a9fcfea887 100644 --- a/mods/psionics/code/interface/ui_hub.dm +++ b/mods/psionics/code/interface/ui_hub.dm @@ -86,7 +86,7 @@ A.levitation = FALSE A.pass_flags &= ~PASS_FLAG_TABLE A.pixel_y = 0 - A.overlays -= image('icons/screen/psi.dmi', "levitation") + A.CutOverlays(image('mods/psionics/icons/psi.dmi', "levitation")) A.stop_floating() owner.psi.cancel() owner.psi.hide_auras() diff --git a/mods/psionics/code/interface/ui_toggles.dm b/mods/psionics/code/interface/ui_toggles.dm index 5faa69d2aa3ce..0fb4ccec9b93d 100644 --- a/mods/psionics/code/interface/ui_toggles.dm +++ b/mods/psionics/code/interface/ui_toggles.dm @@ -27,7 +27,7 @@ A.levitation = TRUE A.pass_flags |= PASS_FLAG_TABLE A.pixel_y = 8 - A.overlays += image('icons/screen/psi.dmi', "levitation") + A.AddOverlays(image('mods/psionics/icons/psi.dmi', "levitation")) A.make_floating(5) else to_chat(owner, SPAN_NOTICE("You will no longer use your psionics to deflect or block incoming attacks.")) @@ -36,7 +36,7 @@ A.levitation = FALSE A.pass_flags &= ~PASS_FLAG_TABLE A.pixel_y = 0 - A.overlays -= image('icons/screen/psi.dmi', "levitation") + A.CutOverlays(image('mods/psionics/icons/psi.dmi', "levitation")) A.stop_floating() update_icon() @@ -71,13 +71,13 @@ var/image/disable_overlay var/faculty_id -/obj/screen/psi/toggle_faculty/New(mob/living/_owner, id) +/obj/screen/psi/toggle_faculty/New(mob/living/owner, id) disable_overlay = image(icon, "cooldown") faculty_id = id name = "Переключить школу [faculty_id]" icon_state = "[faculty_id]" - ..(_owner) + ..(owner) /obj/screen/psi/toggle_faculty/on_update_icon() ..() @@ -85,9 +85,9 @@ return if(owner.psi.ranks_stat[faculty_id]) - overlays.Cut() + ClearOverlays() else - overlays |= disable_overlay + AddOverlays(disable_overlay) /obj/screen/psi/toggle_faculty/Click() if(!owner.psi) diff --git a/mods/psionics/code/null/~null.dm b/mods/psionics/code/null/~null.dm index 9269576877c03..363f29cfa8d7a 100644 --- a/mods/psionics/code/null/~null.dm +++ b/mods/psionics/code/null/~null.dm @@ -1,3 +1,5 @@ +/* #undef PSI_IMPLANT_SHOCK #undef PSI_IMPLANT_WARN -#undef PSI_IMPLANT_DISABLED \ No newline at end of file +#undef PSI_IMPLANT_DISABLED +*/ diff --git a/mods/psionics/icons/psi.dmi b/mods/psionics/icons/psi.dmi new file mode 100644 index 0000000000000000000000000000000000000000..266fd8388ecf8202ec1a8b6edf67dfd603910d31 GIT binary patch literal 31329 zcma&OXH-*N*ESkJsUjdCQiFhW1f)ty=tZT8QiXsZy^2&xKt-AqQ4ytu4oVY2L|UYG zLPu$#_f9AYB>6V?b3gBUzH!cvGe#JMon&Y4wbq>TDsvHIY^Y05%RvhQf#~)1wC;mI zWLf7w)Re%HP5DYo5QtnMKnPRwF-D7Gai;ImVf;(`BU!$a!w39I4PSTVysHCWPioC#@N&|dVAsvGnI(>UTQ>>4O?C>dXp%vv{h5pY8B$(jEEo zR=9B_y#C#$&@{n+#dM0-(({1bdG$)>$UE_*kwQu6(?_}NZItWaVD$+0N$Qs;?@ELE z-Tc2&JvsE)*i@`ugjL;v-hN9dLr`(3!PcJ+iyaLjVV75#4m zXxevrdiO-s@xIwC@W-xdH!HO0+mO~0mYyPF>6$!AxOW<`@AJ|Isy`Ki^3frEiO<&8Fv~yk)Ikcj&V;Nq6eZS-4MvU71e2TCWLT z^vQZsMi$=U$R+4oa1r+Y%S&HF<)sPL$;!IGhT-Y2PY{eP_n1bNhw(?NApDmAjt?&g zC#n$++M+^%{gYJ33G^p>G7l7e>K*73JWn7+y^3*s{+>j)gZD_O!(6?dhLbg8h9*7e zRT9Yw5dGx~Mr7+k^|Zn*l;9}be|x_*_M<-K=3DC5%MPdCN_#yG*f z;T}1GM3YJkM_#-)MtDAYPEZmimLB^vwo%DD!y64$0)D!Q)=jGvjYn z0c26L@(~y6D>9Vaxmvbo?&_t&e4_8V(i!wL+#rnRP3LbFFzOv0X)AE98rUgFyeP0; z4__OK$eS$N_~Z2`E=Ds*PmC(vxbCCgg?78&tqc~&iG%D&_P#isgRG>|ozugiyF)Ir zNIxCj6&Z|QfBJ%(iwj7d@q&75DrdUk`Lm=?Z^@W0s52%=8M-dS#>QrGKYsqT*d~B0 z=yEB6E8ZUwCSH5Ec2wJ;n%d`O7!XSHq-t|lfb`f_9cRC;AQ z_+zxpL;_dG*w~(wU)QF5ms~|$ zl%H||Uyym7`SJ2_z@lRJaKXA#6^Q`esT8RDjhAF>Uo*|5%lzDv2^9SYpBI9`W@1`?<43; zUaIjwV_4egMe(@3(j_=zxuzk*QA_Zzsm+#^i3yW<#{lapB#=_rJLW%a3ikyr~ic%^ElCp3N&PgPtpkT)CxQB`7=57gZs} ztavq~F9k&vCB#pmp?0)RpRzlUN{86u(E< zw1Lm@hpTVOm7$vtrgW98w(Dm!J6Pn~RX?&;vKurA%9{03fg0u6EyN~|W_KMQ7?Li% zd!)eoOBVd+K*j@JO{-s7xG)s9-O@&a2yCu~p+CwdLDt?k`ob~cPkT}d$SMZzdShF3 z>d7<&S|1tn#NNIL)3=sxwJaB`EAK9H5@6=IyG#LEYFPPpRgE}GXHliXi9*bY6J6WP zr3gu^iliQMpNeYsv_|YTBCalx3}oiitHG$YjUrv!AddfJyzp)7HFPcvk{Mr&`W314 zYK<2NFt|IGG!>?8qIruIow@F2ZV(9WmNC2=P+M4aEi-+yh$po50tg5_?$T?PH@Lsh z58t#sDtJX7Bfk$nntYb=nS+B{h|694Gg=o4{djnkO!nw@z@4e14YvNAr+8#K3=zD12Rp1KLTN}=~=`&Nt_@KRdJ zw;x~}-_XRf9?angVVgStRl3hk_z7tqkHu$GInkwo_z6_pDhAF`mG73H~?6(aP1d8rGr?7)h4&?b2| z){y_hO_+paz*XG0FW(dA?24jTdprRoG|i;BAkz+OU^#f|hO~~$DV?tA zQ2dPJysbdO5xko(+BHxATg5K?@R7607Y>7ow2xo$rVp)LhY$VKfO)c5m0;ZkMPP>;Rt&-u zMDS5G+tCB_y6WnLsMA&xM|AJ9==Prhei}IIEho`CXU(lEpLdR;}zvdi! zH%#ff`V{o4WjyKG3YP#Tm=iSHJSill7|P9-klre!si{|cAP+3Q1>mT(R46w^OUt#u z6|S>DxGM13+%f0#>v29Ghx~GRS_v~ev>~rVdYPX$@=xH?`67P&HnXn5;jl}5fQ*c% zk;<)wLb*@hOYetbz+5^cWq$K_rRH_My4?@bS2votcg~oYx9jQk54_q&9d`I{V1<62 zBq>EOF*MK}|NKQ5t;p?DdXy(q_c-y?GMVz?zyAX;n-=SbdYN!hRxU8%vrljA}hDW%g2k+Rkfu zbZ94~7}qo_b(MwM{X_aHGag0xs^wY@f?IVbN&(01+ zHNq8EI}FxGRW23f;tf}j*p5s@K+{=GFKYWUV@~4Bc_I9qFW)Vx+%Lxva3%Anb{UzS z%UN4`s|G!j@6h$*H}!wMwnf(~+tqwY249$qfIwN3nDI~b!mt~pJ~s2L+WZM=xEvpc z@p;CPW?hoGp!s*=t7?e5O(WyFf5zw7<&kGu$_V^R9nQfSN2RL<(aEUKfpk519UEc@ zG{)-ve@;q^rh)Se{nR1#j(6`(-#|XS2R-cnt9Ex}zZw~4Q)#bISdhDViFtKUh1ahk zbsG|NKN*ty_uHY}v&dJ2UK)2~maQHVvHg_2l=Q z=&(;@!A@AvN^@cHm$mIzLPFN}qB%UE`JEjyxm2t2fuy^9b^#&WbOx(1jSbwVIT+~7 zaHs!gUgD#yXArD`fIpm#;{DL>ogJZ1+rIpy=8JthV6Mim=-z-7ktNq*^{+9w#ZcyFTu6zf3OVF$}5= z#i4zErwxpa$=h_eczCE--@m_a?IZT7dG_&BF4RIo{x5;!cvZ4{U&E+mB*`t*^XLI?Oc9oWpP<%4JPr)SIDQ-7F^4P5G1SAYvc z$SZ~mP0Sc}o+Zi=x(ix@>T4L64kZ$nNX^G$COlCqupbQ3^h)2bxI3XY2N@HkD5Qs< zIW1nJ6?DAF)E6Z^H+1{n5zp0+dp0-<5PxweCp^>gP*#x2(4jfskBON>5^uD~nzKKu z;L}sHcY-~6Q1jkYYN2rQaRGWCC1tw$UUWw_O02_h?wC|Tm0?oQlW+hwsC|q(70cg< zp-QofJl-u54XYRml#`X!lczSHNt&dMm-@IY#<}s~!-soOxYelap3v~5{XqYxlth(d z+q?O!yQ|t{SBl0DTq7*%^Ts=cr>9as-E@)P~H*kaDsS zb(EC5UQcg9t`$BXdPcMFpp_O@45T|D!pV?%J(Ir;0(xslqHPe1s@4i3;(js(72A%x zW##SE6Ni5u&Xrjg@aGc9`2@Ic z%^k@r=atc)_z$8&z+=dy_f!e5Yd)9@8@Abfkb#Lsd1ozNJ@&S1J84N3YKn#o zpZJkjA6;A54QL8I145J+2&AIVA6_7B$;*hLQ6g|v4*GRd@wxIahkGdhL3piPRkRLi zZ4$qmg38ODoxc$(cbi?3{!$iU?6YD<0NvSpp|zo&+L1Tbb&_^7e-rmsfAiYv8#bpc zw9l0jzgiDREYk5gp?h^!qB1%&U7u;&Mgxf4*h0VrjT3^aBl~t-bV$Z<=4}xPo@C(2 z>0!%+S%@k0^x2Q)y7gX=uV;XI}I^OFN8 zRi=c2_gS3aTo&a4bR^VbifCdsrgwXn?u~nbm?(=s4*oYF7njHep8;JSRfxd@2$X_R zG&ujw#p>x2$n)ylGyO}e_>p_{(Bf-g1d$3TKvz;A$Hz5mxShw}JK`H}f(4&X3D<>? z+1=6DXjCpdaGgs_c&;(#6u!j)NF`yv>dT2>_=Mkdjk}%NLl^@C(LmUQGFxe`8vJ=4rD!>u0kxS8o5PTk-Zjd zYWo+yzk-I*XAcB#!Wu7ua@GJ`(B3Da@TUCp-ZxKXAw#W|s4+=OH-FslrcFO&SA|@a zOu(p?CUM5+;w~ytyXQws11|5ci6g~#CoJLq6(TBA>DxcEHaUnYBW9%&2 z@7?aU+AW^gbr0%qFHry`ktZhV-avZd%gw*7qHM`P9x5j+v5ouuJ@Mh=*Fq6RR4W5u!34bwkze@Nsbi z3bC*+<>O?at4?=&)HMt30+xy_iFX_3CDmBhFY|_I@5>|S8G$oG$az0NI6=08E zY}@|9O7waSA{*yCkg^Q zDDa^dTGN=`1bnC#(N=Tn286Irn{LY-5%#%kAM6|I8Ei#+RRZ09K7Bqx zw{G#?^Emr20VIr%z{q(cFn=av5{$j>1CY0#Nxu&Q&sEGuOVV(=6MmmKo_ME+(=Bu? zf zMv0-q4h|KD;{|7DO;23bOcft6+&cv`UUKj*T+`Ds3HuVJMY8+oNYXrPmQf}J$aisn zb?*COIsZHc;%ug~s+4w-;p`m-Q<+O|k-k|1@*A6Pq-F!Y4Qva6ifS1?iprw@Ba^{HQGCsd!MsPR;i8=uNZN@ ztD&5a@jd7}5x&j-^ImGSIhtyhH&3wYu`cHk_IROebJACHZ{=KVLR%w~ z+jDo(@h(<%m=L?{Km#luZ_^3%2puqW@Ut5oX+?(r! zhJe)8B1K2MZDal>dcKgv2A}_RN)U$aMK3A>?=!}PUfUL5`kv*ghBKG68{GFe!@sUP zDP)B;VRg-B&m>_@Z4*u&_#uarl^qBr$l|j!ojT|jiRe&r3d3kH{;p;tMv!np@@2$j zj&;x(_R3q9CH-&rG1M_7=P`P6%1P<#@R{m42f4){x0gmakLQI1`S~W!NA}6+Od?{+ zV!5f%(6((Z&0GFMm>F(=kV@(b8N3QBVz*}c>1r(E8&*X6O6pN7pET_|g^QoY7_`;E z+`Z&V-=#difPrUMbk9J50+GWjhOOgGR0?W_P9D=8BtwVG{|*-X;p*7E7bUUWg2lWu z-wwHCM<#wsxWUB8|BehXtwcy^m>Z0rvirc7C7Cut#j67i&EtVZV)iuAxaew21|MzfDgW z9s}aQFH$u zn!)X^APv7MBMgd3Vd~&^dM&{#`|)iVIawvQ%RKc>`7V(7pHnZJ&@(TPjbZ%c3-8I! zWe)zbPT_IqDN`%)N4`-!3p|+DzS+@H4bJ5+lAg>4i;qH0qJ4#Er9HpELeaLBQL-G; z<>*ZxPa9uEV#vf>; zGo(ic^4N^*6rBZCyma9epjqTDB#S-@sk{hcydbrML3RWlnb{9}hZXC-#4bF*1P=GD z>NT=w*%GS&au#OHpU^1Q*bVr1#&}cHfeTaV%vlhvhRUL4E|E=d(>IgXtARYih zPK`lFg&e(0mNE_LNQ3^-@cq3GSbf9{2Hf@>N)kB&t3;zR=G$xLm3O1c3EnlJsev&1 zl&II$E^Oh)h(_j{pVIC}V>3pfG6>OX5{6LY+TFK`2;o;Es}DTl^4e+SHPZkIEFZA_ zqyj&2Y(8%HzUO)n^z^$lw%Kj3;m;1m+zg$OVfB1vK0YvR%C7VHw9`MovnSEc`R@ywpaW4eGjD2c4MYJBOF~bIJStEt;^piB=vI`M*1p;mL|{{DH(PjX z=!xfJ6hqcox_1)98FD5+Ms>k%@pH#i4JXs}^%yR)*YFMSm6P~}?J^*pT(rc-i zWwT7L#)LarWWft^DQvhi=A#wl0HQ-YpVjoW)o6jL6KG)Pi1c?r&h=I@)Stvsa z2FL%doZ)(K6IZ(TZ8F~Ik&8&}z*RX=-ZJJgmyCkw8(<2k!oM^$)QnBXrzb+2`TiQa zlV#s_8cdKs>ks4@kG$#NX2nr(4=2m9`@$8jv+=T=pOk@&MkkejFOg9Pxxkq^VKVz% zV(yjeqypb0+?C*RgvHv6P_!X|+ zpBNQSCy%6}Z>OB@{mNEvQ=Y;>UT6bY-pyI4;DUEMnzaAC*9ZPG@m-bo z%*b7$GBim=OqYVo%;tp*L2hWpVr?TnyjDqR?lWYF<#_9rOshJ`Y*mc@2W3_W5?J^w zWVhMK$oQWa7Bf&^lg|0j=I-mZ60*3iSY4)0O=z;mqGX=lm=5{D8JKskEvAuYYOfzG zJ=Z_^R(8kik?IlT{x(Z(=FLWjX@X+jP8`CC1iDXIzEJIsob?mcEH!=qZZFFtdixb{ z!RxS@j?FZ04cO4(u5ynA-x$+dQ+xvxw-0CDVTvezAw zhgA(?wGnBtdeHJTx#|PtbUc4(SyBe?;p7p#$iFUfY4GS?%2gQ|ya~gL%c>_WIJ9Mox1$MMS=AuyxYjX7wU{aG;%{1p-RgCG9W4PVQb z^*NAgAV2_Hu;kh0Jma2{H>pwXJi|RZ5#6VbuNX!D3ZNg>th9m_N&V!ML7FlP&a#C2 z>Hp50A%07H2%Z8M)bkLZ{chIKJU@0y)wt)ODY=8_8s?CRnytZcW-`k!u;J-K4%{w2 zsbEW5vyH;F2vKT1ajAfnOoFj-_(>C^V@%`Fl(+GWQ$C_;NvSI9Uiyl}{R^_b^I9yA z%4G6)`nxq6Fp@KLi(Orjg++{qv~cxM#|t3%kI5I>&?`_eVNtD=SVJv}$AN0-dh1WS zUheKe*V-y?qQK#^#J(?UYCA$n0(#H{toN@_Ze+vLi+-o4d!sB%mZc0pehLKm9~I%{ zSV{Kv^j`>Wfc8Wf*ws4ea@y7g(Xd5E`n-7|_yW+}?w$T+xG`CUw{70XczWHzpC76# zoHQXky~oO*dh;~~BcqDV(fkUtP&8a+d)au|{lolG z2G13ny~6hzG`8<)(!RH&yd7fR1d(>XGMyVA?vDzqItT3lT+d`rIvfS2^*!nN z%JO{a`>k~oMrX?7{=Oe)XK(O#Ox}v)D>PB7ttKbipUSUY?8*fn$K;M}M5PX2ZQPGt ztSr$UIxhKZP>%RSHvJCrU2{bfqji5gP#O>v%dv=;fV{Xb`Dmc`chj6ZpgS($zcBzR zq>t-gx4g3@Bl`}sSJ;eUl)D`$@CK}9eo?lqbA>+e>btVbd{Q5{vcBMmD zod<0Jy76PR-G*Y~p!pvqlrJ&0c;-ZNs`#5!#viRbpQV-0gA~u)b>G$=76vZNXwEH! zZVowjNW@Bg|4U0K8{2hKP;-k&!X}R~-^w86XxO)z{7@&Oi(tK*wxvY6heWb-PHmJ= zmVm8hlnzWkzccaP^q*Y-tl_}0_e~qK_ z6_KDvItDDIza|Po*2`D*s*eal*^& zPub|A-6HL7?kmfL^`5!$ag&g04b1!Z335|AXvtEpc*vWG>gv=t;X#n@?kg$HAJYaD z<6TJ|vBYe=pl_xef;;PX$BSsOtab++-J5X1M@ms$GcC=x`o+RPAUl3sJOm9$v+pSi z&$ZIS^rXfGJUEUsD&d2#3rd7W(xyJ5Jb>a{T6@y%m~LR8-O;BIWpE-AwvCiy4yzBK z_i@%woRew~3jA*`K)=Qi{i_o@3yfWao>F9H`6?_Y9Q#_hz2s)trJntAlfjO~Gv$)< zC$hPvXTLZ&I0QJ&9z3|vGko9YUx{>@W^8^~2-6&KcZILN{SJOF8zt}0^%M_j@-#1- zBaEaCCOv(xSp38G)+tqULIt7w?e^KEx-8%m0Gi|0ID-uDM`}ch1a>Dp;(2Rj$JJrIoa%*9AM4Zckw;W)70EsExp0g3{6!{~j`4rQRlukN9)UWrJ)IGtM11l)R=L}D4rhTLfm*K! zzJFd8B2<)1O7r4gYWZJcxhB5dNp)e+`}b2cU&<%LKkX8PBJvTOO3BWS z5-3#fM`k8TJfO?C?&zMsjiwMKr95)azoWEzUDApt`?iO-^F8cN*uKGDYd?F<@%Eu2RGA*v!?Vz52x#`;Hp3ZHtF-Guj1udbF& zTby>@&ug@elB}BsfskR2F^>by%>JBeYHNeS|I7Y2)@Lmn?#K+gRmp;NmZlz=;?D&E zK5>?O${rFy$WS?xG@ZSmloTd|{}9%VV#bC2U7^^nkvqaMj53=of*JYFF>KqDzGN(J z1<*8{&qdE~KZhR(wDyzaBRCmAvJV&U9+m&CG#XJR4(PCO|6$oXE1rqwC@R+U^)Egl zW)3};J`g86Cr0`o&^sNf`EB#DaFFq%>Db)50NqYEMFp(gj!(jm_HHl@ z{A;u)Y){0`ubcHMf1?34mk9%C>jPIF;^0n~{BkQuYUj5gi}_DJV{V3X$THSe)y#DZ|MV9Hu>Q6a zDlE=rc2-ilCnPm^__yMU9O*nFOVA1V1!!G0alHLbsSXdpLb^sH@Iu}wO^31{K$=&J zr@e5jpnoD1hzolYhGECV#)++uYZMwhOM{7-CO%06a?IpuXrcR@!l&X-_N>w;e)0S& zc(04E!-Vvh5FQ@Sypa^z1q_A-JSlXiA!u41UU&eegI^`<+Myz69G&vE`nJF`{log& zMRT))+q8zIG52ZOs8^#l-V8oSN?c&@yukR2{sDwGg4DkkC7<(!4-9=&9_E1upmR1b zojur%|KRAg|5=@d`;xjw;J0T8UKyrO6F6{h&#)?Og0@{!KdLo+aoCqat$kv&b9$d& zpEHjO!TCI+Zb=uwqE=IlKm1k3mX6(T258~;3Q2hGpYuotIUx_CKIRh<3U+JX2#n(r z8r=7Ojqr0*s_nn04d@^b;f)MMz=c$Ri&Pe5&kq^|BEOvV98w+Z%jz~&V5JFqICIaJ zJ-});wc%doW}JEc^!uEMs8&O>P3cqT?c(Xn;&>*I{mIPPXz@V4VBSk*F}gzpO7ZG+ z5dxS5VPVlYE9AZruJA0alT;u{t~Yy@c1Bn#T4Q5j&AA~vZJ@ptkQae}6+YZeH54;} zJJ&y&>Q$uI_kA%*i_noXwzV_&BeFhVxdI?e7*@yer;!dckeqzu^ULP{Vz-(wKeyW1 zca$wn0K^-{198^^q@C-engz2(rF7E6Y<(WoJrt^d2=&DCeOr4IL`bma?t>14>3~4N zfWxyAzX&6JtxS;dZ|??s&>3z$O7!m#eR1jfQ&&R+s@ixA-Hpt!iv)b1Ser<|Ns&j) zJ?Ic_T#hpU7|B?Txy5F4+oaHsKlJdKuQUFEiU|(SI1^E55 z^4eqDxt4)s$lXNK6=Z&t-1GP!80g#~n!0>^=@`@@+J^r44X2j)@UcFm)k(7MFh#{U zMqztO{#}A`YR)K7JJE4GvyVLGI$6Wl=n)gkWc#g7vlL2VIDeLw{|xJ2WQNFCU66%B=tX zPp!*?9${_h>FMXwSXo({fU=g|)j}CtmOh@&nD|fBBC*W6u*Yhle4D&O9wq;N2&ss- zr)<4quS?GNB=djYHuz7WZuWX+pmPT>KpD+6|8FDo|8_~U6xm(*=qUsUC&Pgpg$F?C zMGE5que7XZrz5>?#Zq(zXlVmlJ;wd{S=NNg8iy4#&a<%A5JOsQ6zr|=b0>Kv=%&`u zy@lbJ%AG*OpP2o);Z&g)SY~UCYkEJ)VuUpMJ`Ko!@`4^j=7%J6BUA`?O{b;M$GW=og*E7p6 zXfp}!9-Ol~#jncmvj?YSAbneJEqLF>wGV(JMh3WF4>H|zRCxiIAl$rmmQt7x^7Fef znEgG$&yu; zRnYVU^Qe8@kEug!<$uV|NC+sgvWO8d-2RM(UW3ktx!=&hVFcd{^_u+_Cruhw-|b0@ zZJb_$^%IO5Me^PZJDaG#8-D{-BGhI;!UNtR}j zx&Hp3tYG^*ch#(`WwU#%|6e%cCeWMUxLh77W4u;-!39Ve zBuQ-g_iS2yTgme=iD~3II_>EKl9qWY?#%l*WbeCq?IX3mO!#@7$1+@QUpx~tX`E-8 zLai7GsBX5sfR(k$m)*Kq=GFEkV?!GK@~n7G<_|7KVKBC%S|4?;?Q0-_oY<-t%>)3D zasIn4SULVI0BAUD@!zeWpJQbJjiiJ$Uuh~+IiFc=DtY_oHry)3=B`~uLqLH}_Vasq zm?pY^<5X7+8*Asyt4SX70A0c%)YZ@W07pZY?KEc5;9J$17ha zSf{f?=5T`Xg)uA@=4WQ1VqgmNk-`Y^$TbZ z>KLq5Vqsw=?~B^Q%N);T$8KfER$YpcZ44{o`ThR)RnW%4{=fsW7V~)kAOY+9@u1{* zEDk+o5(yg}jah*jn@0hdNb!fCs^N9{6&U>(X>XuKW0*|_EMs6lxJsec#}l@gAwIT} zHcff3&vMM(+rv!KRryNEQdImtGXC&TxRlKbyM9+y_=I?DY^;36>8l9<&kAhna=p@y zaD>O&RC+Cc3SvXg!N`ICYKm8phU$1;R*DuHHRKzFcl+4_2&u>~x$S__z}9`{JX25l9wd>f!KT>8Xp1@M)nPHG zIA1#x4R`5XD+FtRHLAFNIR9A))4F1=!l%U%?)ExWRmQshiY>!08c(vz9{0~Ouaw;9 z?CojMWbp1-Y2Z(CHn7c9{C%BqV!5m9vNB2Bjb7~ptdlFL`;-WMV0-wUzy>T1fh2~z z#q2qQKPlwk!7>g6rzaHT5eHX_iYds+e63p{Sped#pjUH+vjIcmQ*J?aY?$=~%~NAu z5`8kgK#|0PU1KxW6LtY7v{x%^{0lj(7+PD!w11gUk*fCcjm?xYR}UTNe{3G3^pD9%e98;$9^Su$i#AoHj*Id6T>9@_))re1QN zupdmEpcczrA^oKq+HI&6EP*?U6aXd>sjvGT_J?p&3jLv|ZN}>xH)4lTmzI}e2wr!- z`DGtMXA?&ska>LdqVE>dkUKdjkFZ(_1F-!E@*+(Am3)v-$^FE1S2!-P^n}!NxU`%* zdaJp+u?A-OW6^K=ebUFVz}Gee>%rgvr#Im`oV_ZG3<0ctNQ$du z(gz{{B?0&dAT3j>VMc#m-HbKOj0BMRwcZ|6xP0o)j;E`JljY}Y@h4}93YtGF$9MPp zhgx)Rg!)(U;6+6xJ|L(dVF4*EF8mBvlO=AO#Q<5VV5eiSSkma#L#^0QmD_*qnH1gW zh0DCOef`Bg7G3jsppesDPPBd|t8N){woWQa5EK^E$DZkOlEt&0)YY-?`!(r8=KBKK zn~QD*SKhDcJk|P>94b8)8*&HTX|9wiA8ISMvP>>C+1BaoQwd9jCIEW9_A6iKCv#oK zfA5jE(yp?MlrJ7O>%Oo5B0|u)gL&vi85?o`*LZBG)~yJ^-Q@>c*~5VRU(l5ES@)z- zPMiB1#7%F8;t}!TP|jpH!0@yHBplR8Qmxwj`|9ORm{E}DLMNRzVSqXhh=!)hkcXRx z%qpa(?eoGlfFLi?h&Xy7JF+-MYh-fWDwV-68CB)?IfDv`k-P+>1f|P+LR8d2WdnXs zUDA$5QBPsE0-11LdTULmy|e+=dZ1VFTEFD*fqg6E%6LNPvSkA;Kuj!hp&KO8it%OC2H~}rqHS!d&XC|cWyDdP7hO@Csjt_-^zlb?{4Xrlg+hq9;ztrC zV}Y?ivHBgCB&LRYC?EEuJFGoYI;_xA>Q)zPZV9~#$D=8~cN!ec-?D~aPfM;?D`T~9 z?(bJ@TigKHiX1mtr#;8MiBDYb_glRPkGp?Ze+?d>kq$OV3@!82tr^L$uNop1c+~7a zeAUK3JuoSyxU?$9F~Bg+w(#6K732}IVzJao;K|S5-7_a~7#MGUT{+R@JkJ&2GRdpu zU-|YnDO~3t3YVkXlPZhDN(F^&QRg)Lp^d;5RnpT>jrUpdu98{$k8TJ6NoWCxHUaZ2 zm3^@VwIYq#oeK&wAa#ZSEj2)cWcqoZg(V)L>5xlj435iswzMT8%0g)`e98YKEGf;E z{J|+E#J+-OK2j_I2Ur7~JEE1%Z zD4^N>K^*AMsCRJt+Q0|{xwUnNgAD?;{8%>x3)G`?`u)uRnWzpZU_vx(+0|Y|+D{K5XQPsJ?$Du< zqNh`qmPN;>ZO`q4-~q3{=$;QbfMaw@0mPKjvQb(5Tos?2EO0Y*uAH3R&HTl_n0N7Z z#L95~&Yh9eVsA>YzgDWF>7Vf$VrUsDx@kpW_AnvO`A~F30c`duyQ%i<0RA$32J@Q- zF5e>ylHHn+c%xW4Y|gn=0EXjJ;c7tg*Z6PmaRf!clPC5^4%Wt~;Cu^4oIL5qIWvs* zL;*$Go;xK3NM^F7fSq!y{T9=$pyXMq{H;KZ`rX`^2-Ln4!+ z6pUo3*B~y1M6_nz)=$EoE*@L&pUNz3udiwW;7&y*1f<5r*AFuW=!8$~c$7cRyjI$* z7~Gn0fY!PH{ja3O%+gAeC>(dOy`Cbi^`IPknl|`fF4`~kf@jv^#>fA#M#1ft_TWk< zB=Ge?jvdlUoMLN235~7kKmc-<58)pYn%;eRt4aQk| zFvzB3xrtKPZ3S~bm-2^rx7_JvK=5OR=Pv-S%!bV#5f#flmH^xOJQ^{3UO*rIpVq7xq%aRaewXLBeT=P)H=g@yGdD zWKUW#k19N%av!fwWyWM?e_PA58Mdkmza5##nHa&&XwCe%fBHb2)eYEacE0B<#4F;C zBm8BwIdGNmFNmXbr1cM2{r!-yrA5FWPKCqQg_a`g+0}OW^U=UtRE?p}``v%9-V%)= z)4wVZlFRTvJMTD+^sfF-B{~-K@X0HUs>TXo%DC^?fv?) z06Eq|4}djXx6SUzpo~;Hwd~4w8AIh7`=P3XXF^N@+ z)-@;XiJqfBl}Q)uSt=Pty?>4erJk@<} zEe@Rr=%EUL33T0l%gK}!BrZ`yu$93ino|rYl_f71nYk8By$uv1o!=T!dZ+@s>A*5m zbTY1y=LmJvX;TU7=YU6zY|k;AfPp zitFpH`YbmAGxbEw42M0FVu9+I-wiX>cf-2hd7n$&gAv!BUzY=qVdYLMBu)bMJ7a#HhvPMTJc(Y_i5TcLtlt)J95{ zyt~w7CX-^fp_j2z<;tO6Ua<>Tb;C$Mz8{h{a6-VQn$>5AfEjbQI(@m^xXXVfqIamW zJRlyR=64RsiWj#Qiq=SLrljaM-e-VO1J0eC4_wp z`>4y~d!ut;mijs^`K>_OLHnj9gopB9dXURkP^^6!`}gJ@q-93(VfL3-tG_qnXL9Ecr`nf}OY@-!_|vC#4hJ>EGa;gv{kT(JqG zU5T6s#PYmZIbYi9UW|L|$OwYWb!v`!d!2aN=2otqBao96q0F&(}F}`^T$^vY@pqtp6 zHXhY9rSnl3xdZ=)!sI4KiOEdS9HEZaJJ$4Gjj!o`%ogC+uE!{HB*6iFS7p@?gqU&kyW%A?`;8KMw8|eeOrrp8BR;f8x2A%ntk2?v{G>2X?m{ z*FDf3JQ(DVc%JQ=^H@j zzCSp}qILiSScT>juPZMjicjVOUyL2M9@m?!$w{ahU&y&v!pGRKi>n%{!lqK9fH_@U ziQ^5**`|1x#(-Jj3$u6)a9_ZBy8txD`=Ppq+lQRn7=3;rUWm^>Ca8o$aO!MM``*i!2=IQUNyF#sU&IKm{(j2PpsW zYgo+WB?1jk9RJyL%>erLUtj2`Adl1_VQ>b!|3Cj1;9ZyQ4=hgKnB8o(P~4U?0Bs6b zHs^Bc$K@74(Y>+k2M_>FTw*J-HebR2KqueHN{3R`MVB|}ctK24jEYKFmv;hK%V1ih zk&tLeT@GDC$I@}GUX;|!GC@V&`oHnokade;5;?DU4j>L{5|&l;3sKYG>O*2_{}Jg# zbtc$8?}29f-vH+B;oRn_CO^;oJ!4O3UF!0ce1=v%)a!}BxWzWTCuK+6>#wfQe~zYn z0PN<3t=e8yZHXCQqBCDRztP)r+^c3h>V+u)y=a46l?Zw-8;jmyqhghP2rBxc`tCSm zBk33OyS3MUZdWLgRIHpHkN>8~)LNq$>~X1C2h+O>TuJ$Nb2)b~S_x~J-?(UzzdTDW zzu*Tj0hKRzkcX~ph)6C&S0SPlNdTo#p!2|ojzpzQb5W5(60WN zzh@M4NtYMCMD38ICJ2iZY*;lWYHi*NOmxkcI)SZ$iYYf6C4ng3o@dZzIS027$DbY3 zu%eoiQ2>x0D1}SLJwnd)cMts-OEg<_&_OO0uf|n3{ypQ=?u*-uixVb~>2=ZLS69?- zrH-C{)Xhh0*7Q|Ey>xWZQI`BMAf}4Wi{{=*N@OPh!-4hfs8l8m+C3p%W&o~1y_I|v z!do${`pi#+G_&i+vT;zvEp#81FpaP1L@_y-oF-T~I$q43TSv&|CGlQijUn3t#Ie$% zBI=JVnK$wedv!88@q>Ij%-?Ba)u>-aUo4A^jQkewwEb{U!+R-h6>qjbA_+sfrkDW# z+2ND=|03HigZ~$@)%qab-+Sq%xJX5Qxnk0QDjS!>oW|DsnSlWpcU|Rk=T@i;Q7;8Z zcsC`0%MU-#)gBhYhEUBx0uIqHkMOB6uC=v3A}vCL0SdYG>s z_#L|CgslnT`YkO1Y=_g()mG-wXaSr5zvtNtfk;<}Qzp8jzNhN4DUBT_n)!O?4})&; zLMdT^VLWkQ2Z?X$L}^9az(jwr-QsDYdt-Q*f6p10I)7{j6;koQrMU7>*zbYhh*JQd+2ocEyojJ6kz zsAbZ{q^H3MWEvRY9%_BC6?GqWHvITe$=enOt$$iQkw{q=4JagJ-o1z~|Fk%L!(LvY zcDB#%QyJ#=dP^TY=z{#Da+_Y`tlB)-F35O^XT}-vD9kNkYn$o1@5s)s;YsL#JL^kR zQ^(WM(L34;7#yjN1r?y?oY{fO+2Dupo|Re~|8lOx7UgPRsW1cxoYXmeoHDd|o~h(~ znJ{8_IqU5Ffi=Lud!3PtjvfTaQG;=eKB;VjooCR_^81+h~)(Q56GdIDR zRqd@SJ#t0>6hyr^_hZ>u&-J0H;I-y9dw<%ONc?JP^mVWz@lxUkQe{+~5TT9rhi-x) z2S@)O$o=&t`ceTU6qC^&KpL=*`n{ZNc}b8E>7l!xsjJi;+#HuS76%@pHGkhQw-%E}0_x{s}!S~em;XUao z%!>4&+oz`^9_F657|F30t?cZoi7#~L3#)&QH;{zc?%hYToh0Jt z1g+|PMK&~ODCnHAUwpDLzgWYkP3-#fW+&`qigxg3!et4M`|@T0S25PBS_wx++Xm`1 zH00iGP{E5Bt$cF(Yq(m12Cs_@4~p=Ht1ek!{6V)$({p+B>@Qs`IihwCXrJyd?@Xvb z%sTaU$>p!5jv1qlfS( z5nqr}LL`(K0n*KJP;AKm{JqNqWU_^@M?+>=K%#gUrN{dYHrn-~)+(~eDU>N-pjDh3 zv}BBykLn|y1kI_067pt=?jFj3MoN%R!O=}iCQK8uz}jxRrJHn=zON)Q>4V-g;oYv5 zvE(9-@tn8I*~5l6q?UT{9lm}6Q7exxXxGGCbs(LNr69bNYWKh5u24_xKtT2qz$H_} zSc};AN4IyGWjP(9)q4NR7Leg^-!+qWtqenmi%T6j6GJ@igZoFZPD*26qH~sbP>o zXSol(YL);?v{}Ky;ClcYTVXq=h!nLN(rs@8KNBuYALgowNMDBp3fl=ecs)s($m!el z5b&d&Jv=O_-*LjD4Zb94r*zm}H#D?B7iTzNKDW7K2mu)m`}Rm7DVikTBl-3r&`rt% zTbGK89QNI+ZE(h;lqUDv5^2N~8Pga?(~0o!T`d?H#TVU^-vz>|*R(RQ*%d zq*!~Y*^EDtR?mUaONQymQhxtL8UG}8)B{?5T{w%=x6NN;wP5qUhNWNAoD?kt5vRr! z6n~luRYN6riV)5$Z?7gy$t9$G-81P#NKO3L+ollV7gP3F$N^#gh~02N+`WI&+58vb zT+G=M>;W!X%$TD&YU4Hggr zKWHUKncIWs_MN&(t+zpfsmrys@p23q!_tbY=v_18;~3r`LDL-|hbG{fl?B#7AiDG28KHg&Fhylnc>%>Rq2i|H zL2n!Pf%5ri&LgEUC*ZT)%uQxM8^r3cBvAk*QGaPJV2_?ljF8f@lrTY3m=Sg+X z&~M=LFfvi3+eM9}knTMI8yNJH;2;-#0caMfqOO;bHD=vE=T!yZj>{qcSH=A!0YLbU z9Xy_*BY!fIc?J(H_76}<;{X+u;W$7XK0l`nd|}wYji^8n&H-c3k-D4e#R=Ln1reOV!$mAt z%8bIzom1*3U<-qJWe33W@s(6)QfL&D;3Ri89heMV$4uHC5C)UmHQRZU_K`^i{vqXD z$YqndMJ4qM4h&`hA`T3VE&OkC!G#0dRrI(x_-~OinW;0Qr*}%k$RT}0NnDI>@A9&* z_*oi}4J;~|{}~%FFA$**C*t`0{O%&_QayknX6FBp-CZo}PJJ0ahSDYAl?jNtj}DH2 zG68Xo%Vj4Mh=4kYB8mbR?)RFd?>t)p`<$;@c|pngysS6t;3Xak|-LJ=4_Q49=2p_mmp2S}V1 zST0N$4j+3o+I~=oIVJD`X$%ZTz!h-Fgd`61Kj;5AZsOoyC#(H0$4>m`Y^(p9hsvx2 zW!!|hvvM5(D>RzGHu+&1D>mRggJ{RLM?yauwokPdeT>lP^ ziIEY7&ZE@;Js#mVJK=JCb4iXAJSnJMCe zgoViSg=}kUC3tm@E5i8*@Ml$2u!jGUfyR02uANvM(Xz2JpVw^erEH>~^)uRgl>+-S zwlbG&euow^u50cBk?umJwnf0kXxx({eFaat1Orp$Oy zB)qo$^CoWA4?1SJ^T!haL%-E=)VH4sw?iDM4YVQzO(j5}QdswzP4D_I<%`@>=xQdZ zY?}=QEBb(FB@c#u)hnel54`7>ba0o}T$DRqfR+T}?k^Z7^;!q7y0KDwg!6H$Xcmt3qpIj22X9HLvRdd#o{R=5T^#6DB)BGD-Y zi`P{NK~)817NXGgRY3ROri8-@se>VUCL_$E(LRbEzt9@0Kg4xs0Jy5DkxgDo*1Y#MZ?HLQYbsnK>;Y+2y^fGMcgZCO+< zg3>KvzuebhUfw;^GhY#c5%g4Gm?HQ}xS5H>k9ZZY-Ia;mHTENHfW_6GfFG>g1az~) z%d^p4;uE4FBC?E>F*grSb14%qsWEPdmAp)%(p0G~rM6rrA)cN|9uw!7X>JNc*Bha|uQgXErnI**}$~?JtNkLKw>>z;nE*^%iu8w6LJ0jm4DVvEZ#D*a5)_PMB zQ^>-trNQ)1VOV5VX*_RGq8Y2FzBZ3rj{{_!oE7q0k{i?%gk{|H*dt5So5Dkg!CovQ z3G}8!rGd*PriB35PQa>x#I%t9ePm8EejYWn=z|%m_Wt*xkN;yu$bbECg*gWc&}NI+ zll$6@kpz^Ma1QsI(25S>J;7}9ksl;g;Bc(mk2*Kj^9q@sP!vG_A4I7tjEBMEr$8qKoAJ)Pwe2 z;e#jNj*IkFx}z;G;IJ}p!ti;J9ZpBhBgOr9l@W$ij0WF{)d`9E^EvO}W6_&`j+d;u z8f#iHx3-&mf_}@vQv8^>wT%chUOzlM{Nb`0vXpbF-k}`D9$w`D-1$F5n5T#T8_>n< zA)FC?X1W@pVAJ6f5bRhJ1@@y_A^}c^1`(jhqLDQ2UrD?o-fHpfAH5O~@t(MNc)~0! z04|IN6z$fSTxvdT*N#7~h5f$Jd>LsKio)kxkO2j&;;#*5CQr*%PS}4!IQ7CMr?IV{ z&l7*!zI{vBW6lp$M0(M#owo@5D#_XNq4h(@P(> zG#}4peBLvE@YN`!C6gNmAN@p=Im%o7TFr=-C%+h)9^_X1xYbV$68w5DG+#to2UC=O zsP%{(hd8MqX#@6e{#@z=^sRHl3oae=pIPL>ClSN=Dleq=3~;@yx9;_4i*unzSKQ~lvef#r793gyni3=rV;Vvo@Lyx2q(}Gz+`cFqx{l8;{e}5^diylHj@F^B! zKe-@%5oeJz5z6T#z8iFmIg+fZ%`Q5VLzBB_b*NY9YQmefxU|h)*A%&&JyYYr^N} z+Cg8jXP<1oCIAFT`iCTpjdPRm>h+$}0NJgon&6H}43^o;=aLMb+Uh8J@te9crLiO> zK;=T~--C_mM_AnhD>AEh-pF z0HfUDItxlGy(Idg36;YiM~BHanh#|89Rg_#=x3+;GA0+Ave+*yeS^s33Ql7Iq6i}O z2qGCw@A<#Kg0RTca&=35v)^dPK)*BPQ^&6iw|f45cm)=S&g*8Vu$E~O1KW|E?3;CyWp=z2uIWJY>y=PatcY0VN2Mw0_$lR6Su zp1SOv$|F2{&u;>sccvc_?0M1WobwLDnLie#I;uG)9oxaIxZ`w2%j?9#(KNxHtTP6p*3lsFvMt@iA4`R z=~5wJPqrCA0NZ& zjdY^YtaD7`yKAwha)d>duzsV1;E&%w!11loBA?2V$8_H$cgQsUx*-ecY#s9&`!?p0 zQa4-2oBKY0I<9b$H|-;xDtXeQud9m9r_@ufKW4caJ2#DD>eh9zr&)b)*Yl}lQWc)- zL&1f1ayr1|FKRXrF7xd!r%iqg1VgS{PulG{m!8(Jqfcr}i#6$H3e+{VF7AAHKEK?L zSVNY|kzPs_JkVix>`YsLuY+(|v*b9wMSoYcHwhSd|HNC{%K1=_jT(HnaMSkEiA3h{ z=&z~XmEucX*zR4kM9z2LJE!C7waG_`^#eci~b4a9^c(q z{?Ebtvv1rkZ4%{+u~rm1J3ZAb)`H=@>!2_b4P%eOGk)PxZalJR{H4(iU1ymhu1`A( z4lm&l)YbQrEF_3Ss;;@-6~K&8t2Pi!=9j0&1gi)@2P)owZqKHyAD7K;Aup$-JdoX3 z$y8hk>5S2*#{p>+G^@`~XH$WH=ic8jxX+7m>-@UDh!wh(A!a2N?0A5jz)VgQX=5z{ zt^M|G1r4?yt(fB+fxw2^N`;TV1WzT7y&tDQzaECsLk{oYf}Y1#@ki_SI5XFePCSFR zk1}bJCrXQhR)sHg*LQAeA$|ery#qRO+BJ*#@M1p+s3`C|3^05mi-`Wf|CyTXA{|e9vjF#N+^f1GXgW7zDDR&i28+mfyXRH=xsZm9{I0K|aARn~DQ+g%cfge-LN6 zc&pt>Jgt5`;+a1w>YJXjw)LiL(|P`7Bq{3{Krt`aTPiTkra*S30LED5317>k4)=RV ze-CkOFrFFotNNuR&})RJX3RgjmR*1!<#(X#YWmfVq;*7+h&G?gjL=aka{qzyw5g*< z+kN}7ow$E1_#(?kBN3n zF$`OzZ5^08YMjYq^}LpcpsO+!b{+W5PD#;@Up{2dmiVlY{M6n8I&V0km}qzJb4|#5 ztJK($b4dH$Te90p{3hh-J5Qm;2gV<+53hF8olwl%u4O-nqCcHMKn_%vTB?~3){yf; z6V53+_7I>ETP{2AEQc)-hFRbyJjltTVE%SqVkye=wbu4u*H$H$kL`b*NM0%Ptw?`e{ z@qmYC5E_)=^I)Q-mGOs2A?uyUOsje>dy@zTbg+w;$zve_0Ria=?7eZGCsEN>j8| z9xd|WR}l)*{P|g7(j+&O1{=f&r}>Y+AgkmX#3hDZ$79%bmQ-r7-Qex0XkKp2($Aj2 zxQ1Xe^|}(qgnOK_-sIzu-{y{~Zr!@skEv>j&MMD02O$YR;DCMqGE`5WJ=14WEn)or z%V%yT<%$J^(s?v?X0GNOAl?knDLDbJ_#Ax@6;qMsCpvt>immHvrErrOst$U326a-D zl8hZKzIOUTLwb~?IIC0)z+QB)upvL%4Vl>&*FS(j_#M#S2ng)UJzbmunY_1&XQ4`b*KG zB9zFH$G^AJj?hzK#-L)u5XK>V9x|#cOks|c&oVsHiU^49bTP#$dCw@K@93un2l2j2 z`~|s$P0zfS`1LoIOE-#rJ#Roj!Pe8v_j*Kl5VpOXvZ*apFY}QF%os%?Ea^`V2GgP% ze^`uPs2{(hg~bXG48O}EZ}3dOV#LifKFFS$J_+BXtK6Zjv3U_Qw|hs!t*nZ%szfQMLJA{baq_9U@}!r zc33;)$oY>>eq-fgSJbs)F6qd{n0M*`r78eszkbaa=S+$b^_0ZZtv_f9%iB^j(aj0uV}3pI|C zGlZeLf3mZGtQa5f?scza?MFz~hI%W!ezU!ajf|m4Lja65)@*G5?}WLS__6uGis{!^ zjmZ6hg0R(bod;_t6W2RRPxFg{ntXphPrx7hLti?ZqRK8WW+WVS(r`Bj6vE7k}k@RwYAy;McE>tM;ZY2KtbV zvmJ?=lHS$Edeq0kP6g?R*Ye^wugFdMg%&iUr_bsgjey}dsqn&aZ6|@w z7SOc!i%&*AP(*ES&E5AaDB|bErf1N3J!^vaxa)3Dnlq!K`W%!)gQ9I#KCJ#WG(tl& z@xEjJ!4!EUdLeYA1D?=Q9}0MZJ6yc8uwT2Hs)!k-S-2l}AzN4(sG@F_(|(Z?u>8xX zv=e;zL@eg}R8kYMWKmt8fsODH;P3|eGfCJa=43fp)Uz5h{u;Z7oYAkQt1itR_uSw6 zOEZ(-)%}%_D28()F>M~dCg0r5c>AR<-jABPX`{E?F}Xdpsu{^axXljxBKd=$7n6zqsZOu%l1y zNMKQr3~6mk^Zr!*ZsGj5^qHHG+FeN%b*h#K&uDGoqi0ru0bAl-J!SXkieiqEITsJn z(81sQ*uMGuhv-dOcwlu-Bdj*$%_crMN|GCO^-PEt=zcA(2b7-u!#E%ZZdA%i z9-Nhz*{iU&+D$v~&NpZW_gRS_6h5uEM9=UVwApoo?)$>&ztq=w^5*l6>SC z*rb7j3x;tsaiv$SJ0PsV)*@pycRQMvbt^6o(GO+k;gMp&W4;4S@@)R}ayo!h$BMbu z=%yycg}zhl?i(=&FU*Y$yw?G-p`ZX3^Eg8C5-?0nH{4VU^)G8_r7boO=&<}n)=Q9> zwSE~ftyT$%K^kTP_uwEkV9rA5Ef%j3Q4syDk-0a@Qr^NunsR(ah?ZVoI%P#(X^6VI zsVKb8Sj{({i+z1bUQqGEwx{-EpgTUTyp}FC*|aRZzjf7#HT(Yb*AXu_f|#~>*|(=l z=3m#n%zTTKg6TOfkFa&v`1~$;_+{LH44(Fy&OTKCx|~!#v`%5t=kDkim<<%?3UqkM z*hr*6Zg^L)RLqGrQDxsq5qa0VkU&M5^l^pfsA=nOltGkqZt?!%f}fKQzibnMFJUvF zfVVTef!l*J7XV5bhF5Qp`5^kvs7iN}jfV$uRu_eDfyI3OspvgTu|G{Q(eC^mO`pD7 z(B4IRZ`&!|V*S}1!Z`S1pO}?1U4fnB{M~hagD9sRJQq(YReyMv6B!J8Zj*VBVf&l1+U9&&S3RR&0y@q3?Gq7 zEQ+(OzGx3% z0%sZzr{Ao^x}r!kHv)6V3>2TzN)~7qN>zXA(QDiL*&nD_mXUFW*5cTTCDZtC;gN8o zAQW^*wbbjZJ06MfnUU-RoMfJvy42EC*sjFiu@dA#ju{hvbue4id$41<`)<)y=oJy7 zzOcAJJWcE?o78TV|mnPlXPDB)$rBA*1un&dRtj=XeII8j{$~9^*6=?j3j-O zN;;ZJnR#(WJID0jgj3g#QI+YE1|ehve%Jvzq}X58wp!LAl$LqVi9b|PEHBvRd$)}@ z0XqE3voF*~H$oblFEw?ct_53KVzufdw)K)H`8Oho;Lx2cJ77otZZe^{o#(r2th8cs z_fn`+QfuC69j+qG8uA<{Z>%`y&cuw5Jfh+Wwko zml4BAkUKN_dJIP5l@PXFo*1nw&1fF40{B1sVU}G_FLE{oU;mcOxk$O7q&2U)DTI#T z^)`GS_onQ2X}zV)_Ru02Uk}ZL)VkmWtfmb52<_%W3X8*5U+e`%o(H1&obRPQ-G-!#&ec^t zPD~4U^UTwJg?N34JmzH5$jZ1U%p)wu ztYJoUP!+6-Nk!U%xIt<9deK+2IwmSgHyJ_8zbN`B&rvAa3!%y5Qq5+6$x?yfA zAV2=;gOU8(1Qi+*Vir`hDUZejOTRd9Ze6cRn2)*yl~wM*$enf#P>^27t>uE(_tjjB znC3u!J+2I<5LJ<|!+?#qo&LaVd30Md*|DF?&SXU`Y)Ca$2y#na#c9!5!potTNyVK( zcQ!l5=Rm+RM8$tjH{-g}SB3AcoKUD#>LlF<6wDqrXg9o*aoHyKq=uyXQLw5hf;${T*37$0{Q+;PBw*#ba_V5-Mj6Xaf_{M@HKXgZ&=cJ`L_fzp8$RP{+@&sEy~ z95$tqUR<4Nz;VnQ^=UixSFFP;hw73^-9hx{)H)xW)9Yc?sEiq5`{QxQi26p`VVBjG zOC>46#49@|9KrU>YXrq|X13(Cyx!t38^el~ARViMUd6v>ZXGIo+Nm>FFc}aR*uGH* zex6=IS+_yJ=Jp!WrH=NAV>OcG zp8|)&)m0{1udc=SsP|v}Q-LfmvSo30WB&XAhg_;`aIQicpYqJ>q#Cbro(w_o@`pk9%}^Ne?1j>-myz-Pd<9($L61$ zrCq#c#)z5BFNXTjoc#e;k)#ZsSs0e%v1D}g#VQgs3OTa9!&m~b3*5;u@oepAg3_6Aczk4PagEtmX*WO6979(9 ztcI7MlX0kLfKGBxSRT}Iw@;!N{yu(1(!x%F62I7n6XCgx`RD4^6L9aVt*BjZ(5zGo z9^AdN4kG)d8`IfVH8~O0_F-7@-i%3#dvz_67*mCBeU9B0vIRU7$Io+NPOT_GU+5`o z>+1Ib+{IyUaPn3#iS-=Q7C(Y3!qdP7Pxnk^Aci@foRw+8?hmV3<*HX}T+VXio)MiC zp0t=B2o9|NgZQn0p+9g~t=nLgVsL4)cJ@9<(} zWEf08!w`nDTp`--6RTSmlmP?Pvv+OkI841ZqE(9!RMEDUR8tV%)|G7yiijKhXx=tP zRZ6lgFTQJOr(q@~bqRo|utZ&M2PRs=8k~}TX$(BYvk~{Et?cC;lFqsU>g3>4%x>EwG5gcGyvvV-aF8plGs*)w)S|z5Lo#J(Re;Us{V1URvr^ z1wj5H0gw94D+1JD)Q_mg-3T|r`8k<^<(UpEwg48j1mJ`?F%*<~Do7}ZJBkEXo@;5~ zrG9pL^mq-lB6$Z&*5LP5BlO@nCP>y z{r&fc+m32zOeATLZ4=(3Gw^Zv5t0{kQIQ+wZzu>e04&j{!a`Co7@wu|>gMWi`LuO! zE)d+(J6UW8P-lL5gBG7|Qi)0Zl^@gb4{Qydp)eo0y;EQzN8R;NB!&Ih8cNU{P>?S^ zd{7d;%L3qB>Q`M?j_&P@XKnGNrVUZ z4j^va_iT^U&{=rHD4z(Eu!dxMstfp9AX);A%-OtjbjHT)-Mqz{h>VE^R)31!kKLGI z>vR65il={c;;y@+er(S z0f_e|9c`oZONs#As^!wNe~tI&v?POiz(4mm9Ju`}>_*?*lNJc! z0;4rU$rr{*az?{#KS2(x)sZoMbahmOh*@7a_g%d~V;u0r1}kI4>>Y4d+uN9ma{oN_U!coP+Y zL!%021Nf`hjq1Pw;||%C2|BelXP;#joGlz0Wy__0yhmSe3ooAC!_gIDjSTRc#ORlN`>I?XWDrrZ)!eS0z8m zn{3;5={^)_!Y6U#nT+ZedsHsN6<0cFYY@47y|4QQ$%XdM(Id;2l={nqrJls5tSs;w z-xkN_@G3rarV-%Ls5gc58hG1|+Lg~3p(MM=mjNEztmHHxRWo>R@Dq$1KPz%?Au@ar z?gV%C7nZbYRUH#MCC;i-K|{I#)fyd##{86P%M51zX`_J%8`p zOu%PvWE4m_apw)!bdjPG$dIX&&!P0S`Waxrv04uR;6kOnIwjjCedr8TNS=oA@8ZIV z1jH%5goxDpawj^k*75LJycbR!CZcr2uY5tr*4nO`x^yHN-=k5fGkesGF*M$wx^w_X zpcXD8C|kapFk;u&y?GS@h#>7+lqdLu$QIj*-f<#-AK*>kza_7M6v@1D!17Ceg$gv) z9}0*p$B6@KHC@aapw^)Bqs1q*6OPDfv6SB?V|HyrkN1X^f2aLc_aYtxGe9sjuvZ(8 zv%T-vJ{(Nghgzkj^zR{n3+x2AwgP04Oq{HhZmTLYXv=Zoe@vF88G3%favVIdaNqBe z5~&=2gPHRys;yiO0b|&HSym3y5f6{_2CtW+XueBfbdGosU@nK*q05lL>GcA?PfPhb z(%uy!mqVVN^sUbah@~Z@w;LxMylXggfd&tVNOUKIwaw+-#Tv00mrD~XwU)&jcVL}; zT%yr&8`4uDaU$jUfeH*VLo!v%XIrCt-tEh;h1N%R5OtoB`O|16A`MFkpc6L}Xks09g1@sKH~#0Iw-w{{Q@N{RNJkc`ZLBsf`i%>1fc$4+@gy I;s$>I4T-OxLI3~& literal 0 HcmV?d00001 diff --git a/mods/psionics/icons/psychic_powers.dmi b/mods/psionics/icons/psychic_powers.dmi new file mode 100644 index 0000000000000000000000000000000000000000..d5ed857bf86e430fd61f991e0a13c5c3a065b30a GIT binary patch literal 6801 zcmXY01z1#Hu)izaNJ%V>v~=eZ5)#r4OLs|&3$AoXN_R^LNSCA_9nvAvT}wB<{lE9V zZ||Oa&o}qX%x~h%oExd3u847IMt{@4`e!{zs47y+RJ>{yGL;@;07U z9uDqa4sNah;Fpy=S>yPVhY)?$&_9aNP_AY&L)|D!?lk^~YYd97zj!uqb zyx$HJsL-Hmx>R1}F*D9w6}!H^ zc0;(nLJ}k5XEiJgVa#FmGz)T?rxx42YKH+SA92~yXWh&IfWlB&UPi|+>nQu9Gl}=# z{uQU0MDoG>S1dI|YHL>(%c|7|=bYDRs;|2H8Hu_SnewNFBwG6C86`w}(D1jawU7M- zBx=_7JOpWEWm9aM*= zKb9}y*~Kc((2Zfv7KPapsBA>zLyfKb7Z@X@SXC*D3ryV`@|NIQnk3D3R3Nm~<1%m; z!ekl2f$%p)TPg{CatpoF``t_z*>#Xwv_%q_|M0;y+ye565E8mVxQ%8Gg{};CbaZ^- z=jT7WxoK97Gt;jkH0-+01;$WB=D3xGVeG=yjr#fQ0^o}FEh*q5?~g5x5Z_kO_b`}= zS-t&pN=i!Am6L;mFD%T=8oIiq=S4p6*|9%pVWoa<>f|R1?gav3l8$}z#?AfaIy6e|4MO<7S2-4`0!cl+Gx6wl*q2fUvEtZHtZ`mrCkqT%5nA{4{a*x4V}Pd1fSg zTb^)yS!hxnUbFpg2EhMj{q!a>B_)OU)bBxFf~HfZ+HIwyQe0Rm6c0+W8G4`IfM$of z#s_o6S$rlUCB-EyAh5dL7ah^RK~6;_CqW|(TE)6dVwpcTHZsbos;EH8gUrv*N6?9} zfTgr=^fnJVWMp@ni6@tqqW|NvKOC3W<;xAHGKYNb-*}56@_ujfCHH}-N|?Z#UBvr^ zt23p_P!s1DvF*+TMq+dgk9T)>?gz84$U1T}vz`*}Fo1tFas6*KGA9ULScBu9-t^pl zOB`W;I6{yIaEZ=DOr|B*uqux2o_O26 zE!-w!8>2mlhXsx_!_6k~)k=xza(kFGnF7>$a`v9|+(+|gYT+SQ$pa}X&jY0mJl^|f zQ25~=F}jwl1%ij?=MSUjJL5aXEZPfR0$Kn%Aq^~l0Dy|uPBh$YcA)0-GG*c~h@wr+ zC}9GQ7#S^ph$rNB(>=PHo?*j3MV1k;XVOJVp{ucx)>!6l>T^!u%kxd6c)W?=ajoC3>&r*Y$EMZTPt9LSWK?9y8*yY`g~SMRjzH(W}smWFgF(b)!uWy8wU0ccKrRQ-`3?WyB=T z1)azw)>|dGLlV2O7*U|{mL0)dB+p?Qrr)87SG5?7ztIJv{QF*?_3adE-QqJ~(dqB) zsskE!JOH2$?R+x#n_&y&_1t8)MO~|1p~Agw$eH6<1_As*2=09^O6t#j4BjW=%TV%5 z^X)<1(v_yK{Hc|jmz_;6^@{=o&fb62ow;wgkCaOXWj``}eurwxUKN7rFQ*-8e@S0++&>v&6+W=8n@dcFS11DXW*Gn6mdnUU!ow z1brjDY7lA#94Bc>p+j_?*y>gu0W3ym6-SPD7WPD?KG%julqJwa^ywmtgU@s(Im7w$ z-!)jZ5WL58JC|ufQ?rF3Zm$i+9#sH5=P5>grAD0MO|KVW%-;Q2Lnd>Saic>ht)V=n zF}T@7&C)m;ln9C;e(ev)7Zh2jQkOo}SJhwxU188G!FIPKvI0ClHF@z+4Hv5sgLc~b zkyVr=|JmsEt-O7Uo3|90FnHi+-B;%X8f55_JKLV${(N((H=-F+WlU!kZs$s8?RU3b zyb$A`Lv>b=^^j3QBo|NFXdZ4~t4yBNdbO$s7=l*)yL2ahNe08m$s>_QAh6lHP~gM7 zY%7J+gEQGuGeKPjZ<3D8>S{gIx?~tK8Ut8WzJ64t{=(YR-%1;5;`81-{<6q}tpP1} zjh}4}TMEeF@2OJXG#Zo_B_mL(Y5eWDfJ?{m`__t06Dik5&qNU$T$F{eRB}^qpSl9- zShQ+I%6r2)vn~!}62CD(0QZsYOXZ4I{hDkjhH3NHzK4s9+)sV=}hkJ%d{fI$qB&&G`ORn3=9ZOM-J9& z{vNx85Lb6GzS>HEfnPr0MTLs3uq(44iw2W=fQDP$>rR~RIgH1X5>XGS zOK~abmvvQ&cb1gos1rK)UTP>m(;dF$P`Xc>jqJg3VF5hO>clTuI4jDO3o8z2yVp1} zpNG6i_b2qKqHaN&z2vXUl6}LE>PE1)2HfgjO0t~zUmg5V3o*PQ;)?)JS7AL z%k$dIshb+7663P=GYmRRMzGY{>qh*rY<22r|L$mvqWM_U51THJA7}m={|Yhl?-*H) zLi&D9q4$@EUnd`_jI}ZoW32j_R4@cYa@Bv0I`nwS;&lMoaf2d~ojz#l$8q31IdFPPOPdxV+~a|>br zw_-*cg|}i&aw#F+7egTt&)XEnvnV7RipgRDo!{t3wEW)eILR|q-<-e)t%M4*IC-WReFDog$@7~#LfKukdbSJT4T=<92(?y> zy3$)))O_$uG9SZBmC3*Unz&wg$|NLLqS@ zne}9RL!)M!vDwb~WPa4@kG1%W)YNAyjU!Lbt6f&OrbHE#orGR*EA9{~=r;mU{rH27 zUxdB;F~#U`a!$dmvrd@HK}=?Q@iqCxB9n(Ug3S_1Hr#2Uaeu}!R|YoKs9~o=?<4fb zkX08OjrgX2|A^sb^CZ1f9F>?Ulv`N~mrAT*d@U+Pl^U^lb;OtUeJBXSdX2GdWf-8W6_5w=Wl4wSjGx(r*4N+&o%;jNe;;tjlSsX*klF zD1FU>DNz}K*!mfK7_Snp1l1vx@gAoAr%Z6BzBA>|b{mG+g)z_2nrTdXlowN;S>T^G)3+FBvT0j>FCIqhj2E^g_j6zMP zW$baA4qIF=j}DwR^^gC7oigVNue$n?>mYV*w?;iNe%IBJN@gpPia;Iv76Xp_?rUff zNMaI9mmX35=32CPI?JDkzilTV;IQLTa#q?f+|Q0>Jv&?E{Oxf4^@5ov*EORuPE&9E zUZ}xo%rVTPwqf*u6ammpRY>HBV_N&y(cgCUQ>Gy?;0zQ=_wETbwv-?xmK=SC_!Ntu zjuzovi6ki_XFK{{!_ktB$GAM-UaO+2g|ExG zKd$o5e{#zie?$is6!#>Mm>Ar5CwU}b+q~V;1iF^u9`j@(df9UbKBswQ6IzX@9(8Md zWi%5dn7@%g+`RcLAZ!Pved0&_qWwh8y^k$&mtU(cm7vOCCd$1-NS(QJe|0Iy7pg1K zYB;9=_OCGA3;AA^W`JhxPs+NN!8p3RClN*ac$Ze?n^hrc-;gxz$|fT7r?+JzF=r<+N1{3~#X`h~eZgoZPgLlUwiuC`zD*P~+{Lnf`6 zKikY2hU(s+KDW_>sJGR2mdq$M4)0iEgS^T9T_ zknR_Q;$}-r(%HbgX3KH@^O{BqL(Dx1*4$v#>X$IV1@3?B(*Y$jO&oxUDZT`bO!G2k zUP<}>mB_hYEpkv_H55d5n5(GDPnH=Uo$X1oycH$>?aW%@lSSqVdbJq~_S1i-0C^F# z+)P{H28A+e@BEz4nKBQVBm*O(%IUg+<3&0Cd|jR3lBb^d%V~T8;eC zi*+vL$x#cAnKNp&!8l|()45S#c4JUKl3;%L)l|;%g_sPW>a-R;G3NrpipRWQ!f6YHGBKU2z!O5o`?f;d2R+yYfnX9q#byQ&oI3*LH1(MN$Prf)o z1R7#e(>SwTg)}wTg=9XU(dUAMY}AZgeeqs2|E~73W3RY)+rq=%RYuIjfdE_Sh`S9j zBZQ9QR+~}M1w=7?Wcv|`fa6g|VVq=1!*d+GHl|TDhe=RoAbri4y+;o5HHSPi&Jf3E zY4k?`evOm6?SEU9V&nR>&w#)FycesZlAF~nOSE#7SmJJt4w<(I{tlee_A(bhAMf9u zVkcch&Ndb%;l#iIg9pU>&jFHIc%yK##)bvn_p>aiY12JsklR}6;IrUwCf`@JV(3(p zil=->F`qpu>ke$q&Hh~YY#JTgkz(J3P5Q*U8a5#CV}5g+prCW$9xE0HF?@kej<9;G$mIhRYme^{GY4Qnm^{Mf>-uQ_-kg<2;C`NA1Wy{`i*5l!*@Wms+e7ybB&&y1)Wi~QiJ|B62Fz<~8jrTqR$MA&s zDQZi@8k}p8x#Q0h=V~hd17W_2*alkF{GIgM+Bw3;7`@^D3jd2gSTMl1Yhb{Us4Csy z#^aOS^aEpOf9O zt{(g4*=SK^u+*dp4=h9C$9sYUf4JujfC4XWmNrcqN+olRj7-O;z-hAYpU>eUs(^#r zm+5S9Tj1h10D70!axNG9R;F_B+x9hvSK`TeA(~?2#EM>Ju*DCylZ)`;R%uh6A>lU| zxvjf_NC+%ZY1-uGCya-f)zoD;>sby-VZg@!Q`r><6HIg~iicbt76lN_nD+3slWVOB zpd@&Yly+h8;2V_RPrWXNC8FoHa{1dIjMpOCr^`R}_Y~swmr)7*e#L1}LnSO48mGoJ z<;1;)qB_Y_-1wggxmz$!7{1A{2>qul&670uLs%$NT6XzrLVQcdf6_I1NI|f2Z=LIV zpBXAOw8VaScjON_Z99>xW#P%;`I29S_&k^M{kkQXltQf^c&(JQTR(bVNbjm#PapgmUzd*naT=T z-T5v2brtJR40j;fXwmirf30vwrW*qxNNpUcm1J8c-S;(~RN~ z%8pN`U&@XNsZhgcY0fG)$8e^qOzGDukRUT3kF4<1;ejJzt3Q>+r%yHB!lP5uD@rHw z2EzD3*J~}?KTJRa#~x#1D}1Cq)&+mOSiHEnI9hxlj^~2O9IKk^iFBw*8Y4e>Q;A!i zA&_1BRTf%Y&K#&!)EX>XW#WNL*KnIMt+$TskZ>)9LW1Gwv~I*6q6t>OoS+^^13cEe zCDpBHk>0x$V$!mS2?>h$^Xh+(BaA#{W^VzcNS>n4;$7w_QXe}fCGjCEWJPn{1C2Ow z$c_#y&sFI0OeBTK#;P?mk8(`a$)%^tK{CX4%3tp-UPz!7NtOMekJv2oU?QA<{_VU*@~_M#IaSIaUR#MM%;ea5AC9_0$9k=g zRqEP*O#F;>%`d(sCCBroIctEVYi&dzuay$7rM+)aTGCrMZdW{acv>ZpU38` zA)+p1Q(NQ9$99WEku0ooF@%YdV;i|*awSSt4rN3>rASU$5^@@K_kMZ9K+Aa0Gr**3 z)1IlfTy4G}7H1CRr%TPTz3#!NKUH&KVE{@<{C)V2i|eb$51won;*Ldw;uBcuT6)uC z^Pi!aG0bUZ7>hQWQ#A;z-!0!jtBX8a+iDODuPKx<_juPrx|# b|4?uWUE*Ton~)z_06_V*x_p(adC>m=-Rk4< literal 0 HcmV?d00001 From 52a7f1ee9aac03645d204cf85125896620837f0c Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Mon, 25 Nov 2024 13:37:24 +0100 Subject: [PATCH 06/60] =?UTF-8?q?=D0=A1=D0=BC=D0=B5=D0=BD=D0=B0=20=D0=BD?= =?UTF-8?q?=D0=B0=D0=B7=D0=B2=D0=B0=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Еще поставил грандмастеру цену в 21 пункт, чтобы его никто не мог брать --- code/__defines/psi.dm | 4 +- .../preference_setup/psionics/02_abilities.dm | 14 ++-- mods/psionics/code/faculties/coercion.dm | 47 +++++++++-- mods/psionics/code/faculties/consciousness.dm | 78 +++++++++--------- mods/psionics/code/mob/mob_interactions.dm | 14 ++-- mods/psionics/icons/psi.dmi | Bin 31329 -> 29034 bytes mods/psionics/icons/psi_fd/lefthand.dmi | Bin 12604 -> 12673 bytes mods/psionics/icons/psi_fd/righthand.dmi | Bin 13549 -> 13556 bytes 8 files changed, 95 insertions(+), 62 deletions(-) diff --git a/code/__defines/psi.dm b/code/__defines/psi.dm index ee6c8217437dc..eb1eef94f98bb 100644 --- a/code/__defines/psi.dm +++ b/code/__defines/psi.dm @@ -11,8 +11,8 @@ #define PSI_ENERGISTICS "energistics" */ -#define PSI_COERCION "catastellia" -#define PSI_CONSCIOUSNESS "allaxetia" +#define PSI_COERCION "coercion" +#define PSI_CONSCIOUSNESS "consciousness" #define PSI_PSYCHOKINESIS "teleplexy" #define PSI_MANIFESTATION "demiurgy" #define PSI_METAKINESIS "metaplexy" diff --git a/code/modules/client/preference_setup/psionics/02_abilities.dm b/code/modules/client/preference_setup/psionics/02_abilities.dm index d0c3a9fd52441..48357900f7358 100644 --- a/code/modules/client/preference_setup/psionics/02_abilities.dm +++ b/code/modules/client/preference_setup/psionics/02_abilities.dm @@ -1,15 +1,15 @@ GLOBAL_LIST_INIT(psi_level2cost, list( "Blunt" = 0, "Latent" = 1, - "Apprentice" = 2, - "Operant" = 4, - "Master" = 6, - "Grandmaster" = 8 + "Apprentice" = 4, + "Operant" = 8, + "Master" = 16, + "Grandmaster" = 21 )) GLOBAL_LIST_INIT(psi_faculty2color, list( - "Catastellia" = COLOR_SURGERY_BLUE, - "Allaxetia" = COLOR_SURGERY_BLUE, + "Coercion" = COLOR_RED, + "Consciousness" = COLOR_SURGERY_BLUE, "Hyloforia" = COLOR_MEDICAL_UNKNOWN_IMPLANT, "Demiurgy" = COLOR_LIGHT_CYAN, "Metaplexy" = COLOR_SEDONA, @@ -17,7 +17,7 @@ GLOBAL_LIST_INIT(psi_faculty2color, list( "Ephanoferia" = MANIFEST_COLOR_SERVICE )) -GLOBAL_LIST_INIT(psi_threat_level2free_points, list(3, 4, 9, 14)) +GLOBAL_LIST_INIT(psi_threat_level2free_points, list(3, 4, 9, 16)) /datum/preferences var/list/psi_abilities diff --git a/mods/psionics/code/faculties/coercion.dm b/mods/psionics/code/faculties/coercion.dm index 52d1205f9d5ab..863f1b82c1b42 100644 --- a/mods/psionics/code/faculties/coercion.dm +++ b/mods/psionics/code/faculties/coercion.dm @@ -1,6 +1,6 @@ /singleton/psionic_faculty/coercion id = PSI_COERCION - name = "Catastellia" + name = "Coercion" associated_intent = I_DISARM armour_types = list(DAMAGE_PSIONIC) @@ -27,7 +27,7 @@ use_ranged = TRUE use_melee = TRUE min_rank = PSI_RANK_OPERANT - use_description = "Выберите глаза и переключитесь на синий интент. Затем, нажмите куда угодно чтобы применить радиальную атаку, слепящую и оглушающую всех, кто оказался поблизости." + use_description = "Выберите глаза и переключитесь на синий интент. Затем, нажмите куда угодно чтобы применить круговую атаку, слепящую и оглушающую всех, кто оказался поблизости." /singleton/psionic_power/coercion/blindstrike/invoke(mob/living/user, mob/living/target) if(user.zone_sel.selecting != BP_EYES) @@ -35,7 +35,7 @@ . = ..() if(.) user.visible_message(SPAN_DANGER("[user] закидывает голову назад, издавая пронзительный крик!")) - to_chat(user, SPAN_DANGER("Вы издаёте пронзительный псионический крик, оглушая всех вокруг!")) + to_chat(user, SPAN_DANGER("Вы издаёте пронзительный крик, оглушая всех вокруг!")) var/cn_rank = user.psi.get_rank(PSI_COERCION) for(var/mob/living/M in range(user, user.psi.get_rank(PSI_COERCION))) if(M == user) @@ -146,7 +146,7 @@ return FALSE . = ..() if(.) - user.visible_message("\ [target] ударяет [user], и тот складывается в АГОНИИ!") + user.visible_message("\ [target] дотрагивается к [user]") playsound(user.loc, 'sound/weapons/Egloves.ogg', 50, 1, -1) var/cn_rank = user.psi.get_rank(PSI_COERCION) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "blue_electricity_constant") @@ -172,8 +172,8 @@ if(.) var/cn_rank = user.psi.get_rank(PSI_COERCION) - to_chat(user, "Вы выкидываете кисть вперёд, представляя как сжимаете в ней [target].") - to_chat(target, "Всё ваше тело сковывает ужасающий СПАЗМ!") + to_chat(user, "Вы представляете как протыкаете руку [target] иглой.") + to_chat(target, "Вашу руку словно проткнули!") if(prob(80)) target.emote("scream") if(prob(cn_rank * 20) && target.l_hand && target.l_hand.simulated && target.unEquip(target.l_hand)) @@ -183,6 +183,40 @@ new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "white_electricity_constant") return TRUE + +/singleton/psionic_power/coercion/mindslave + name = "Mindslave" + cost = 28 + cooldown = 200 + use_grab = TRUE + min_rank = PSI_RANK_GRANDMASTER + use_description = "Grab a victim, target the eyes, then use the grab on them while on disarm intent, in order to convert them into a loyal mind-slave. The process takes some time, and failure is punished harshly." + +/singleton/psionic_power/coercion/mindslave/invoke(mob/living/user, mob/living/target) + if(!istype(target) || user.zone_sel.selecting != BP_EYES) + return FALSE + . = ..() + if(.) + if(target.stat == DEAD || (target.status_flags & FAKEDEATH)) + to_chat(user, SPAN_WARNING("\The [target] is dead!")) + return TRUE + if(!target.mind || !target.key) + to_chat(user, SPAN_WARNING("\The [target] is mindless!")) + return TRUE + if(GLOB.thralls.is_antagonist(target.mind)) + to_chat(user, SPAN_WARNING("\The [target] is already in thrall to someone!")) + return TRUE + user.visible_message(SPAN_DANGER("\The [user] seizes the head of \the [target] in both hands...")) + to_chat(user, SPAN_WARNING("You plunge your mentality into that of \the [target]...")) + to_chat(target, SPAN_DANGER("Your mind is invaded by the presence of \the [user]! They are trying to make you a slave!")) + if(!do_after(user, (target.stat == CONSCIOUS ? 8 : 4) SECONDS, target, DO_DEFAULT | DO_USER_UNIQUE_ACT)) + user.psi.backblast(rand(10,25)) + return TRUE + to_chat(user, SPAN_DANGER("You sear through \the [target]'s neurons, reshaping as you see fit and leaving them subservient to your will!")) + to_chat(target, SPAN_DANGER("Your defenses have eroded away and \the [user] has made you their mindslave.")) + GLOB.thralls.add_antagonist(target.mind, new_controller = user) + return TRUE +/* /singleton/psionic_power/coercion/mind_control name = "Mind Control" cost = 28 @@ -289,3 +323,4 @@ return mind_controller.target = A +*/ diff --git a/mods/psionics/code/faculties/consciousness.dm b/mods/psionics/code/faculties/consciousness.dm index abf3ac79f4470..a779b324dd8a7 100644 --- a/mods/psionics/code/faculties/consciousness.dm +++ b/mods/psionics/code/faculties/consciousness.dm @@ -1,6 +1,6 @@ /singleton/psionic_faculty/consciousness id = PSI_CONSCIOUSNESS - name = "Allaxetia" + name = "Consciousness" associated_intent = I_HELP armour_types = list(DAMAGE_PSIONIC) @@ -60,7 +60,7 @@ . = ..() if(.) if(target.stat == DEAD || (target.status_flags & FAKEDEATH) || !target.client) - to_chat(user, SPAN_WARNING("[target] не в состоянии ответить вам. Его мозг погрузился в вечный сон.")) + to_chat(user, SPAN_WARNING("[target] не в состоянии ответить вам.")) return FALSE if(user.psi.get_rank(PSI_CONSCIOUSNESS) >= PSI_RANK_MASTER && target != user) @@ -69,7 +69,7 @@ return if(option == "Привязать") if(user.space >= 1) - to_chat(user, SPAN_NOTICE("Вы не можете поддерживать столь личную связь с более чем одним человеком! Это неправильно!")) + to_chat(user, SPAN_NOTICE("Вы не можете поддерживать столь личную связь с более чем одним человеком!")) return 0 var/answer = alert(target, "[user] пытается связать ваши разумы воедино. Вы позволите ему сделать это?", "Слияние", "Да", "Нет") switch(answer) @@ -87,7 +87,7 @@ user.verbs -= /mob/living/proc/ContactSoulmate user.linked_soul = null user.space = 0 - to_chat(user, SPAN_NOTICE("Вы раз и навсегда рвёте ваши узы с [target]!")) + to_chat(user, SPAN_NOTICE("Вы рвёте ваши узы с [target]!")) to_chat(target, SPAN_WARNING("Вы ощущаете странную потерю...")) return 0 else @@ -115,9 +115,9 @@ else return 0 else - to_chat(target, SPAN_OCCULT("Вы слышите чей-то отдалённый голос в своей голове, больше напоминающий шёпот...голос говорит вам: [phrase]")) + to_chat(target, SPAN_OCCULT("Шёпот говорит вам: [phrase]")) else if(!target.psi) - to_chat(target, SPAN_OCCULT("Вы слышите чей-то отдалённый голос в своей голове, больше напоминающий шёпот...голос говорит вам: [phrase]")) + to_chat(target, SPAN_OCCULT("Шёпот говорит вам: [phrase]")) return 1 /// /// @@ -141,9 +141,9 @@ else return else - to_chat(target, SPAN_OCCULT("Вы слышите чей-то отдалённый голос в своей голове, больше напоминающий шёпот...голос говорит вам: [phrase]")) + to_chat(target, SPAN_OCCULT("Шёпот говорит вам: [phrase]")) else if(!target.psi) - to_chat(target, SPAN_OCCULT("Вы слышите чей-то отдалённый голос в своей голове, больше напоминающий шёпот...голос говорит вам: [phrase]")) + to_chat(target, SPAN_OCCULT("Шёпот говорит вам: [phrase]")) return TRUE @@ -163,7 +163,7 @@ if(.) if(target.stat == DEAD || (target.status_flags & FAKEDEATH) || !target.client) - to_chat(user, SPAN_WARNING("[target] не в состоянии ответить вам. Его мозг погрузился в вечный сон.")) + to_chat(user, SPAN_WARNING("[target] не в состоянии ответить вам.")) return FALSE var/question = input(user, "Что вы хотите сказать?", "Чтение мыслей", "Идеи?") as null|text @@ -172,43 +172,43 @@ var/con_rank_user = user.psi.get_rank(PSI_CONSCIOUSNESS) var/started_mindread = world.time - to_chat(user, SPAN_NOTICE("Вы погружаетесь в глубины сознания [target], ища ответ на вопрос: [question]")) - var/option = alert(target, "Кто-то пытается проникнуть в ваше сознание, дабы получить доступ к его воспоминаниям! Вы позволите этому случиться?", "Выбирай!", "Да", "Нет") + to_chat(user, SPAN_NOTICE("Вы погружаетесь в глубины сознания [target], выискивая ответ на вопрос: [question]")) + var/option = alert(target, "Кто-то пытается проникнуть в ваше сознание! Вы позволите этому случиться?", "Выбирай!", "Да", "Нет") if (!option) if(target.psi) var/con_rank_target = target.psi.get_rank(PSI_CONSCIOUSNESS) if(con_rank_target > con_rank_user) - to_chat(user, SPAN_NOTICE("[target]без каких-либо проблем блокирует ваши попытки узнать что-либо!")) - to_chat(target, SPAN_NOTICE("Вы без проблем защитили свой разум от вторжения!")) + to_chat(user, SPAN_NOTICE("[target] без проблем блокирует ваши попытки узнать что-либо!")) + to_chat(target, SPAN_NOTICE("Вы защитили свой разум от вторжения")) return else target.adjustBrainLoss(25) - to_chat(user, SPAN_NOTICE("[target] удаётся предотвратить ваше проникновение, но часть его мозга была повреждена в процессе!")) - to_chat(target, SPAN_NOTICE("Вам удаётся защитить свои воспоминания, но ваше сопротивление повлекло за собой куда больше проблем. Ваша голова просто раскалывается.")) + to_chat(user, SPAN_NOTICE("[target] удаётся предотвратить ваше проникновение, но часть его мозга была повреждена в процессе")) + to_chat(target, SPAN_NOTICE("Вам удаётся защитить свои воспоминания. Ваша голова просто раскалывается.")) return else if(!target.psi) target.adjustBrainLoss(25) to_chat(user, SPAN_NOTICE("[target] удаётся предотвратить ваше проникновение, но часть его мозга была повреждена в процессе!")) - to_chat(target, SPAN_NOTICE("Вам удаётся защитить свои воспоминания, но ваше сопротивление повлекло за собой куда больше проблем. Ваша голова просто раскалывается.")) + to_chat(target, SPAN_NOTICE("Вам удаётся защитить свои воспоминания. Ваша голова просто раскалывается.")) return if(option == "Yes") - to_chat(target, SPAN_NOTICE("Некто пытается получить ответ на вопрос: [question]")) + to_chat(target, SPAN_NOTICE("Что-то пытается получить ответ на вопрос: [question]")) if(option == "No") if(target.psi) var/con_rank_target = target.psi.get_rank(PSI_CONSCIOUSNESS) if(con_rank_target > con_rank_user) - to_chat(user, SPAN_NOTICE("[target]без каких-либо проблем блокирует ваши попытки узнать что-либо!")) - to_chat(target, SPAN_NOTICE("Вы без проблем защитили свой разум от вторжения!")) + to_chat(user, SPAN_NOTICE("[target] без проблем блокирует ваши попытки узнать что-либо!")) + to_chat(target, SPAN_NOTICE("Вы защитили свой разум от вторжения!")) return else target.adjustBrainLoss(25) to_chat(user, SPAN_NOTICE("[target] удаётся предотвратить ваше проникновение, но часть его мозга была повреждена в процессе!")) - to_chat(target, SPAN_NOTICE("Вам удаётся защитить свои воспоминания, но ваше сопротивление повлекло за собой куда больше проблем. Ваша голова просто раскалывается.")) + to_chat(target, SPAN_NOTICE("Вам удаётся защитить свои воспоминания. Ваша голова просто раскалывается.")) return else if(!target.psi) target.adjustBrainLoss(25) to_chat(user, SPAN_NOTICE("[target] удаётся предотвратить ваше проникновение, но часть его мозга была повреждена в процессе!")) - to_chat(target, SPAN_NOTICE("Вам удаётся защитить свои воспоминания, но ваше сопротивление повлекло за собой куда больше проблем. Ваша голова просто раскалывается.")) + to_chat(target, SPAN_NOTICE("Вам удаётся защитить свои воспоминания. Ваша голова просто раскалывается.")) return @@ -216,7 +216,7 @@ if(!answer || world.time > started_mindread + 60 SECONDS || user.stat != CONSCIOUS || target.stat == DEAD) to_chat(user, SPAN_NOTICE("Вам не удалось добиться чего-либо полезного от [target].")) else - to_chat(user, SPAN_NOTICE("В поисках ответов в голове [target], вы нахоите следующее: [answer]")) + to_chat(user, SPAN_NOTICE("В разуме [target], вы находите: [answer]")) msg_admin_attack("[key_name(user)] использует чтение мыслей на [key_name(target)] с вопросом \"[question]\" и [answer?"следующим ответом \"[answer]\".":"не получил никакого ответа."]") return TRUE @@ -233,13 +233,13 @@ return FALSE . = ..() if(.) - user.visible_message(SPAN_WARNING("[user] целует [target] в лоб...")) + user.visible_message(SPAN_WARNING("[user] целует [target] в лоб")) to_chat(user, SPAN_NOTICE("Вы проверяете разум [target] на наличие повреждений...")) to_chat(target, SPAN_WARNING("Вы ощущаете, как ваш разум очищается, становясь яснее.")) if(!do_after(user, (target.stat == CONSCIOUS ? 50 : 25), target)) user.psi.backblast(rand(5,10)) return TRUE - to_chat(user, SPAN_WARNING("Вы полностью очистили сознание [target] от проблем и ран.")) + to_chat(user, SPAN_WARNING("Вы полностью очистили сознание [target] от негатива.")) to_chat(target, SPAN_WARNING("Вы ощущаете полную ясность мыслей. Словно стали новым человеком.")) var/coercion_rank = user.psi.get_rank(PSI_COERCION) @@ -283,7 +283,7 @@ use_ranged = TRUE use_melee = TRUE min_rank = PSI_RANK_APPRENTICE - use_description = "Выберите верхнюю часть тела на зелёном интенте, и затем нажмите по цели с любого расстояния, чтобы попытаться поглатить часть его псионической силы." + use_description = "Выберите верхнюю часть тела на зелёном интенте, и затем нажмите по цели с любого расстояния, чтобы попытаться поглотить часть псионической силы жертвы." /singleton/psionic_power/consciousness/absorb/invoke(mob/living/user, mob/living/target) var/con_rank_user = user.psi.get_rank(PSI_CONSCIOUSNESS) @@ -299,11 +299,11 @@ if(con_rank_user > con_rank_target) sound_to(user, 'sound/effects/psi/power_fail.ogg') if(prob(30)) - to_chat(user, SPAN_DANGER("Вы попытались проникнуть в разум [target], но тот ловко ускользнул из под вашего воздействия.")) - to_chat(target, SPAN_WARNING("Не важно как, но вы чудом избежали губительного воздействия [user] на ваш разум.")) + to_chat(user, SPAN_DANGER("Вы попытались проникнуть в разум [target], но тот ускользнул из под вашего воздействия.")) + to_chat(target, SPAN_WARNING("Вы рефлекторно избежали губительного воздействия [user] на ваш разум.")) return 0 - to_chat(user, SPAN_NOTICE("Вы с лёгкостью разбили защиту [target], забрав часть его сил себе.")) - to_chat(target, SPAN_DANGER("Вы ощущаете сильную головную боль, пока [user] пристально сверлит вас взглядом. Ваше тело ослабевает...")) + to_chat(user, SPAN_NOTICE("Вы с разбили защиту [target], забрав часть его сил себе.")) + to_chat(target, SPAN_DANGER("Вы ощущаете сильную головную боль, пока [user] пристально сверлит вас взглядом.")) target.adjustBrainLoss(20) user.psi.stamina = min(user.psi.max_stamina, user.psi.stamina + rand(25,30)) target.psi.spend_power(rand(15,25)) @@ -311,7 +311,7 @@ sound_to(user, 'sound/effects/psi/power_fail.ogg') if(prob(50)) to_chat(user, SPAN_WARNING("Вы попытались проникнуть в разум [target], но в ходе битвы сами получаете значительный урон!")) - to_chat(target, SPAN_DANGER("Вы что есть силы пытались отбить атаки [user] на ваш разум, но в конечном счёте всё равно проиграли. По-крайней мере, ему тоже досталось.")) + to_chat(target, SPAN_DANGER("Вы сопротивлялись [user] повлиять на ваш разум, но в конечном счёте всё равно проиграли.")) user.psi.stamina = min(user.psi.max_stamina, user.psi.stamina + rand(10,20)) target.psi.spend_power(rand(10,20)) user.adjustBrainLoss(20) @@ -320,26 +320,26 @@ target.emote("scream") return 0 to_chat(user, SPAN_WARNING("Вы с лёгкостью разбили защиту [target], забрав часть его сил себе.")) - to_chat(target, SPAN_DANGER("Вы ощущаете сильную головную боль, пока [user] пристально сверлит вас взглядом. Ваше тело ослабевает...")) + to_chat(target, SPAN_DANGER("Вы ощущаете сильную головную боль, пока [user] пристально сверлит вас взглядом.")) target.adjustBrainLoss(20) user.psi.stamina = min(user.psi.max_stamina, user.psi.stamina + rand(25,30)) target.psi.spend_power(rand(15,25)) if(con_rank_user < con_rank_target) sound_to(user, 'sound/effects/psi/power_fail.ogg') if(prob(30)) - to_chat(user, SPAN_WARNING("Каким-то чудом, но вам удалось пробиться через псионическую завесу [target]!")) - to_chat(target, SPAN_DANGER("Вопреки всякой логике и здравому смыслу, [user] пробился в ваш разум чистой, грубой силой, нанеся в процессе значительный урон.")) + to_chat(user, SPAN_WARNING("Вам удалось пробиться через псионическую завесу [target]!")) + to_chat(target, SPAN_DANGER("[user] пробился в ваш разум чистой, грубой силой, нанеся в процессе значительный урон.")) target.adjustBrainLoss(20) user.psi.stamina = min(user.psi.max_stamina, user.psi.stamina + rand(30,45)) target.psi.spend_power(35) return 0 to_chat(user, SPAN_DANGER("Вы пытаетесь пробиться через барьер [target], но встречаете серьёзное сопротивление!")) - to_chat(target, SPAN_NOTICE("[user] только что попытался пробиться в ваше сознание...к его сожалению - безуспешно.")) + to_chat(target, SPAN_NOTICE("[user] попытался пробиться в ваше сознание.")) user.emote("scream") user.adjustBrainLoss(30) user.psi.spend_power(50) else - to_chat(user, SPAN_NOTICE("Вы не обнаружили у [target] каких-либо псионических способностей для подпитки.")) + to_chat(user, SPAN_NOTICE("У [target] нечего брать .")) return 0 /singleton/psionic_power/consciousness/invis @@ -393,7 +393,7 @@ spawn(4 SECONDS) target.alpha = 25 spawn(5 SECONDS) - target.alpha = 10 + target.alpha = 1 target.run_timer_invisibility() return TRUE @@ -409,9 +409,7 @@ spawn(4 SECONDS) user.alpha = 25 spawn(5 SECONDS) - user.alpha = 10 - if(con_rank_user == PSI_RANK_GRANDMASTER) - user.AddMovementHandler(/datum/movement_handler/mob/incorporeal) + user.alpha = 1 user.run_timer_invisibility() return TRUE @@ -566,5 +564,5 @@ /mob/living/simple_animal/hostile/mirror_shade/Destroy() owner = null - visible_message(SPAN_WARNING("[src] dissipates into nothingness, as if it were air all along!")) + visible_message(SPAN_WARNING("[src] пропадает!")) return ..() diff --git a/mods/psionics/code/mob/mob_interactions.dm b/mods/psionics/code/mob/mob_interactions.dm index 40a96ee2e3739..f9dc19775018c 100644 --- a/mods/psionics/code/mob/mob_interactions.dm +++ b/mods/psionics/code/mob/mob_interactions.dm @@ -27,12 +27,12 @@ INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Metaplexy"]), A, FALSE) INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Demiurgy"]), A, FALSE) if(a_intent == I_DISARM) - INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Catastellia"]), A, FALSE) - INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Allaxetia"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Coercion"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Consciousness"]), A, FALSE) if(a_intent == I_HELP) INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Ephanoferia"]), A, FALSE) INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Hyloforia"]), A, FALSE) - INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Allaxetia"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Consciousness"]), A, FALSE) /mob/living/RangedAttack(atom/A, params) if(psi) @@ -45,11 +45,11 @@ INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Metaplexy"]), A, TRUE) INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Demiurgy"]), A, TRUE) if(a_intent == I_DISARM) - INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Catastellia"]), A, TRUE) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Coercion"]), A, TRUE) if(a_intent == I_HELP) INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Hyloforia"]), A, TRUE) INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Ephanoferia"]), A, TRUE) - INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Allaxetia"]), A, TRUE) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Consciousness"]), A, TRUE) . = ..() /mob/living/proc/check_psi_grab(obj/item/grab/grab) @@ -62,10 +62,10 @@ INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Metaplexy"]), grab.affecting, FALSE) INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Demiurgy"]), grab.affecting, FALSE) if(a_intent == I_DISARM) - INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Catastellia"]), grab.affecting, FALSE) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Coercion"]), grab.affecting, FALSE) if(a_intent == I_HELP) INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Ephanoferia"]), grab.affecting, FALSE) - INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Allaxetia"]), grab.affecting, FALSE) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Consciousness"]), grab.affecting, FALSE) /mob/living/attack_empty_hand(bp_hand) if(psi) diff --git a/mods/psionics/icons/psi.dmi b/mods/psionics/icons/psi.dmi index 266fd8388ecf8202ec1a8b6edf67dfd603910d31..ee499e8fe585f084fe242f7c24ff9fc44ef3af4c 100644 GIT binary patch literal 29034 zcmagFXIPU@&^{VM4_$fwa}y^A|PFQ4IQK_2uKUP zcL*eqa^mlO|K~dAd^y(@KJa9Bp54jp%sn&rzSDiKMFZjh0RRA+$B!Q90{}!}|Nbb* z2v5Ea)WZP)AZL)Fsn3I#-u7P3o<7bV?f^hQc50fQ_ZKPpfjp#v)Pd;aFLRzNPrAC^ zG@gjafC?S$6x}<^ly7cqrZ3_T9oefY$j{ef)8tQEMY~B~)+2{o zT6cUET{C~GyOA|6K3Cfg=7YXJm-yz6&oD0=RqH79#5E~E;tmf_v-{OQN1 z8Y!?q;9pYvm;KYSuYLG-Kxuy|GIJjq-MFK_nrMFMet1B&S-@EHn&WvCFMG-3j~``B zS+ab_*gK+%>%XQ3QGwBq9w%-Uy~|9NDeO)#3V&f;BcSv7n|kn$&+D!ApGxq2m(mtm z&kgs3Jn7ldg9)SUgkO_2yL1ZIH~q$B^*95cdAH>Yq^3|rTJwdd`KBrWTnjpjN{mpv zRt)d5K4KQb9BPEk#uWN^KYxgmK)3dYLrw zfZ5e9zgDON`9N*G+?#g#XEN3~jLsg(v>!Ml<@NSvX%HbPuhj2-Z>;q`{Vik~lrmRcBH;;Y*m50x)N zwiY%JW5z!mM>%Yz*r+uzx*WblY}90t3^b-h{~l=Tx%(XNmQ_B9Qu90d@lwEUeVBs$ zY;!b={(*|?Oy%O%ZRK_tws0>pKlVrDGq1gKtUYuynF{u9i7aegeq=Ysxj2V|;@-;W zmUWDUyh+UsA^NXT_`gIiFP(~?ge}3Z?y`2q+e5f0&3#Iyoy1iO>w5tILu72K*5+cT*X z>#u@6P#uI|*2nXYJ_|1Ies>Z_{1e)AlGQ-8ztsE`v=6dju( zFprVzTP~nqsgXyKb*ULOf7+*v`QU9kcp%?3*iW`S+pgu#+5iU3erV~mZC$l>(!2@< zU$Hy? zr!61gIRCJ|^q>MK=%!>4PK-1RNbGVac~p-C@6ni0FV^W)`RIV+Vf8N|kL~KV+z(ME z0`&RE$t2_#CQjT`yV$!!S?JG@F-!vwz#R7oIy$~o_f(|D&etnmor0<>H_X4u2pBDa zp*-6ovVL+t-wN!4iSC>oX017x7DscZrpW$n5ovS0DQok=;?b>qe_K^3U?wq- z%zuH8I=!^;cc3z2nmCq(ysn~t-6Z*+BJRT7C@4sWV@8eqe*Oqs>fGmFeBn{I=NcI! zf_W3ty>HemNqh<%p|PaojZ;IF1#H3&NlQw!@hVd@#F8PGx0@k*TmIdMBRKhT7xzRC z+k45-6Y=(2qwM}Ekm@bL`n3K5nnac~&LPaJw0gu%`oL4_NZ`X}`GeGD-qgtu0sxrG7a zg#mkQRxC0T>M<)+r(=~D3g9=| ze{5%DeLPMc9xk2#n7v(QENy?ED{#fPWdA5~=<}p4{+kJa86Hy5O`m~{9 z6mTNCePs`?;N{jdsZaPb40QjGYV%R}rA5alJ_Uj<1NeG*UzgYDg^XbHOdEO!$u zjbqe2h z`c|e5`Pp5#4URZ;F(xqUIeDTn1O(-xnovOJQ(H6-8B7PzL ztdyOB_d<*nHUR_fsBE&iUrb|an}HkY9hn)I@0vaFeg2O~rJ9`;N9J3ZgEB>J=O)%m z2JDKt=pIeH`Kf_Td*y)mrsh_1Y3w-TE=V5yorUqy9pdbX}d7pcI z!ynij(w{P!`2cGGNl6EXO9u7VOsQDkoz+~Wb>a76!t5Hd=^gLc;<~r++r^bJFSF8K zZn%{JbeHpW&FhZk$*{N^D1iZvZ{Vqws?+$ zn-o4rB@BWxkASHm7v0S}O4mq0_i7b-`9%GmL$SXMr;wwJ6FCD{ofyEGoBgU(`u;#| z`2Fyi9d3{nCEKVe+tl@zkDR7UR8pMHK{OL7oObhaJh|QT%esxqm$ARE^Vu|FHur_K zgwu3LrHPB~{=mFk631P^2Z*3s7nHh`7%dkS7^IWbF4rqFU}RQ}*ltF^CMIrCUTyrX zd6SOm9YzjL+v#xPw3#Zl?UbD>@{7SeTAPc&66j@Od0Pdll;OSzbT^ub84`|;TpO@f z&^yJiN_8p_v6}a|?G(X^ROV`PzDRT^6@F^><3UbbQ z9i|bU6v(gDaW)>b>x_Elq4Rpr<~3#paz$e4e-(SP0{;{tQwcMcDd=|d`oNWaq)fwO zTT_rScC7e`5w*jb9{JJpHqMM@ z4vmas-Ym--0tk4nO9<*93%pB!cKkfHq@4t?Crv5}AUuC7{J%i23l!F6EA;}@^K*H1 ziY5+y_6a}Rp@P!Yp~F=CxUnSRujK4TcCNHA4S6L6Ioslduc%68>s8`LNRL-%>B!ZU z?D1z4b?)_r^#DSo!(*dpQ4<-Ix|h>LuX68`(aI);U9{L$D#Xe*_LMAE>?q;bPyFfmk%r2i4svk03zNrzQ5IRgP8OvY{kNv&UG**e%0`|L0A zH&V^hQGAl|4e#>n>l#ZqzgD>j6dqh+P`BOVpHagP?>!UcX2JVM@m?(z>U7#be2s5m z^kxv^cqIOeB*gDQ=m(7YI}dhs9F#|9;k#v1)j2jtT2nkT#=ubcD#Oi z{B4ojS(z``v1K$&Vgs6_5t4~TP<&;zpH|EwLTpkTGRs%RiQa>en}(Fu{*D?$~)BBL0A7uk;JV z`=N`L(%VGZ(=ld9|Hx6u>aRi6=;@di)c0|(<*B_+PWs${>QM=(DRkW0xxP$&`6eI9 zVQ>MlHA0cAVaE8|Jjq9Cyqtos4Y{S6veMq#fL|2E$f&F7f+3>kK8Zu!&0K4|u*IF3 z#%8puNq0)#tz_}&>*Y-ZMpTU9iE0)66Z1*-u|?M|u5|-;Vb*5CNOZB{XL!2oTCr1? z4)cmzP&vN#{|z_7Ss2XZLF?q9=Cpc7z((kNCQM^E%WOPP{kHWH+$G$JVm8l$>uz;t z=n11E2bcVP$F#|Nv_7=G>Z@l)Qx@ZKV+PD z;0nP%xUF7cyq=8+T27MpA2I74mp#3?nF%j_LUHlK&Qq1*HPb?iVAu&JxUrpP{<=}k z%D%A8(JNRnduk4366cyAhJQxGxZ+WvWg9cdIhS2e#P%mIzk$ehA8cGjPCwuY>v4I5 zvwQ@4U8iYPb8j7Pd&G;6d&j=>0jzcj8F^1HSAAPr8mky-qsL-h9gKMJDyp4*9L~V{ zWKMpt_-t<+JoyoL3T(sg`4A}@{LSRf`fQHxRrI|L5oSppF42yXyuaqZ(8U3{*b~gA zU=}FSZMJ3UY=?(iz(VK@xgbQe_!T0B^K_b@QNcEM+jxR&P~kSv{hv1k;5O?Y^U@w9 z#KE>E3XZK`3M8;gTgHS+L}&|m%8G;^x}zq(e#-Yb)XLXSc^QYQfMJsTxWa>@^k+>B zh&}v$x~ai0yK`?vS{--!POGs_PkE zXfm|r(6sXd6(Rd5_Uyr5eP4hdB*`zY%{+^^5LC2FMI~CXE#7oA_UlhM3Wz*i*P`wJ%VdTNb0JWU~xNbUHDY;o84L+D{R;+nOi z7jAjX868QH$jHmIqJ!D5g)QjpJ$vG|cBO=d5l(Xjm_bT7B zXZ^G__^UHFWzR>Rs`KVO-BCZ2Lua)f4ko|-fs5|ciT{g`3RGNZseKX?39YH8u2fp% zudZliN`f6Um&*}F;ZCZ!?~?f?lrql9X$ZuGl2pTx6xS&*n*aY zso%ilDQybmM5jrVUiHCYg|Q9g&ZKx$(Jt8g@<_y4xxXBxNzQkJWV!1gg4$-3pR{TRV(M^TG576&upRTFVo)C+7fg!GOQ zU?DH`tD-9I-A+iYbii}w4t!u2Z5Vgg31>Z}E(iY#m<0+gJ3;WQ}yQ-DYeKx zW`bexi&mSsgXI*KSt{~F|Cw7iZoyflV09S9@0vY1cqA`1yDXDA4(q7;>uj#WQK580 z)trLYa0TzK!QWK0S}rudzVC6nfxN%U z0?qy?#~`{Y0YToKJ6h$(klIGp4S9r{Z6M;s9gj*5(*?~s3#wV@kYjKwS_Ae{U(=nLgkLW>bg-b#Fts z@&@rW;QM!nkh9S(+97Wy!RHh@MIBYtBEcfdrNmtnkSGz%AN!pqNcSs6QC{dnRM|iY zjp~bHwUK!nc&yAvV|Y9Hd*5eoF`DBLF)07uk^u(6Uut z`xfTQ+n0#Qhvp{Zw?3|fJyfSqs&`WKx!?}}rJ&qjVsA^+c94}<9k|JAH%$f6@t~<# zp(ZJgx`nq=FSfkfG|CJ&paWF6$KeZQad|s@t6eAjBf0RohcX0B1_A!RN%ivoE2*X@ zV+Jb`-M0?W;DRxiL>HKU#SicP(f#Z~g6Xq!A_c`Gs4^htxSxyUcGr7VU0OFNGyJ}C zs{EdDRp>TIq%6D<;4>q^mdXZ#2Vb&hSpFtGGBTyh^#U`&p_vYl}*33A#DbPf5}TcBKP^Cx$LcQk#2a&08#|?EX4_GN7jL z&@`ea3Q(eeRCon*7B!3y?JZ!vBM$jXHDLBxedUsPGdTv{(MtY3_@q9dpF;`$`3(i=Nnp~!0QN~W8+1|C?aj~^5(}^sZZF=6^=}7K9!JL8&Xr-#8lMVPVspHd z+NyWZ=dzQ1CoXTwv8isquX?bwHSnS{DZ^=GcPO!}ZaYf?j z!i}3~Z#3-Q8;Py#ns^U}mPh_sQ2F8iet9|%k~%DjZ!tj(I z{%D&tkZU5Tpv;eeF329T4wLsPgM#^>ePYVwv+T^Q`^lxXKV2JLMNIA6FZ8CAO}q)nHdXyj znfXhOZn^NgG%PWXV}+>2BtQGd*OPB#z|^U-o9$f2P{N3Na>}BS%ZT>B3Y%3THx;3U zNRp5l*x1fb=Ef0@mrl1$_UG89v4T)vM_t_u_;xPb5Ub}`O{rN9RjXW%8fHrhISbs* zl(wm)dpf`I$*JeN8CZUCcc;wST#yq`qsMTjNqbj{aJt^8Wx%^033tBa&%Kj}pZhKn z(Eg3=@b%uO2te}Qyq2rrkdj;?hcI&t7q`f1)9pVjVS#IbqT2^7v$OHiu)+$xdkgCa zZ()58*w5tWHY03ee}&Rzf=QdMFn==OoKPgXb)^vqGBsK*yKW*W%xmL5gGu*YKOCIB z?9SUDqE=j>=5JKWvh0_v7rKZ1ifrj?)0A^d51bE2uMH>P4LdBCh;5899BfiHKM}&{ z<*%iTDLj**B(8P4tT9+djy(sgh&!x@FKIYSwka={OV1_^Og4<7nSPGs)vaPrzXy^S z!>H7ui>i>-h}LJj=|tvB%%zdP6}}WXc@;|}f0;+5hqZ=rT(k5_t%fD{~FxzyQHgAT1qo|^wn!mY0Re+6VNfwQ|= zQ^TPP+on!h#lv4rBSoywP$KAH+*j?!SEH3*f0%jUx^;O-PV(?W7t|f)J`cxqE)g=^ z|GILl)P(aVW&S}E2{3%AI^FS0nxC$7FHXTbCC&r83BT2NdnWJwlUVr|g?dXo=*P!P z$Wl?UDoJA~7Dt$U7q)UX9|R}~yr3Y`F;)Rx+}>#XD~(YeD89W=cVgCrTQB`_>OcOO zKl$LVV$%cbp5Aw6aQUylL*3UjGx*)R-Bv>iN7X4E15RfAd+O6|c+rr_iRE|rF{85l zle4_D-l}PYD2yJdwZZ6%ErjB%(aktZywEOwUO5=>{N7jtu5uob0L>~oAugYdI9m9G zOLU_fJ_=PmTs!%LxR&9GOeO~N?2dk_H?h(4M}*LoX?`Ab6D zvC65(9IXNDXY-Ne_@-%sVZiCpCs{?+HOvGEybl(+{_=c@w(*e5Qfao8T&jtL{lcT& zw-)(IVHI(k|#s+)xd^2)%_KZpk?>c z=EyZT`!rSji{@$|s1o-S!hCc!fJJ*_<6CeI-b5=DcdB>*)|@1|g?tGjIs<rr-_vJ>in>Uk;uQi<5b{`RxpZ9Dup5TH46Eq6CE8{K^{P_@5Cv zK{XWg0oKZ4yw&zw&+o-0a!8NV@rJw8T1U>@f!UoISihQUw?Ec0g#z+| zGeo<))mKcO;+Zx|JK>11%q@I)fIm<2d&Fbx*>7UhNp$@&a=?6D<-Q8xJ@B&19STkP zXqn~V^aZhT``ku#Bjfx0nB)HD<3x+)GJ{Nd9a!p zNFj}CUXqXfsOi0sSyxVgb!(fzy>qr=zP`2!7R3oPgYOKK=iAb0VFFtQEt2hEO*TNB zaFh{L__bm#a>#78bOX`}>VZLxEw_F;Li$fpC|wVV2v6i(0Kd3m0HWoMF7~gfl6N?C zJh+cc1D*Pt|MJ8{tPLtpEkM!I$?SxG{>Qi~;Wp6LtNEC)i3l5DA<^^4V`z=ezbe9; zRp$8fR&`VSwwh}ErEo#b@<*`j-yC?_fL}akBr!Jy&D_zu_#`sZlqu+-q-^m38GDE) z6um+3nT)Z-V@e=nrFUdkuV50g-_P!1Fyd&u+fMQN^2550!g9#T*7f!O1phHn$?jYO z$FEM;hW5B!6_IeV4=hwmB^ztLa!Nn*yqq=>{x<#1@8a*kKF#-FMr^b(??Hltk2`q( zD&#(ew&P|MB*K9v!a9bRc|#g@=`VtDb|+54Vf{bJi82QqnYA4=%&nLkOKU-Y&NF)$a~{#J^xr zxRT647~=jfXxO|52twymGXZ0w+d&HwrStBAjD+C#8FC+2!r+UI|A7DCAs!tMht&$h zcY*+Qv_&m_=v!^CC(#+t><0hErNBP0?3YS7Gd{OHxZuTbTEe-)5llq|){C>33|lPo zkXiSyyIl>sr}JT;x5V*pGXPxNu^din%jYL7O9AJGG~?tm z!q3Y{7Cla(a?j36UHBDe>&?^!M`qz)47SSFx8JV!;TDNV)C>$ZWpGM5U52&x1&!^E zTYi{hkiRK}dp4A40#UMzWSm*}YX7vd!}4_PXfHaolVDJm0MD85CqzhEA9D;bU&%o6$UkZqQ+z<|=J-b5ajBFzb` z{F+UB{;xE|ICkqw%K{cvhtWngVox;zFT*|gaq5>O)i@zty|4o2_{2<#THUAb5s;Iz zQ}O~riS*uPxA+gsCRm#;1x2Zp((%(itGg`LOunh{&GG*9%1VZJ*v9@|3`bXYtp=Il zJ&2Y?y5yhdNi69Vq^Jf6p(@!r4T+XVHPyS>sWyjLsnycRB{bUveXV&Isx}kziA{f2se-R4vWu%}%yD9A6zI zD`wiR*eptd*!O@EJ1Q<;2H~4=zorpFU}muH_?b!}~e@uay;LL^bXA$o28 z2-YF|3qBJ)oH#%#amOC}So2HMxFK+LrsrvGWsMs#@19M4n{SDvAd9N`>MF-MaM@&h zRxcyMQgW)p5#!QEUBBSc$H*(H>fg5jK>q@Mig*x$5_+@?qdZ-irDSfq*x&)LgCHOX zQwWWT4Gm2MY_k1w2y1!bjrF#H1>rrOVwW6W^qHMphvExKrt$Ma7|C{nCD*!;JrhZ7 zDwvYyb-Vh6+Y_tUp(}=kW+t*kiuB7Ql^^ZHt|a6iR(?3{$G0cR>qs~Ac%Rp5Xy5tW6r<-=n&_P zEv$g!aEu9QNbg-Dg+P2^j5U7VI`pXsK|KzDRqulLxx1vcP46eNZe+gwy8P6zrxZH#wEQ-YidJ@G6-fG;YhS~7k$IPRg~Fy&<3rH>}6M?K;! zT)Q4x?O~pL0Z|{0O_IyDPBIy@9o&hzx*F`fQ-vXc0HO1f>~pf-$fet3qbk3}aUO8` zT5d>$jHDU&?;A`o<6OPdIa^c_QWW)TS7477@6|VsOm4tY@KcTB%wZTk^@F}Ihm)ba z!>oDapipg%?z}nDohFl#)7bJ;2QgfK9TGD0;5fJ)59z38>8NpOe~r)NO<9H&r4S84 z?n>&0%8x|B8MvO2X{C`<+9>lp){U;6fB3$gKrBk8T;-hL*^E3TbLvFjV`#tU6p#fcVzHOh5G33qfyg%FW zlAS?2(+FztqDA{@*|g;0R%YHmEvzjQ+1dmE%}*Tu-W+KIM7Z$rV?Z!wO1F5apxe+q znm~!Sg3_CLAKljfZgaJ;svg}2;Z!w&pBn02h*c-<{nj+7)enkfCRoK)0N`ENrbAFLQ?tzPuKt9(o@QSf?{T)Z_*xNXa+1>!9y-b>})kce5POD!aZ^b z5i@&6K%_Qor34VAElhY3Qwfko zGTu5cl(*!A9@VOBz``&qZUE|TDOv0ZSHFKAc}fbrCg6jOVO8?za!e!ZASeTs@=&6+Lv=|G2h+hulVmRo-^Sk6q~yNOqBzofW)GExTt z17o0vkQvC_6+h8kIYY{qJ4pQ9)1ZMFB3N#7=3~N2##na z^o!uW-hRQVnhRjGl@d&=HvEOAxBf~t`f@S-jr;1C5d_mkSA@I^Iv^)e=k(~&Awp`; zR`YV~Z154&fM?#qVKsWZ^*AVCHL|g2GCN&_kpS8F&a`OialbPM-i_#Y>itRlL`Mrf zbDYueytMJ~XWIt`J-y0}{h2%%gkzm{JWsh&{QMa7j-&;?^{)45__?T zI))668xc$QN&g{kt$}|7VFky*&vb;$Y8{{T6Ybx=l@6gIDk<7`ow#jOq2?4) z@)k7v{(WWFN-Y9^RyEo)rSPdjDEj{aj;Y?^12Tz6`QZh?|7h1IJ%n`jKbDS4^}i@LdwQA50skmF-~JcEN3S?|M*kz{e1^}W*b^+f2$kyR5;6yM2E+nEXU*vw+J4W; z)Cu&Qfz-UNL4i9=VI90(Uxh!}&M3C7PyfT|t2arF!9-`|1NgzlkA=iG|kJjE0F~;_sv-c6pvjj|`?;8Wo zSJ%`>lVNzVv#9^*5%l;kq6v#9XKQ_sJR zoT6M3)Xi!TpC(U)Vo7+u3(NW;nJ%tCz>VGl?t&N#xNMDbP71i82cU`Wa# zAaY;q?}Rpu)d8n4RcrHFV^UE6;;V|7kt+UBd{;2`O~D?lvQ1IkXEY3n>x3)<=R5rP zEU)(^)r0XD zGSJTWDAjgCJ}_jDgji4{Q`o7qaD!Nwa6+~x{D|uNfd^JLnYUBJY;*wPk{Hxm1c(XW zPj{n0VmX@%+It#&IVT9pu%Wr$E?@xiXu1BW5O5!;66Iiy+&DQ5eGKKp;A;m|5~8~C zNSlR>5GOs`*kc^~AJ)CMiH89mee|tht zutx%NI9ZiSpY9<^UlkSp&+U^p>gJEdd>lXAFNM$TJ=%~yd$7R!39o6&i%a&swUTTR zr|=P}^Zw{7{oqp`YmQlLqyBN-^VisJ2libP$tW0$^|66UF5JYj-v21&C8J=+C;K^> zS)jjrIA>Qm26`r|9zz}`sUSx<9Lel!S(+@8m5J}Vjp{W=RX(nhzi^{`fq!LLPj>yZ ztolbwqL{}GpYQY^v8`^#>y(+`wP`}1xEt~Or(R1I>vK>W4#iWVv>R$Nua235O$FMd zc7thXnM+6vS9FlQmtx!3Rls32n8^F|HalQoXS4Z-y{N<$8MRtco;Fe*!@wzQQn>iu zE5u>PSLHDD*(N(JtQhr;U1((W7DmnZ_wSckjK&d)*@gh zNYJMPjdUf#i1)hnR#Cyqq*y7JeOjW2L(cZ3TqAXR^taw!!)eOTq}O2f3-BQ*mWB}q zD*GTR;FEPB5cnANN$T76$v65dwMAIrR(8jc@VMv!DaI@PJjMyU!$M{huM|7*ixU}X zX?F2Cd}|CSAHlApU#(O7EPYliWNhuz&i-Lh;m_scKDjIYCadFF@dfjx_0;?cwSwhF zNJmx%jGkuP7^9g6;hC|&4#@qzj0ogm&L8vGdiTD&0MTUaOn(Vf2As<29}lvGDA( zWutq|JQUwr&Uc@>F;U62OiNJPk+@js+Py><>yhgN+{$YXTi8k9cI-e7bZJ8c+o|fQ z*{yjqG8q4F!SN78;a!^E64`&Qu-W2ut%!5lS>SjM=^>e`3c5KV!dkoy!2Z*-G7YvKKjb-m>a(?^qk1 zShK&VqQTo+)l;tIa&KafA_ZR`yYY=o+@olbFR|Q<%pZUG3ZD2rr=Js^nr~uv`yBCV zCx%f;+Cqc%_IFPz{fR)~KkxNnS%j6=`=OuO)xqIb&6dFciXUO;)~Y0Ry%RLk z;`)-(ucBPS@BP3~5?O?8Z@kt=8FeKOifE`}TB>Df1fqJYEIJ$9=t~h>qo70 zR8I^N`AWDq4@|64FLgvuw6ItP%_UnlZ~WlI*yap@diHR|&{=`VV!5B92Y5+bpKG0} zX--sb)@p3N>6qB1nI>p%w-;USG4)5k@lm@R@Ci>Juu;_Db_5bY@32w2ME^&*l^TbJ z<4m8DC|+9;vVctxjU*~e6RM#_h}Y$C7L;^Zx-)n58N+%p1z!s z$FR9Cnh7NH#n$cw`2U3vDN&;M!+5R_Q`|1#Hqy%wrjc|b zejTo;LC?|z-oEUiqSjEIeHDFHRiZ22e*2`mxE=7puf95g1@OvRRcadCt&Q61zM4Wi zr#&MHg4{KZ>G7DJAGjA$25&qi8K|NY=|Pmi<&_J6$-XYJmV|Q7uD!Kgkl1X;IZB5t z{*ZslYW(W0xaZ|eKxsT{m%Cr0m6i59U?Q#nJ@Q7zb!|QJR3V5w$b+gbp`qx)<9%q= zr%x_FmjuQ8l^rv~y|s!9 zj{bayV)Cvn)dCONT2qTB3>4Hgn$}tC6_{gg`zPI@0a79nDuF62hyDKD_IDy;l$0Qe zW8vY(yHgxz{j(jZRu5~mG)d9(EiOOoBJUuogW%iNh$rR3dhC5NIIz-%J_Snsw>5UywBqyM1xD)Il#gKz4LaPt^@_Yp5xI1IVraG!7u z(jy>~_I~9*1k1Q$o9A|)FH90U*VPdlu?gG%#kXijQzpqYlINjhA#OLCSzjPmM<`LV zGQ!k^0e0awO;;%Ap9mD=oDm?|Ah1lx5Rqp<4rJ(E0vdTMDfdeAU&P0=9mtzT;eCoLK~{)~ZE4EClUl z9b_;PkpqRO6SkAz5DXly}QFNdXAnDp_un20xYwt9G~z%qM*V&K+4Nq z{O%C)emIMH6DFBH52F3IGbl0CYCDV4RyolIDy!275~}68O=xofG!*wywL2C}G^ z*p|QdjGRr2yn%W+>%z5eAZ*sn`uj)EI0uRWp6|u^hk_ap{|>Mx+zd}8wHpuZN$NmTrhDX;vjO@9e9Cg{JsS5IWk; zw`oTQ!+ZxcGGgvec`4`vm{ zZT3j#-wq|kj^z`QSV2>49SEQ2XD_6Bo37W zvcJBweso4RcQ*0i4~uOHz~^aRe$~GH?S+l|*>Zs!ce6o$veO=ZiL3&IeHDK5{w~Az zkmxQ|+bpU*MnkNJhwlxUSz2~r$0>hz8aG1e%duaC8yRH4s)*^;o?xg?CPOmJq z?tFuP^gbTd$WY92gYwS$O4N+D0-B*E;Vu2_BU>Z(lH7>&3xI6Qkxb5CS!3nck$ljF zRFxf*%tEwsTymZsiIgFLo7jSj(oHsJ(lxu&ncC)AdRY_XpW~oX&!aVOAm_4~W&9+~ zMm7X(-^8Wv zAEqM?+7vE!4$wVDfN6|ffd1z|5zPL-OWN|f(O-X^NTJSobQ~?+Q=>WEB?qrP+5Wk; z6;i#Z?ERK@G69S?OGM2Itujd;AFt*Tub>@$ys!R0TRZ61zOWPW#{?BNX30@J$rBF9 zIU(Qp>9AFJQVXKWmJOf0m&qS9nCqtKNj^&px%Sc{FLn1U(smTf_ z=wG5JJ3j+Kcc_bE+xMB?XZHW#BCPI|w!pN2wp@~Mim9Mgz*$N7hnW>aA{w5%D^8@H zgHOK}490edG#b7X@8A=S@;wxE3f8`%Vh$ui)t?QMV8?#!d&wqEH2(S2e)9IltRkxH^ zd><0|4t-W$K|}}u)e(Dd0DYT4W|5#`o!B^Wi{J3{%DL1INqNa^rubmOG)$KsMM(yy zS{&(j`RZlGO9vq$Li#}8_l2wax&7sS_@|?w`=RBgyZyH7paxL>Y^xeGqm)>b#X0SC zId^$ukfjN2G)O<7goL)SVaT4)lk_u`Zv%^FWrA=#QfyE=4j{;ZH>$}GSMH$lfja8A z%Z7q?I5&z16cEM1q5d`6%7C%6`|&-Am+tS&uN{YF0^r9>)yGa!9|^V@PWyjV_SRuh zc5l1z49yJP9nzpMfJnm(Eg~hY;2_dSqx1~jB_JqWGSVpBA>EP+64D_I-NT;e+3!BS z-}@c!{$u}p&)h4nb+5Iqb)DyRt}yNOkYK5fym6!cmQh?pTSyl>|F99_VAA#YS1sda z5k$q3e4s9<>ON-Zv$lj&f)Bd9{%AwNim_Vm{taUfpfsMnWcGl@6x5+~Axqh@k<3|C z=9c#D@baUsfH--?%_WZS_=)Z`VL}&so+KXi>z0=$S4W?G{&c+CcPqlvu=`c?b7?%$ zjbtcQrzBVe7iyL=8IFxOcV|=b5oDYiQbyBG~>Rm6OI(WvrK~h z>39__Hkvi^V$LE_!2eB|YjR^%2vlqg=NN~g$+cD~k+g+-Sp-)D1?n8#;TuC%fb;Le zxXM|MYWy!r=sGsg_mEkx&4*>xBp0Nw?B=32bBq9-M2KK6p2Tme)nF~+2FiR`@71<7 zuVn=|5GTtRvD-mU)$FMD`#MtLwKLe2oUUVq2rlbQT&fxJ^pdw6{)kG71-!u61)6OT zP=+bhjs~;vIPu<0ADy7TKdv- zz*0I(0Y=Jo7At%zQM0YSBc^rdNMk%9C2v{`ciCwIX}N&?gcM#8-x%j`HK7y%d@Yi4 zAmQP3PpX1h>&gv`?xsR-kFJXL2DCg>AuUvWQc;Y%9VV&clQzr5uiSiWlL+FlU7-)A z3nvymt1N)e<76UVz$<4bBSL&onz^fR@o|k;hLkA#sfpfnHp;s7oVtx#;mVVV_mKQ1 zJ?X=ynjdhJV0>39OJaEOLTYrxJXc^T%iGOz_!=;jHCUiwQA!UP+Bn;5umfD1zA~a6 z_&ncE@U8uZy3yqWI~!kT!uIrPdiINnTsdItwNU(i7P$HAk1xSF70*%$x>@cc36II1 z0AyDxCc8d*aj9{Cdd6b3*$HEaR)(sEa{R%(Zrz@dCHBIC@W!xS^|&t9u)7CoBU+&6 zBUjzWThh4__S_T;DH$zfzAMxA!gkzMdd;{3B=L8CxZq`1yeihjRoGvKzyil5-yuxP z0Q4zs86X-D_UNia6W%rNQk)<%-`b2PoIxz9aG~_4moS5xAMM6ImV|CEsTPIJ?#Z6b zdG<&0I*WfL5HL{oxH1VU)7Q))TQB_Fn2VE0kBaP%h9yEIwlA^SWrgapr z+tRV=&9A!(d^gbkM`dEu_9IhmvR{E-XiwK-0L?dnSya?zzLWqd|~2`s-U1KEg7e0l$iM zO7C>d?PF0PZ4^mgGF@qpjbxlEGxu!#SoS-h}^^+64G^a zg5k1->XMQVHE?^&NWMR{sGK~|iO2hJyJEZUno?G$8`H&pX7`(0eV8u#5ZC|ku!oBW ziuej+cu(5BbI2dsPUb}=k0XdnhuO~^1+LQtftC#z_fnpi;4mELpAVFglmN(l(FF=z z=wB)Kbnm8)og1X_zPpl8T^aRlvimu$xxJ)$5%c`{H-Z|`g@U;UaARwYRvjBn4ie{D z62S<{miyNZp8>&SxQzob%DPNb5DLtrudl!4_?ZkT=riu|;>P^Cvc&^qt!Aw&9h(^A zRsVpLiM;f-h!zm8vUU^|@=OVjCsO5fQJxAy?z?l^-$H8nv{I=CI1!xT;UP4_mUV^;_ zWDPmpS4BcB$<;wn)o{oo=$w+ILm+nl<)>>f`rmoUWGQOq{~pOyaQ}Tm`Ru~=>yDVyvAvl6{ z+K_lZpbupS40v3jRqhkBMcHmh)_e?04Lb8ML@0uYDx3E{eWQAU^%YjsDVk_8_Rep9 zYF4_IBJHX({~>i^_tQheceNxb^{kQ)vKR_+qCYL!Ge(;NX_fdGM8=kq{%M-kqL&h2 znW@sV%=vqyibr(!j$Gs_whr1vSuBlG4aj&nChmQ=^-fd}T5Qd)0^AFg9o}?d#&Mvl z@Xs;=$W(yf1;^ekiP+mbD+vX4;4;q z6UI{UF4!J7QbZRpkHZ_VgCJ3Bz8aCt36(^Z0=YvU zy2#{u=K0xX4|q8(N7*%mrG{OVIo&Y(O1k+(dqo8>A)7m^xJR)pw|+Z0hEIz#9C1bc z&SY#U6{o)z@Ig}a75xi*poI|4!uw`^<5@0pOAYIgzUT zMmQ`ws+SK{L2j{0f2oV0EknMKEWi!D8L~y8(xIm!vy~sq)(Li!p3FweZZ$3?W+^wPiLdl zyZ=I0x7@$rTuU)c2gE;@P>0m}B{w`uI88cZ z005J%J)-V_9jY55YDp|Aj^)XaNeDPTjR^kh8S=$gSv!oB5XV2ifIV13vqyK2vCgwA zz7e$15GvDd%EiYzHmzYIZ!Rjxp)z$^EVle8c5@7b)YHXUKl+p6C@69eInTf2VnERR z(7C}BdoB^C@M1P$p@oZr;g#!<;Ix1K-U*jdW1&r?jGzQnQF|G3bjov;dp84Yd-hbAz8hmub<@&f0$etQOAz#{{{8=G5nKDF8$iWDC0pn}JFukK?ucJCQ^@mc&zm9gE4H)^u{9mWbXki9 z%MYEkI1rBq!6dS49@rj?Soi0MLEg1Abl=C-!T)CfM8mM1^bo1yG5amkI*RqC|66qh zZUA3n?q+8Vn3wW!#DCaw{;`JG53mdFgS{_H>Ox_n{&Z-@>~L+H)&PZq@g9~S?A`VRg(qOR&Qg^%qn z318JGqLBfEffwOU|875Zk@{%qkK{`unU^oZVQ8mZwnTCx=nKkOKX${`0y=*^kzV~h zYa&m1%TE>$Ss7V>Olvw%eO}jr{l=(T7G0$O=n~93=bqe?sda*|etvn|s?+_$ zu=)OMm1i*Ok}{n=ki;3eeb|&su^tflUUtxrebzU59L5=p6BZiH$WQvYZ`Y!AqYT<6 zKTI9Q29gs5v(DCgvtbV@%}4Hx1eT=$bePP-FAyqdYm7h3mu-@e=O&-7?ea)e#fLrr zPyE$lU+rRw?NqRiNQ@cTDGM8UO!M3j{0m@9^}E)zqB(J*Up@x^@ZLsu1oTqv^53@t z3G{wnH_XhJvFH&g$WP@(K<%FNja00PrFYNZLVT-AsC2EKy`A-ewfPe{nC4$FU zbpH$LnV=F?N~y4`XgL16*jKcu2U2iS?|jQp%W|SFXVVw5708$-M)UmzbnR91<94xS zvHlE_#EC_iobP4VR~&4E_1x8c4pvQEsAL+7#8B4yL!a5nHPM`|THV&cA%m7FYKq!c zoWV-fX`M#ETv^B0+v%;5J6?%DUIbDW0s7MtVCzwT6jVC1$j=oj{{3cF1vkJy#oO~Z zDW^HcUx|eL)qwj_8uH|}Z~5wQ&|qM#k>7RXJYQ_iCJ+kvABL;RQ%Mb8Q}Db?`KJJ* zA>_Q$Ck!_U=9O>=*5kQSjs5iU0ipA%6szjg7)QxJ)@Xj9JQu99DT?FH)wL$lD~5gn z1*UO1V5$ZwPsJm5{uyW+7PbD=Wh=Y{T^rm7YAcT4twO65!}+nQC2}GB`vEU@NB9Hr zn%JPi7T-~q$M~1Iq4~@4RM=4~@a_}}7X3$3aK%TE=-(LpqyJj<|Bv*{|GaSHi!$?v zQ1Z56j+?{J-kob{a#Kw=E(-|=Z1b0vEKJY;{OP56&9(lQ=UH#fhiSH1a-QyI0!p83 zWH|fyQ(%AkBQYQTT95mqf4P)x5l6)65n;(RkrKKWV3_~L5W@RntZ_~LlsYZb+{~;R zMs#OMXgOtTta!L^H^Orl>|wKLkj&pV;ppcvFw`%ChCwF zp>+*p7xB7#uD^nFT%gYT2%RYWu}+&s`JqsI1eDklro_e!X?zP^kv$t|2C%ig1g-q| z@gpzl$5+emh_3ggxgKy1!wM?Y7Bf!jI`NhcerU0x7AfL&vxg1i7V!%v4dYdHLi{!N~QY_nNsiWxQqAgZw1_EPHt4M~jV! z_62r6ybJKy5_w!s6U*X74&m||c@Fv0WX(NBn*K@9;v%+dY%ZS*bd0Om?Q(8tT;|jrUz1t!wW&<|$@H zflWE{G9<(DtllMbHYb3xH|vpJw(P-iPH+}hLaqM7&-ba7jLXf?cX)`4%v19RQ`6I( zTLq5mhrPW8>+G)<8i*e+R^Ea$1AiOm3LDPoB|GG`1(r3~wA{!a^tu$r&+;6XNiK`5 z`0RpcpBVpr?`XI@qoa^54=DXedFxQ*ul8b>m2gkT2hiR0+JI>0c3!_x-W#2};CwMk z{=osf8cliJNC^yhHg%=P(0u-1RQt-7#z~fZ4&wDzWP^@bxqz=YT!Eg zE^&TU!KZeiuCBJbqf?mw!Q=2RGmA&cjq)|6roMpNF5HeZYI$S<%TiKT(6pdagF{AB zG&5*KDW{fJUMe$)u3oazd{>%%7Su7auw_a7oj=r7Vd^<{+6!?WaO`?JX##V-5^&m# zOjc#TA27bWiJ$iqd{n|ORS+I8Zf1Z$?u(0QdY=v>+k0Ev;JT8llF1(60PUi z3ul;e#<%3#!ET5r8{hm8-_U@jAKQC!fR;|{E?m^loR+|)Hu$MMZ04H3i z)78%`cfVolG@i*f0ffJrHFN9BsHvi;eiFU7&ju*(cB(UJWz@Zhc$UvS<*G%oq+ohc zx&JfSwe|jXi_d_BVCeg*U@Jf5jJnrVl9h~B0xg=k_+H@PY<$`e!X9Sp)@gTL%-fq3 z1-n28PqFKQhcLGdCK@iChcg=BK$Rig^wYz!j(*%}*H3dFK&9;8+1a{1(g`MwA{`Z6 zM>cb{S+3EIIbl>u1gnQdUuwMLe3+q+6fx5?GhOH;E6bVGU`Lg>8`<^aoUkO^uI7dv zakS;(d7h90SRyJ9qFng#t%y^CUY321MKJIitPDC^tr03i&Dxd-#=ZK)FS71N+d+u1sn9Mm@L}GrJWlOtOi*B z9$&~o2BoNyz5x`3_MvY-@Lo9Qvr*j(@G~SfsO8C(od8}BHNU=*cjE@06v-R{G@rE? z;u`9j`{m0mHTr>1*ccLj%TMGRxBK4*-+nMx2%A<+>`x)>`2%c#Q3R(SG5U-cq-Rj| z`ZjkhSZ7Sim!hAuO25LpuPskipB)Xl9LX>_w0inF_GX`DP)MB(0HVIHQREu68I|Cd z9XC_-FrBSZIc}?uiHCEKAboLm9Y9K&K`^ZdX zK4kqoB{^tiw=!FV36E@N2XUJ7R9v=OkDxt|hah_=A0c~%)XV8t1Roc%8YaXD^Af)C z&EgAc3v_9MK@tY3{QgO2y5S$rXag%eg#VUoVbQT{my*ZTo3@#;U zEUO>Q+Pz9X5*12rnx-ryOcC1pAa>T11985eVrbCekum!u>ba>oDYcFq6K~cOpj%sk z(m}ynkVN{gGCE>5J0e4&ilWZ&L&p*Ot=i|`4fbyYmqZ8JZpq}3zp5WszIqWLADbmZ zCMZ~%+g{0>ZF;Sa68Za{4f)af;G|MFukFd(YJ~YkL2<4Ss8r38X8)wvx0e5AwlEep zOg>MGmJ;APN*Q<#<=|r_|KpeIZ_QPCG!JI+1H4}UagaSl%IlaidTu9akxh;|%_?&f zaC#70Rnvy6q%f61p?WLea+`hv(Hab{I?_L)Eg?jTUK}0iZ!t;Js2M#CYReX$tJ=0l zp-{o`pAN-F14m8i`)e5D?g$T?>zkP?nA?d4v&{&t*J;P+=fP38vZ`(7%j$94PJkiP8sVneHZ7xtPsl45+R^D7iL z3hpMrvCj*RVdxDe2NJe&bnh<$l){dR)NUDgrGWjCA=Bqd>0)ca1CF^lw(JZB!$&?T zc0Chf4^q5ylaAe6AYUD7&U-yPQKicte#tJc&L0Ef&w0=Bdnf>vRej=R+~l+v0t~*gDtXhb_D#dO=hQAEuDzn`^+?!| zllvJ)T`$jxhL5;cv=^~ix0lWwIvs*FDu;m!eKj<6`TpBd8*esuQHn(43<0!;`i~TA3$Jc`r@=+Q@%PVwX?&742Zh><-HGIO{6;Ci0F?OKqw z?d%(ECBYmO6Xq41NNhRpq**{mD3EQ`Ohr*k?OtG(?SpWIJs$&=RwN2sEWD<-#YVTp z3{vFt(ctu%og`k#vdt_=938A*6ofrt>w8|TETz<6(eCiUz8S}K&B3BZ=M8Q8xiyzs ze`1LfSMx^M_dhc;HGELgW~<`QO#z>MF@*`mzi6s%rn5%!0O&FmU?jj^+m6HLKs zy2U}(<{)lImyv@o{p}-}{o?CnGWomQ$>*GdzPtXGMfHPyWh31Kmr6=an+a7j2^kN` z!XIi!sIoVkfR3MvIEDWBs=2ji7m=ra)`>npgFbyG9$U_WyV@HUF?iV5+0~QQ??3a# z1V7`^o#B33YAUQJQIJ1NM%C=hE-M3Aeikkomnap;lo_yJqy*=CSrDj){Bfk|ZFBqb zwW%(#fsPC@uXbrfK|)E$5w%We!pn=tKXuLD-gy4>>mLO3bLXB$2Qw=_2yCW(Vx6Rq zvy%?kSy%2jpudB(s9;wObTYJ8Z2R`)%Q?BZvX7OFp|q~fJv<*UciHqRf6aEouj7af zoP0Kzrv?3yXJ!jkZCSh=;7heWX|O(nAS=a`E^@-HvRZ&OrQIRQ_IuvxDv)T!A65U! zrD8Xyvy{k30#SNwcZjDK{sLyUJa@2N}j`VhXK zCFdr{{fh=xFOipqsaG$TfeWcR#-EMlmFt>5g1N(8IGw5#{9P4mc$(Hoa3MgwQ-arrQRV_j_OO zn&MGmt_Ij0-W*YSla(z(liL%EL%-)77X}5*Dzy6) z)L`_0aIO<{#jUP|1*bB!-_*jC*efnMbo?O1Hrq$vo4@Gm?0D6eRruVB_SWu!j-(tH z$Xb{~!s%W+*P$)_hFbw1#Wq7bMeI?)8;AFO(*%p2rr(>N&d9{!a_}Ib`1#L|rzBE% zv!5`lFx{ni}SfV(6B6Y0K z*2e#`v_|a)=8N@kP5`0E14G>_xjInnq7#BGOz zo{HSi`pV8*o07G)(l@D6YN{X5X>xF;cKnji(OC339>sSO>D|q~S;ZZ{oDnj$faZAv z@a$o--VqZeWcg!?0<5~dZMli&jTD8hMd1d97hJj*yMs}SeqIk10(4LijTLWToH|yP zkAv@(q>Us!qa*a0^hJL^>uRD(*I?EvAGx9J@)Geg!{-u4c>hI}A(CuyO`1~a4 z!JB!~)~=GpWd5M9KX_3z1E2Z~I>#ULb#;Z&KaOFg?M?b%^YaPn_4T8<-!WeiiYY9U zfCKhLT{G z=yzgm<>=pJ;k2ra)7?U-WL1Z_?>awAHmEqL1)w;i*mWEX`LII4j_=;Zm`Y(Z1dmMI zDfie6Ig;49GVSkT7Y$sHVlY&|Bb(L<4T}*@?DG8EqzHRw%y;tkTO^Sw z%&41UD;)x)3)rJ}Uvue8QXT-p=bRzq6;K#aJRX+ zE9z37!FZ9hG~3tY4AK?8#CLtYj5=SUX5oPpz56 zf665-j!#?{heIV+iEel(9dgV(GD}@pWX``PY3cnYoJ;C z)S(Aj@rS-hb(xd;F(v4Cm&t|qzzkE0If9(D-jSWervq@6(E9<1_PwEmBX)cTQ-`)} zOLYlN>xtyu!p_4g|7@Wq&Mtqqk%|ASDmc49rP(?+m&hvz!s){xbxqYdt9M5HS zO-=EIa#)b6wg@GYE9GT)K51?(H5scozGm2a0molJ*7bEr;b*nC#_|C(jAA*1oYStT zLR#O9=G@X6zVZg9?zSYhJdv6F_>&PY4ZYg4+m^Aw3RPJA@zqdbGHi@Px<0Y+h6SiePONZ%ICPj1K zGgv$$DWPnxaW*aIw?(M-iP_{5>W_&1Kj&O(A#&~s!P0)NRU|@ z8Dv#FC>FP`NP=6yY>m}A&#cpZOIsvLG{=RyN>8@j65vzrUL%n11#D6cs(YK3^`H*Z zuC540shy_|#7`d`i7|3{J*icO`2tAP7^L(~!JEQOCU3X*7LR#r+7e2=Nuk?rT!pHL z3n;h-CV7&_llAFaar47_f!qL?_iU-@2bftK6k|zDmLi) zmfq3a;tE&Z$=~`sW11qHqph_DK<84^s@Dp>r}FN&K1#NlZX@92#mBbRzYqgbMqc@J z@i94BX);)3LMp7^LB6R3zZn$;Y1x% zROuMOgja zV7{bIk-Fxz+nhD6LTuc$<>5!bCV7{I`ufw6@q~a|LQOckFYUdt(b2aIW@e;sD%<$W zrCEX&++K^PSc>rO#S5lPqLa9m6B2447rDa`;Jsn4&dtK1s^1)y9K8SA&uB%qd`^L0l->XKlld$Kaf-@|R8u0vVS+9rqBaG`cj`Z|W&kG;ZP{JINq_ zGD>L>q)pnUhV%Qc#*$RWwqStKzgegNRZ9qnxzS=6Go|yw{jI%yPdIsddrO%Ie5=e4 z^Xt$+_>w+T{P^=Hm3jHQn~|J@5uQpiCJt5755DbztPgoRw27r28>4=whT!=DNWwcJ zgqxkr?j@nLZ&mW(g%k^Hk}8iMKUV)ap4aRvE88qnn&)q)zPX{gnf2C2F@;2j2cW^Q zrY=4yEuS5vLj1Vty-NNYZkAt0MnC+=?LT%anE{wds=6LeyLYi#RT1Vw&54ODr*AcL zj%86|D6r&304$C!XgMvr6Heh?0np`NSzz2+#HZ{Af%wPmg(;-v%l;_rtQ$;H1=EzJ zv}ef0g|=pTYT~A5&;mm``|XJ|Xfd#NyGOX@%YQt}O|%OL_(ZyXK0ss2+Cf^yabALZ zaj#J6mBZbuDK%JjhY+4-^c$Zqee&Ep`*!GlUnU@2vcD z^N}_UQ~`_#eFhVzkD*`#`Vurz5sAIk;oyOLVz1P=C}q>8ShvD5P~ygEp>1FUtAT|B zF2tdDu2KMqgq1SkmrtbBIX4)FiuQ*Y34-LTuu!)yks*-gJ(@2_1Iwxe-JR&W37|9q zu-S1JeG*uB)bOvTnX!da^E6VJF*ro&86b@J#t`OgbGggG1HC4?i93$PD<>-3U$N#5 z7&q*J&sGh?A%7xtn}X=_(UNAKU8w8gP#d>UIL9(I1%XGO(z zmJu<;dULsw=O$tqR^}$YS!~de2sylIE?2Bx--4nUY^!r^%V3+8!3XC`iU6DZpomuj z0GVDihb5)DJUoxY(oz|`I3>Pf{_eAbe6frYC(OA*R!81xe^9%Cii-7$D@8~r6t9jA zng>GAAniz-vpiVB1c(i2ZZ0BxP|2p-+gV-vn2CopHl_TQTOivHh2d|8!FNaYXjbe+ z1Z+XxfH1+E5bVL0{&Xf4xmbaGZnpJ{Wasvot!CjF5zQ4>>WNJ@!2Qc_14;(EAIeJD z%;+}sU*LDsi&BmRWD5{a5Lc)YU^#OU(>D>VPOkbUw)di~L>FD3#D|<6M_IF74#6R@ z%R{)4G3a`5mQ*!Ll)Tx~lYG0aVrsvb=Hywi&3(d%MWBW48gc(cyHudbq0EmrI08I9 zSUZEqKpbRUOZN0y1yvxddb9h>Ck64n(_!r=_db34VK2I`lgCbTRfuP>{<;Wns@GO# zV~ZD?UXmYHOrgsXsu&b1hRLItxjQ-0R$I?sHmX#$tXx#St*606_r#yGqyoYb8UrR_ zA&|<~V>zbb;!$GQ!Ro5T;a6KZ_{>Mqb8$E}A}3!0P-iP()QH=_>9X3Xbtn)Q1n!LK ztZ;;yW*}F)u&F^w|?n0B@bs~q3!A@8fAAlPbrljfv&fAs3yQM|O^@k+5uo?~Y{G=-|)E75Uifr>w zv2i{I@VbPEnqRANL?27si}fHcp7a@j ztTbuKtX}yWNBrI|+oe5jyQs(p!(%@(An(H(tPd+;hqFzWJy7m9=obzalBFTRWtjN* z3r4CAP789%i1by&p6d5AK}@$oOj{g*7Afs$fSXH4`u@jLz}IzxdO^&@wMaH1Y}hdz ztz0-gZ`2JmlfSzkSg8hJ?oznPW&(9ZTffvlOxC@5Zo|cFbp^KpJPd`_31TQuZ>pED zcU&#x_bI%5m%L8@{CiH+R`>NWx9778AL+BYrL-t>2RwiRc^}=NeBU}}oan6>_8vGr z6G6)=39+$^n%IL)0;^6R9PiJLuVVbVW&6TCI8Pu7weC}p?@um~W#@ky+C_Q4%7BOp zo^r4}&ypTYdXz~Bb$FsumoE|I;1g69r?6>)t1(e1B8S;~cld5Raqe2Om;W2LYdPfS zjKC|O?yCzKdXD(ssB_Fm1f;H6&d>Z$lA3^Hj`_3m=MgzfR#*8909r(Npzm{u65jaX zD7iR`^Va>L7eEpqZ}bF_2My)oSnVHHzW0n)v0@BJe$2@uMd56I+w`+UJR{y$L-|hn znSU+LpD82HJHs|>)0w*!FEV;=qR1#~&s}2m*u)PB%N|%^$RzMczZG=06jU6yJy_{H_q%#G!km-iY@Cen61Rv;`^*j0|Z~K+%4Vky1-+%BV5+) X?@iZ>2Y|76C;}d6V?b3gBUzH!cvGe#JMon&Y4wbq>TDsvHIY^Y05%RvhQf#~)1wC;mI zWLf7w)Re%HP5DYo5QtnMKnPRwF-D7Gai;ImVf;(`BU!$a!w39I4PSTVysHCWPioC#@N&|dVAsvGnI(>UTQ>>4O?C>dXp%vv{h5pY8B$(jEEo zR=9B_y#C#$&@{n+#dM0-(({1bdG$)>$UE_*kwQu6(?_}NZItWaVD$+0N$Qs;?@ELE z-Tc2&JvsE)*i@`ugjL;v-hN9dLr`(3!PcJ+iyaLjVV75#4m zXxevrdiO-s@xIwC@W-xdH!HO0+mO~0mYyPF>6$!AxOW<`@AJ|Isy`Ki^3frEiO<&8Fv~yk)Ikcj&V;Nq6eZS-4MvU71e2TCWLT z^vQZsMi$=U$R+4oa1r+Y%S&HF<)sPL$;!IGhT-Y2PY{eP_n1bNhw(?NApDmAjt?&g zC#n$++M+^%{gYJ33G^p>G7l7e>K*73JWn7+y^3*s{+>j)gZD_O!(6?dhLbg8h9*7e zRT9Yw5dGx~Mr7+k^|Zn*l;9}be|x_*_M<-K=3DC5%MPdCN_#yG*f z;T}1GM3YJkM_#-)MtDAYPEZmimLB^vwo%DD!y64$0)D!Q)=jGvjYn z0c26L@(~y6D>9Vaxmvbo?&_t&e4_8V(i!wL+#rnRP3LbFFzOv0X)AE98rUgFyeP0; z4__OK$eS$N_~Z2`E=Ds*PmC(vxbCCgg?78&tqc~&iG%D&_P#isgRG>|ozugiyF)Ir zNIxCj6&Z|QfBJ%(iwj7d@q&75DrdUk`Lm=?Z^@W0s52%=8M-dS#>QrGKYsqT*d~B0 z=yEB6E8ZUwCSH5Ec2wJ;n%d`O7!XSHq-t|lfb`f_9cRC;AQ z_+zxpL;_dG*w~(wU)QF5ms~|$ zl%H||Uyym7`SJ2_z@lRJaKXA#6^Q`esT8RDjhAF>Uo*|5%lzDv2^9SYpBI9`W@1`?<43; zUaIjwV_4egMe(@3(j_=zxuzk*QA_Zzsm+#^i3yW<#{lapB#=_rJLW%a3ikyr~ic%^ElCp3N&PgPtpkT)CxQB`7=57gZs} ztavq~F9k&vCB#pmp?0)RpRzlUN{86u(E< zw1Lm@hpTVOm7$vtrgW98w(Dm!J6Pn~RX?&;vKurA%9{03fg0u6EyN~|W_KMQ7?Li% zd!)eoOBVd+K*j@JO{-s7xG)s9-O@&a2yCu~p+CwdLDt?k`ob~cPkT}d$SMZzdShF3 z>d7<&S|1tn#NNIL)3=sxwJaB`EAK9H5@6=IyG#LEYFPPpRgE}GXHliXi9*bY6J6WP zr3gu^iliQMpNeYsv_|YTBCalx3}oiitHG$YjUrv!AddfJyzp)7HFPcvk{Mr&`W314 zYK<2NFt|IGG!>?8qIruIow@F2ZV(9WmNC2=P+M4aEi-+yh$po50tg5_?$T?PH@Lsh z58t#sDtJX7Bfk$nntYb=nS+B{h|694Gg=o4{djnkO!nw@z@4e14YvNAr+8#K3=zD12Rp1KLTN}=~=`&Nt_@KRdJ zw;x~}-_XRf9?angVVgStRl3hk_z7tqkHu$GInkwo_z6_pDhAF`mG73H~?6(aP1d8rGr?7)h4&?b2| z){y_hO_+paz*XG0FW(dA?24jTdprRoG|i;BAkz+OU^#f|hO~~$DV?tA zQ2dPJysbdO5xko(+BHxATg5K?@R7607Y>7ow2xo$rVp)LhY$VKfO)c5m0;ZkMPP>;Rt&-u zMDS5G+tCB_y6WnLsMA&xM|AJ9==Prhei}IIEho`CXU(lEpLdR;}zvdi! zH%#ff`V{o4WjyKG3YP#Tm=iSHJSill7|P9-klre!si{|cAP+3Q1>mT(R46w^OUt#u z6|S>DxGM13+%f0#>v29Ghx~GRS_v~ev>~rVdYPX$@=xH?`67P&HnXn5;jl}5fQ*c% zk;<)wLb*@hOYetbz+5^cWq$K_rRH_My4?@bS2votcg~oYx9jQk54_q&9d`I{V1<62 zBq>EOF*MK}|NKQ5t;p?DdXy(q_c-y?GMVz?zyAX;n-=SbdYN!hRxU8%vrljA}hDW%g2k+Rkfu zbZ94~7}qo_b(MwM{X_aHGag0xs^wY@f?IVbN&(01+ zHNq8EI}FxGRW23f;tf}j*p5s@K+{=GFKYWUV@~4Bc_I9qFW)Vx+%Lxva3%Anb{UzS z%UN4`s|G!j@6h$*H}!wMwnf(~+tqwY249$qfIwN3nDI~b!mt~pJ~s2L+WZM=xEvpc z@p;CPW?hoGp!s*=t7?e5O(WyFf5zw7<&kGu$_V^R9nQfSN2RL<(aEUKfpk519UEc@ zG{)-ve@;q^rh)Se{nR1#j(6`(-#|XS2R-cnt9Ex}zZw~4Q)#bISdhDViFtKUh1ahk zbsG|NKN*ty_uHY}v&dJ2UK)2~maQHVvHg_2l=Q z=&(;@!A@AvN^@cHm$mIzLPFN}qB%UE`JEjyxm2t2fuy^9b^#&WbOx(1jSbwVIT+~7 zaHs!gUgD#yXArD`fIpm#;{DL>ogJZ1+rIpy=8JthV6Mim=-z-7ktNq*^{+9w#ZcyFTu6zf3OVF$}5= z#i4zErwxpa$=h_eczCE--@m_a?IZT7dG_&BF4RIo{x5;!cvZ4{U&E+mB*`t*^XLI?Oc9oWpP<%4JPr)SIDQ-7F^4P5G1SAYvc z$SZ~mP0Sc}o+Zi=x(ix@>T4L64kZ$nNX^G$COlCqupbQ3^h)2bxI3XY2N@HkD5Qs< zIW1nJ6?DAF)E6Z^H+1{n5zp0+dp0-<5PxweCp^>gP*#x2(4jfskBON>5^uD~nzKKu z;L}sHcY-~6Q1jkYYN2rQaRGWCC1tw$UUWw_O02_h?wC|Tm0?oQlW+hwsC|q(70cg< zp-QofJl-u54XYRml#`X!lczSHNt&dMm-@IY#<}s~!-soOxYelap3v~5{XqYxlth(d z+q?O!yQ|t{SBl0DTq7*%^Ts=cr>9as-E@)P~H*kaDsS zb(EC5UQcg9t`$BXdPcMFpp_O@45T|D!pV?%J(Ir;0(xslqHPe1s@4i3;(js(72A%x zW##SE6Ni5u&Xrjg@aGc9`2@Ic z%^k@r=atc)_z$8&z+=dy_f!e5Yd)9@8@Abfkb#Lsd1ozNJ@&S1J84N3YKn#o zpZJkjA6;A54QL8I145J+2&AIVA6_7B$;*hLQ6g|v4*GRd@wxIahkGdhL3piPRkRLi zZ4$qmg38ODoxc$(cbi?3{!$iU?6YD<0NvSpp|zo&+L1Tbb&_^7e-rmsfAiYv8#bpc zw9l0jzgiDREYk5gp?h^!qB1%&U7u;&Mgxf4*h0VrjT3^aBl~t-bV$Z<=4}xPo@C(2 z>0!%+S%@k0^x2Q)y7gX=uV;XI}I^OFN8 zRi=c2_gS3aTo&a4bR^VbifCdsrgwXn?u~nbm?(=s4*oYF7njHep8;JSRfxd@2$X_R zG&ujw#p>x2$n)ylGyO}e_>p_{(Bf-g1d$3TKvz;A$Hz5mxShw}JK`H}f(4&X3D<>? z+1=6DXjCpdaGgs_c&;(#6u!j)NF`yv>dT2>_=Mkdjk}%NLl^@C(LmUQGFxe`8vJ=4rD!>u0kxS8o5PTk-Zjd zYWo+yzk-I*XAcB#!Wu7ua@GJ`(B3Da@TUCp-ZxKXAw#W|s4+=OH-FslrcFO&SA|@a zOu(p?CUM5+;w~ytyXQws11|5ci6g~#CoJLq6(TBA>DxcEHaUnYBW9%&2 z@7?aU+AW^gbr0%qFHry`ktZhV-avZd%gw*7qHM`P9x5j+v5ouuJ@Mh=*Fq6RR4W5u!34bwkze@Nsbi z3bC*+<>O?at4?=&)HMt30+xy_iFX_3CDmBhFY|_I@5>|S8G$oG$az0NI6=08E zY}@|9O7waSA{*yCkg^Q zDDa^dTGN=`1bnC#(N=Tn286Irn{LY-5%#%kAM6|I8Ei#+RRZ09K7Bqx zw{G#?^Emr20VIr%z{q(cFn=av5{$j>1CY0#Nxu&Q&sEGuOVV(=6MmmKo_ME+(=Bu? zf zMv0-q4h|KD;{|7DO;23bOcft6+&cv`UUKj*T+`Ds3HuVJMY8+oNYXrPmQf}J$aisn zb?*COIsZHc;%ug~s+4w-;p`m-Q<+O|k-k|1@*A6Pq-F!Y4Qva6ifS1?iprw@Ba^{HQGCsd!MsPR;i8=uNZN@ ztD&5a@jd7}5x&j-^ImGSIhtyhH&3wYu`cHk_IROebJACHZ{=KVLR%w~ z+jDo(@h(<%m=L?{Km#luZ_^3%2puqW@Ut5oX+?(r! zhJe)8B1K2MZDal>dcKgv2A}_RN)U$aMK3A>?=!}PUfUL5`kv*ghBKG68{GFe!@sUP zDP)B;VRg-B&m>_@Z4*u&_#uarl^qBr$l|j!ojT|jiRe&r3d3kH{;p;tMv!np@@2$j zj&;x(_R3q9CH-&rG1M_7=P`P6%1P<#@R{m42f4){x0gmakLQI1`S~W!NA}6+Od?{+ zV!5f%(6((Z&0GFMm>F(=kV@(b8N3QBVz*}c>1r(E8&*X6O6pN7pET_|g^QoY7_`;E z+`Z&V-=#difPrUMbk9J50+GWjhOOgGR0?W_P9D=8BtwVG{|*-X;p*7E7bUUWg2lWu z-wwHCM<#wsxWUB8|BehXtwcy^m>Z0rvirc7C7Cut#j67i&EtVZV)iuAxaew21|MzfDgW z9s}aQFH$u zn!)X^APv7MBMgd3Vd~&^dM&{#`|)iVIawvQ%RKc>`7V(7pHnZJ&@(TPjbZ%c3-8I! zWe)zbPT_IqDN`%)N4`-!3p|+DzS+@H4bJ5+lAg>4i;qH0qJ4#Er9HpELeaLBQL-G; z<>*ZxPa9uEV#vf>; zGo(ic^4N^*6rBZCyma9epjqTDB#S-@sk{hcydbrML3RWlnb{9}hZXC-#4bF*1P=GD z>NT=w*%GS&au#OHpU^1Q*bVr1#&}cHfeTaV%vlhvhRUL4E|E=d(>IgXtARYih zPK`lFg&e(0mNE_LNQ3^-@cq3GSbf9{2Hf@>N)kB&t3;zR=G$xLm3O1c3EnlJsev&1 zl&II$E^Oh)h(_j{pVIC}V>3pfG6>OX5{6LY+TFK`2;o;Es}DTl^4e+SHPZkIEFZA_ zqyj&2Y(8%HzUO)n^z^$lw%Kj3;m;1m+zg$OVfB1vK0YvR%C7VHw9`MovnSEc`R@ywpaW4eGjD2c4MYJBOF~bIJStEt;^piB=vI`M*1p;mL|{{DH(PjX z=!xfJ6hqcox_1)98FD5+Ms>k%@pH#i4JXs}^%yR)*YFMSm6P~}?J^*pT(rc-i zWwT7L#)LarWWft^DQvhi=A#wl0HQ-YpVjoW)o6jL6KG)Pi1c?r&h=I@)Stvsa z2FL%doZ)(K6IZ(TZ8F~Ik&8&}z*RX=-ZJJgmyCkw8(<2k!oM^$)QnBXrzb+2`TiQa zlV#s_8cdKs>ks4@kG$#NX2nr(4=2m9`@$8jv+=T=pOk@&MkkejFOg9Pxxkq^VKVz% zV(yjeqypb0+?C*RgvHv6P_!X|+ zpBNQSCy%6}Z>OB@{mNEvQ=Y;>UT6bY-pyI4;DUEMnzaAC*9ZPG@m-bo z%*b7$GBim=OqYVo%;tp*L2hWpVr?TnyjDqR?lWYF<#_9rOshJ`Y*mc@2W3_W5?J^w zWVhMK$oQWa7Bf&^lg|0j=I-mZ60*3iSY4)0O=z;mqGX=lm=5{D8JKskEvAuYYOfzG zJ=Z_^R(8kik?IlT{x(Z(=FLWjX@X+jP8`CC1iDXIzEJIsob?mcEH!=qZZFFtdixb{ z!RxS@j?FZ04cO4(u5ynA-x$+dQ+xvxw-0CDVTvezAw zhgA(?wGnBtdeHJTx#|PtbUc4(SyBe?;p7p#$iFUfY4GS?%2gQ|ya~gL%c>_WIJ9Mox1$MMS=AuyxYjX7wU{aG;%{1p-RgCG9W4PVQb z^*NAgAV2_Hu;kh0Jma2{H>pwXJi|RZ5#6VbuNX!D3ZNg>th9m_N&V!ML7FlP&a#C2 z>Hp50A%07H2%Z8M)bkLZ{chIKJU@0y)wt)ODY=8_8s?CRnytZcW-`k!u;J-K4%{w2 zsbEW5vyH;F2vKT1ajAfnOoFj-_(>C^V@%`Fl(+GWQ$C_;NvSI9Uiyl}{R^_b^I9yA z%4G6)`nxq6Fp@KLi(Orjg++{qv~cxM#|t3%kI5I>&?`_eVNtD=SVJv}$AN0-dh1WS zUheKe*V-y?qQK#^#J(?UYCA$n0(#H{toN@_Ze+vLi+-o4d!sB%mZc0pehLKm9~I%{ zSV{Kv^j`>Wfc8Wf*ws4ea@y7g(Xd5E`n-7|_yW+}?w$T+xG`CUw{70XczWHzpC76# zoHQXky~oO*dh;~~BcqDV(fkUtP&8a+d)au|{lolG z2G13ny~6hzG`8<)(!RH&yd7fR1d(>XGMyVA?vDzqItT3lT+d`rIvfS2^*!nN z%JO{a`>k~oMrX?7{=Oe)XK(O#Ox}v)D>PB7ttKbipUSUY?8*fn$K;M}M5PX2ZQPGt ztSr$UIxhKZP>%RSHvJCrU2{bfqji5gP#O>v%dv=;fV{Xb`Dmc`chj6ZpgS($zcBzR zq>t-gx4g3@Bl`}sSJ;eUl)D`$@CK}9eo?lqbA>+e>btVbd{Q5{vcBMmD zod<0Jy76PR-G*Y~p!pvqlrJ&0c;-ZNs`#5!#viRbpQV-0gA~u)b>G$=76vZNXwEH! zZVowjNW@Bg|4U0K8{2hKP;-k&!X}R~-^w86XxO)z{7@&Oi(tK*wxvY6heWb-PHmJ= zmVm8hlnzWkzccaP^q*Y-tl_}0_e~qK_ z6_KDvItDDIza|Po*2`D*s*eal*^& zPub|A-6HL7?kmfL^`5!$ag&g04b1!Z335|AXvtEpc*vWG>gv=t;X#n@?kg$HAJYaD z<6TJ|vBYe=pl_xef;;PX$BSsOtab++-J5X1M@ms$GcC=x`o+RPAUl3sJOm9$v+pSi z&$ZIS^rXfGJUEUsD&d2#3rd7W(xyJ5Jb>a{T6@y%m~LR8-O;BIWpE-AwvCiy4yzBK z_i@%woRew~3jA*`K)=Qi{i_o@3yfWao>F9H`6?_Y9Q#_hz2s)trJntAlfjO~Gv$)< zC$hPvXTLZ&I0QJ&9z3|vGko9YUx{>@W^8^~2-6&KcZILN{SJOF8zt}0^%M_j@-#1- zBaEaCCOv(xSp38G)+tqULIt7w?e^KEx-8%m0Gi|0ID-uDM`}ch1a>Dp;(2Rj$JJrIoa%*9AM4Zckw;W)70EsExp0g3{6!{~j`4rQRlukN9)UWrJ)IGtM11l)R=L}D4rhTLfm*K! zzJFd8B2<)1O7r4gYWZJcxhB5dNp)e+`}b2cU&<%LKkX8PBJvTOO3BWS z5-3#fM`k8TJfO?C?&zMsjiwMKr95)azoWEzUDApt`?iO-^F8cN*uKGDYd?F<@%Eu2RGA*v!?Vz52x#`;Hp3ZHtF-Guj1udbF& zTby>@&ug@elB}BsfskR2F^>by%>JBeYHNeS|I7Y2)@Lmn?#K+gRmp;NmZlz=;?D&E zK5>?O${rFy$WS?xG@ZSmloTd|{}9%VV#bC2U7^^nkvqaMj53=of*JYFF>KqDzGN(J z1<*8{&qdE~KZhR(wDyzaBRCmAvJV&U9+m&CG#XJR4(PCO|6$oXE1rqwC@R+U^)Egl zW)3};J`g86Cr0`o&^sNf`EB#DaFFq%>Db)50NqYEMFp(gj!(jm_HHl@ z{A;u)Y){0`ubcHMf1?34mk9%C>jPIF;^0n~{BkQuYUj5gi}_DJV{V3X$THSe)y#DZ|MV9Hu>Q6a zDlE=rc2-ilCnPm^__yMU9O*nFOVA1V1!!G0alHLbsSXdpLb^sH@Iu}wO^31{K$=&J zr@e5jpnoD1hzolYhGECV#)++uYZMwhOM{7-CO%06a?IpuXrcR@!l&X-_N>w;e)0S& zc(04E!-Vvh5FQ@Sypa^z1q_A-JSlXiA!u41UU&eegI^`<+Myz69G&vE`nJF`{log& zMRT))+q8zIG52ZOs8^#l-V8oSN?c&@yukR2{sDwGg4DkkC7<(!4-9=&9_E1upmR1b zojur%|KRAg|5=@d`;xjw;J0T8UKyrO6F6{h&#)?Og0@{!KdLo+aoCqat$kv&b9$d& zpEHjO!TCI+Zb=uwqE=IlKm1k3mX6(T258~;3Q2hGpYuotIUx_CKIRh<3U+JX2#n(r z8r=7Ojqr0*s_nn04d@^b;f)MMz=c$Ri&Pe5&kq^|BEOvV98w+Z%jz~&V5JFqICIaJ zJ-});wc%doW}JEc^!uEMs8&O>P3cqT?c(Xn;&>*I{mIPPXz@V4VBSk*F}gzpO7ZG+ z5dxS5VPVlYE9AZruJA0alT;u{t~Yy@c1Bn#T4Q5j&AA~vZJ@ptkQae}6+YZeH54;} zJJ&y&>Q$uI_kA%*i_noXwzV_&BeFhVxdI?e7*@yer;!dckeqzu^ULP{Vz-(wKeyW1 zca$wn0K^-{198^^q@C-engz2(rF7E6Y<(WoJrt^d2=&DCeOr4IL`bma?t>14>3~4N zfWxyAzX&6JtxS;dZ|??s&>3z$O7!m#eR1jfQ&&R+s@ixA-Hpt!iv)b1Ser<|Ns&j) zJ?Ic_T#hpU7|B?Txy5F4+oaHsKlJdKuQUFEiU|(SI1^E55 z^4eqDxt4)s$lXNK6=Z&t-1GP!80g#~n!0>^=@`@@+J^r44X2j)@UcFm)k(7MFh#{U zMqztO{#}A`YR)K7JJE4GvyVLGI$6Wl=n)gkWc#g7vlL2VIDeLw{|xJ2WQNFCU66%B=tX zPp!*?9${_h>FMXwSXo({fU=g|)j}CtmOh@&nD|fBBC*W6u*Yhle4D&O9wq;N2&ss- zr)<4quS?GNB=djYHuz7WZuWX+pmPT>KpD+6|8FDo|8_~U6xm(*=qUsUC&Pgpg$F?C zMGE5que7XZrz5>?#Zq(zXlVmlJ;wd{S=NNg8iy4#&a<%A5JOsQ6zr|=b0>Kv=%&`u zy@lbJ%AG*OpP2o);Z&g)SY~UCYkEJ)VuUpMJ`Ko!@`4^j=7%J6BUA`?O{b;M$GW=og*E7p6 zXfp}!9-Ol~#jncmvj?YSAbneJEqLF>wGV(JMh3WF4>H|zRCxiIAl$rmmQt7x^7Fef znEgG$&yu; zRnYVU^Qe8@kEug!<$uV|NC+sgvWO8d-2RM(UW3ktx!=&hVFcd{^_u+_Cruhw-|b0@ zZJb_$^%IO5Me^PZJDaG#8-D{-BGhI;!UNtR}j zx&Hp3tYG^*ch#(`WwU#%|6e%cCeWMUxLh77W4u;-!39Ve zBuQ-g_iS2yTgme=iD~3II_>EKl9qWY?#%l*WbeCq?IX3mO!#@7$1+@QUpx~tX`E-8 zLai7GsBX5sfR(k$m)*Kq=GFEkV?!GK@~n7G<_|7KVKBC%S|4?;?Q0-_oY<-t%>)3D zasIn4SULVI0BAUD@!zeWpJQbJjiiJ$Uuh~+IiFc=DtY_oHry)3=B`~uLqLH}_Vasq zm?pY^<5X7+8*Asyt4SX70A0c%)YZ@W07pZY?KEc5;9J$17ha zSf{f?=5T`Xg)uA@=4WQ1VqgmNk-`Y^$TbZ z>KLq5Vqsw=?~B^Q%N);T$8KfER$YpcZ44{o`ThR)RnW%4{=fsW7V~)kAOY+9@u1{* zEDk+o5(yg}jah*jn@0hdNb!fCs^N9{6&U>(X>XuKW0*|_EMs6lxJsec#}l@gAwIT} zHcff3&vMM(+rv!KRryNEQdImtGXC&TxRlKbyM9+y_=I?DY^;36>8l9<&kAhna=p@y zaD>O&RC+Cc3SvXg!N`ICYKm8phU$1;R*DuHHRKzFcl+4_2&u>~x$S__z}9`{JX25l9wd>f!KT>8Xp1@M)nPHG zIA1#x4R`5XD+FtRHLAFNIR9A))4F1=!l%U%?)ExWRmQshiY>!08c(vz9{0~Ouaw;9 z?CojMWbp1-Y2Z(CHn7c9{C%BqV!5m9vNB2Bjb7~ptdlFL`;-WMV0-wUzy>T1fh2~z z#q2qQKPlwk!7>g6rzaHT5eHX_iYds+e63p{Sped#pjUH+vjIcmQ*J?aY?$=~%~NAu z5`8kgK#|0PU1KxW6LtY7v{x%^{0lj(7+PD!w11gUk*fCcjm?xYR}UTNe{3G3^pD9%e98;$9^Su$i#AoHj*Id6T>9@_))re1QN zupdmEpcczrA^oKq+HI&6EP*?U6aXd>sjvGT_J?p&3jLv|ZN}>xH)4lTmzI}e2wr!- z`DGtMXA?&ska>LdqVE>dkUKdjkFZ(_1F-!E@*+(Am3)v-$^FE1S2!-P^n}!NxU`%* zdaJp+u?A-OW6^K=ebUFVz}Gee>%rgvr#Im`oV_ZG3<0ctNQ$du z(gz{{B?0&dAT3j>VMc#m-HbKOj0BMRwcZ|6xP0o)j;E`JljY}Y@h4}93YtGF$9MPp zhgx)Rg!)(U;6+6xJ|L(dVF4*EF8mBvlO=AO#Q<5VV5eiSSkma#L#^0QmD_*qnH1gW zh0DCOef`Bg7G3jsppesDPPBd|t8N){woWQa5EK^E$DZkOlEt&0)YY-?`!(r8=KBKK zn~QD*SKhDcJk|P>94b8)8*&HTX|9wiA8ISMvP>>C+1BaoQwd9jCIEW9_A6iKCv#oK zfA5jE(yp?MlrJ7O>%Oo5B0|u)gL&vi85?o`*LZBG)~yJ^-Q@>c*~5VRU(l5ES@)z- zPMiB1#7%F8;t}!TP|jpH!0@yHBplR8Qmxwj`|9ORm{E}DLMNRzVSqXhh=!)hkcXRx z%qpa(?eoGlfFLi?h&Xy7JF+-MYh-fWDwV-68CB)?IfDv`k-P+>1f|P+LR8d2WdnXs zUDA$5QBPsE0-11LdTULmy|e+=dZ1VFTEFD*fqg6E%6LNPvSkA;Kuj!hp&KO8it%OC2H~}rqHS!d&XC|cWyDdP7hO@Csjt_-^zlb?{4Xrlg+hq9;ztrC zV}Y?ivHBgCB&LRYC?EEuJFGoYI;_xA>Q)zPZV9~#$D=8~cN!ec-?D~aPfM;?D`T~9 z?(bJ@TigKHiX1mtr#;8MiBDYb_glRPkGp?Ze+?d>kq$OV3@!82tr^L$uNop1c+~7a zeAUK3JuoSyxU?$9F~Bg+w(#6K732}IVzJao;K|S5-7_a~7#MGUT{+R@JkJ&2GRdpu zU-|YnDO~3t3YVkXlPZhDN(F^&QRg)Lp^d;5RnpT>jrUpdu98{$k8TJ6NoWCxHUaZ2 zm3^@VwIYq#oeK&wAa#ZSEj2)cWcqoZg(V)L>5xlj435iswzMT8%0g)`e98YKEGf;E z{J|+E#J+-OK2j_I2Ur7~JEE1%Z zD4^N>K^*AMsCRJt+Q0|{xwUnNgAD?;{8%>x3)G`?`u)uRnWzpZU_vx(+0|Y|+D{K5XQPsJ?$Du< zqNh`qmPN;>ZO`q4-~q3{=$;QbfMaw@0mPKjvQb(5Tos?2EO0Y*uAH3R&HTl_n0N7Z z#L95~&Yh9eVsA>YzgDWF>7Vf$VrUsDx@kpW_AnvO`A~F30c`duyQ%i<0RA$32J@Q- zF5e>ylHHn+c%xW4Y|gn=0EXjJ;c7tg*Z6PmaRf!clPC5^4%Wt~;Cu^4oIL5qIWvs* zL;*$Go;xK3NM^F7fSq!y{T9=$pyXMq{H;KZ`rX`^2-Ln4!+ z6pUo3*B~y1M6_nz)=$EoE*@L&pUNz3udiwW;7&y*1f<5r*AFuW=!8$~c$7cRyjI$* z7~Gn0fY!PH{ja3O%+gAeC>(dOy`Cbi^`IPknl|`fF4`~kf@jv^#>fA#M#1ft_TWk< zB=Ge?jvdlUoMLN235~7kKmc-<58)pYn%;eRt4aQk| zFvzB3xrtKPZ3S~bm-2^rx7_JvK=5OR=Pv-S%!bV#5f#flmH^xOJQ^{3UO*rIpVq7xq%aRaewXLBeT=P)H=g@yGdD zWKUW#k19N%av!fwWyWM?e_PA58Mdkmza5##nHa&&XwCe%fBHb2)eYEacE0B<#4F;C zBm8BwIdGNmFNmXbr1cM2{r!-yrA5FWPKCqQg_a`g+0}OW^U=UtRE?p}``v%9-V%)= z)4wVZlFRTvJMTD+^sfF-B{~-K@X0HUs>TXo%DC^?fv?) z06Eq|4}djXx6SUzpo~;Hwd~4w8AIh7`=P3XXF^N@+ z)-@;XiJqfBl}Q)uSt=Pty?>4erJk@<} zEe@Rr=%EUL33T0l%gK}!BrZ`yu$93ino|rYl_f71nYk8By$uv1o!=T!dZ+@s>A*5m zbTY1y=LmJvX;TU7=YU6zY|k;AfPp zitFpH`YbmAGxbEw42M0FVu9+I-wiX>cf-2hd7n$&gAv!BUzY=qVdYLMBu)bMJ7a#HhvPMTJc(Y_i5TcLtlt)J95{ zyt~w7CX-^fp_j2z<;tO6Ua<>Tb;C$Mz8{h{a6-VQn$>5AfEjbQI(@m^xXXVfqIamW zJRlyR=64RsiWj#Qiq=SLrljaM-e-VO1J0eC4_wp z`>4y~d!ut;mijs^`K>_OLHnj9gopB9dXURkP^^6!`}gJ@q-93(VfL3-tG_qnXL9Ecr`nf}OY@-!_|vC#4hJ>EGa;gv{kT(JqG zU5T6s#PYmZIbYi9UW|L|$OwYWb!v`!d!2aN=2otqBao96q0F&(}F}`^T$^vY@pqtp6 zHXhY9rSnl3xdZ=)!sI4KiOEdS9HEZaJJ$4Gjj!o`%ogC+uE!{HB*6iFS7p@?gqU&kyW%A?`;8KMw8|eeOrrp8BR;f8x2A%ntk2?v{G>2X?m{ z*FDf3JQ(DVc%JQ=^H@j zzCSp}qILiSScT>juPZMjicjVOUyL2M9@m?!$w{ahU&y&v!pGRKi>n%{!lqK9fH_@U ziQ^5**`|1x#(-Jj3$u6)a9_ZBy8txD`=Ppq+lQRn7=3;rUWm^>Ca8o$aO!MM``*i!2=IQUNyF#sU&IKm{(j2PpsW zYgo+WB?1jk9RJyL%>erLUtj2`Adl1_VQ>b!|3Cj1;9ZyQ4=hgKnB8o(P~4U?0Bs6b zHs^Bc$K@74(Y>+k2M_>FTw*J-HebR2KqueHN{3R`MVB|}ctK24jEYKFmv;hK%V1ih zk&tLeT@GDC$I@}GUX;|!GC@V&`oHnokade;5;?DU4j>L{5|&l;3sKYG>O*2_{}Jg# zbtc$8?}29f-vH+B;oRn_CO^;oJ!4O3UF!0ce1=v%)a!}BxWzWTCuK+6>#wfQe~zYn z0PN<3t=e8yZHXCQqBCDRztP)r+^c3h>V+u)y=a46l?Zw-8;jmyqhghP2rBxc`tCSm zBk33OyS3MUZdWLgRIHpHkN>8~)LNq$>~X1C2h+O>TuJ$Nb2)b~S_x~J-?(UzzdTDW zzu*Tj0hKRzkcX~ph)6C&S0SPlNdTo#p!2|ojzpzQb5W5(60WN zzh@M4NtYMCMD38ICJ2iZY*;lWYHi*NOmxkcI)SZ$iYYf6C4ng3o@dZzIS027$DbY3 zu%eoiQ2>x0D1}SLJwnd)cMts-OEg<_&_OO0uf|n3{ypQ=?u*-uixVb~>2=ZLS69?- zrH-C{)Xhh0*7Q|Ey>xWZQI`BMAf}4Wi{{=*N@OPh!-4hfs8l8m+C3p%W&o~1y_I|v z!do${`pi#+G_&i+vT;zvEp#81FpaP1L@_y-oF-T~I$q43TSv&|CGlQijUn3t#Ie$% zBI=JVnK$wedv!88@q>Ij%-?Ba)u>-aUo4A^jQkewwEb{U!+R-h6>qjbA_+sfrkDW# z+2ND=|03HigZ~$@)%qab-+Sq%xJX5Qxnk0QDjS!>oW|DsnSlWpcU|Rk=T@i;Q7;8Z zcsC`0%MU-#)gBhYhEUBx0uIqHkMOB6uC=v3A}vCL0SdYG>s z_#L|CgslnT`YkO1Y=_g()mG-wXaSr5zvtNtfk;<}Qzp8jzNhN4DUBT_n)!O?4})&; zLMdT^VLWkQ2Z?X$L}^9az(jwr-QsDYdt-Q*f6p10I)7{j6;koQrMU7>*zbYhh*JQd+2ocEyojJ6kz zsAbZ{q^H3MWEvRY9%_BC6?GqWHvITe$=enOt$$iQkw{q=4JagJ-o1z~|Fk%L!(LvY zcDB#%QyJ#=dP^TY=z{#Da+_Y`tlB)-F35O^XT}-vD9kNkYn$o1@5s)s;YsL#JL^kR zQ^(WM(L34;7#yjN1r?y?oY{fO+2Dupo|Re~|8lOx7UgPRsW1cxoYXmeoHDd|o~h(~ znJ{8_IqU5Ffi=Lud!3PtjvfTaQG;=eKB;VjooCR_^81+h~)(Q56GdIDR zRqd@SJ#t0>6hyr^_hZ>u&-J0H;I-y9dw<%ONc?JP^mVWz@lxUkQe{+~5TT9rhi-x) z2S@)O$o=&t`ceTU6qC^&KpL=*`n{ZNc}b8E>7l!xsjJi;+#HuS76%@pHGkhQw-%E}0_x{s}!S~em;XUao z%!>4&+oz`^9_F657|F30t?cZoi7#~L3#)&QH;{zc?%hYToh0Jt z1g+|PMK&~ODCnHAUwpDLzgWYkP3-#fW+&`qigxg3!et4M`|@T0S25PBS_wx++Xm`1 zH00iGP{E5Bt$cF(Yq(m12Cs_@4~p=Ht1ek!{6V)$({p+B>@Qs`IihwCXrJyd?@Xvb z%sTaU$>p!5jv1qlfS( z5nqr}LL`(K0n*KJP;AKm{JqNqWU_^@M?+>=K%#gUrN{dYHrn-~)+(~eDU>N-pjDh3 zv}BBykLn|y1kI_067pt=?jFj3MoN%R!O=}iCQK8uz}jxRrJHn=zON)Q>4V-g;oYv5 zvE(9-@tn8I*~5l6q?UT{9lm}6Q7exxXxGGCbs(LNr69bNYWKh5u24_xKtT2qz$H_} zSc};AN4IyGWjP(9)q4NR7Leg^-!+qWtqenmi%T6j6GJ@igZoFZPD*26qH~sbP>o zXSol(YL);?v{}Ky;ClcYTVXq=h!nLN(rs@8KNBuYALgowNMDBp3fl=ecs)s($m!el z5b&d&Jv=O_-*LjD4Zb94r*zm}H#D?B7iTzNKDW7K2mu)m`}Rm7DVikTBl-3r&`rt% zTbGK89QNI+ZE(h;lqUDv5^2N~8Pga?(~0o!T`d?H#TVU^-vz>|*R(RQ*%d zq*!~Y*^EDtR?mUaONQymQhxtL8UG}8)B{?5T{w%=x6NN;wP5qUhNWNAoD?kt5vRr! z6n~luRYN6riV)5$Z?7gy$t9$G-81P#NKO3L+ollV7gP3F$N^#gh~02N+`WI&+58vb zT+G=M>;W!X%$TD&YU4Hggr zKWHUKncIWs_MN&(t+zpfsmrys@p23q!_tbY=v_18;~3r`LDL-|hbG{fl?B#7AiDG28KHg&Fhylnc>%>Rq2i|H zL2n!Pf%5ri&LgEUC*ZT)%uQxM8^r3cBvAk*QGaPJV2_?ljF8f@lrTY3m=Sg+X z&~M=LFfvi3+eM9}knTMI8yNJH;2;-#0caMfqOO;bHD=vE=T!yZj>{qcSH=A!0YLbU z9Xy_*BY!fIc?J(H_76}<;{X+u;W$7XK0l`nd|}wYji^8n&H-c3k-D4e#R=Ln1reOV!$mAt z%8bIzom1*3U<-qJWe33W@s(6)QfL&D;3Ri89heMV$4uHC5C)UmHQRZU_K`^i{vqXD z$YqndMJ4qM4h&`hA`T3VE&OkC!G#0dRrI(x_-~OinW;0Qr*}%k$RT}0NnDI>@A9&* z_*oi}4J;~|{}~%FFA$**C*t`0{O%&_QayknX6FBp-CZo}PJJ0ahSDYAl?jNtj}DH2 zG68Xo%Vj4Mh=4kYB8mbR?)RFd?>t)p`<$;@c|pngysS6t;3Xak|-LJ=4_Q49=2p_mmp2S}V1 zST0N$4j+3o+I~=oIVJD`X$%ZTz!h-Fgd`61Kj;5AZsOoyC#(H0$4>m`Y^(p9hsvx2 zW!!|hvvM5(D>RzGHu+&1D>mRggJ{RLM?yauwokPdeT>lP^ ziIEY7&ZE@;Js#mVJK=JCb4iXAJSnJMCe zgoViSg=}kUC3tm@E5i8*@Ml$2u!jGUfyR02uANvM(Xz2JpVw^erEH>~^)uRgl>+-S zwlbG&euow^u50cBk?umJwnf0kXxx({eFaat1Orp$Oy zB)qo$^CoWA4?1SJ^T!haL%-E=)VH4sw?iDM4YVQzO(j5}QdswzP4D_I<%`@>=xQdZ zY?}=QEBb(FB@c#u)hnel54`7>ba0o}T$DRqfR+T}?k^Z7^;!q7y0KDwg!6H$Xcmt3qpIj22X9HLvRdd#o{R=5T^#6DB)BGD-Y zi`P{NK~)817NXGgRY3ROri8-@se>VUCL_$E(LRbEzt9@0Kg4xs0Jy5DkxgDo*1Y#MZ?HLQYbsnK>;Y+2y^fGMcgZCO+< zg3>KvzuebhUfw;^GhY#c5%g4Gm?HQ}xS5H>k9ZZY-Ia;mHTENHfW_6GfFG>g1az~) z%d^p4;uE4FBC?E>F*grSb14%qsWEPdmAp)%(p0G~rM6rrA)cN|9uw!7X>JNc*Bha|uQgXErnI**}$~?JtNkLKw>>z;nE*^%iu8w6LJ0jm4DVvEZ#D*a5)_PMB zQ^>-trNQ)1VOV5VX*_RGq8Y2FzBZ3rj{{_!oE7q0k{i?%gk{|H*dt5So5Dkg!CovQ z3G}8!rGd*PriB35PQa>x#I%t9ePm8EejYWn=z|%m_Wt*xkN;yu$bbECg*gWc&}NI+ zll$6@kpz^Ma1QsI(25S>J;7}9ksl;g;Bc(mk2*Kj^9q@sP!vG_A4I7tjEBMEr$8qKoAJ)Pwe2 z;e#jNj*IkFx}z;G;IJ}p!ti;J9ZpBhBgOr9l@W$ij0WF{)d`9E^EvO}W6_&`j+d;u z8f#iHx3-&mf_}@vQv8^>wT%chUOzlM{Nb`0vXpbF-k}`D9$w`D-1$F5n5T#T8_>n< zA)FC?X1W@pVAJ6f5bRhJ1@@y_A^}c^1`(jhqLDQ2UrD?o-fHpfAH5O~@t(MNc)~0! z04|IN6z$fSTxvdT*N#7~h5f$Jd>LsKio)kxkO2j&;;#*5CQr*%PS}4!IQ7CMr?IV{ z&l7*!zI{vBW6lp$M0(M#owo@5D#_XNq4h(@P(> zG#}4peBLvE@YN`!C6gNmAN@p=Im%o7TFr=-C%+h)9^_X1xYbV$68w5DG+#to2UC=O zsP%{(hd8MqX#@6e{#@z=^sRHl3oae=pIPL>ClSN=Dleq=3~;@yx9;_4i*unzSKQ~lvef#r793gyni3=rV;Vvo@Lyx2q(}Gz+`cFqx{l8;{e}5^diylHj@F^B! zKe-@%5oeJz5z6T#z8iFmIg+fZ%`Q5VLzBB_b*NY9YQmefxU|h)*A%&&JyYYr^N} z+Cg8jXP<1oCIAFT`iCTpjdPRm>h+$}0NJgon&6H}43^o;=aLMb+Uh8J@te9crLiO> zK;=T~--C_mM_AnhD>AEh-pF z0HfUDItxlGy(Idg36;YiM~BHanh#|89Rg_#=x3+;GA0+Ave+*yeS^s33Ql7Iq6i}O z2qGCw@A<#Kg0RTca&=35v)^dPK)*BPQ^&6iw|f45cm)=S&g*8Vu$E~O1KW|E?3;CyWp=z2uIWJY>y=PatcY0VN2Mw0_$lR6Su zp1SOv$|F2{&u;>sccvc_?0M1WobwLDnLie#I;uG)9oxaIxZ`w2%j?9#(KNxHtTP6p*3lsFvMt@iA4`R z=~5wJPqrCA0NZ& zjdY^YtaD7`yKAwha)d>duzsV1;E&%w!11loBA?2V$8_H$cgQsUx*-ecY#s9&`!?p0 zQa4-2oBKY0I<9b$H|-;xDtXeQud9m9r_@ufKW4caJ2#DD>eh9zr&)b)*Yl}lQWc)- zL&1f1ayr1|FKRXrF7xd!r%iqg1VgS{PulG{m!8(Jqfcr}i#6$H3e+{VF7AAHKEK?L zSVNY|kzPs_JkVix>`YsLuY+(|v*b9wMSoYcHwhSd|HNC{%K1=_jT(HnaMSkEiA3h{ z=&z~XmEucX*zR4kM9z2LJE!C7waG_`^#eci~b4a9^c(q z{?Ebtvv1rkZ4%{+u~rm1J3ZAb)`H=@>!2_b4P%eOGk)PxZalJR{H4(iU1ymhu1`A( z4lm&l)YbQrEF_3Ss;;@-6~K&8t2Pi!=9j0&1gi)@2P)owZqKHyAD7K;Aup$-JdoX3 z$y8hk>5S2*#{p>+G^@`~XH$WH=ic8jxX+7m>-@UDh!wh(A!a2N?0A5jz)VgQX=5z{ zt^M|G1r4?yt(fB+fxw2^N`;TV1WzT7y&tDQzaECsLk{oYf}Y1#@ki_SI5XFePCSFR zk1}bJCrXQhR)sHg*LQAeA$|ery#qRO+BJ*#@M1p+s3`C|3^05mi-`Wf|CyTXA{|e9vjF#N+^f1GXgW7zDDR&i28+mfyXRH=xsZm9{I0K|aARn~DQ+g%cfge-LN6 zc&pt>Jgt5`;+a1w>YJXjw)LiL(|P`7Bq{3{Krt`aTPiTkra*S30LED5317>k4)=RV ze-CkOFrFFotNNuR&})RJX3RgjmR*1!<#(X#YWmfVq;*7+h&G?gjL=aka{qzyw5g*< z+kN}7ow$E1_#(?kBN3n zF$`OzZ5^08YMjYq^}LpcpsO+!b{+W5PD#;@Up{2dmiVlY{M6n8I&V0km}qzJb4|#5 ztJK($b4dH$Te90p{3hh-J5Qm;2gV<+53hF8olwl%u4O-nqCcHMKn_%vTB?~3){yf; z6V53+_7I>ETP{2AEQc)-hFRbyJjltTVE%SqVkye=wbu4u*H$H$kL`b*NM0%Ptw?`e{ z@qmYC5E_)=^I)Q-mGOs2A?uyUOsje>dy@zTbg+w;$zve_0Ria=?7eZGCsEN>j8| z9xd|WR}l)*{P|g7(j+&O1{=f&r}>Y+AgkmX#3hDZ$79%bmQ-r7-Qex0XkKp2($Aj2 zxQ1Xe^|}(qgnOK_-sIzu-{y{~Zr!@skEv>j&MMD02O$YR;DCMqGE`5WJ=14WEn)or z%V%yT<%$J^(s?v?X0GNOAl?knDLDbJ_#Ax@6;qMsCpvt>immHvrErrOst$U326a-D zl8hZKzIOUTLwb~?IIC0)z+QB)upvL%4Vl>&*FS(j_#M#S2ng)UJzbmunY_1&XQ4`b*KG zB9zFH$G^AJj?hzK#-L)u5XK>V9x|#cOks|c&oVsHiU^49bTP#$dCw@K@93un2l2j2 z`~|s$P0zfS`1LoIOE-#rJ#Roj!Pe8v_j*Kl5VpOXvZ*apFY}QF%os%?Ea^`V2GgP% ze^`uPs2{(hg~bXG48O}EZ}3dOV#LifKFFS$J_+BXtK6Zjv3U_Qw|hs!t*nZ%szfQMLJA{baq_9U@}!r zc33;)$oY>>eq-fgSJbs)F6qd{n0M*`r78eszkbaa=S+$b^_0ZZtv_f9%iB^j(aj0uV}3pI|C zGlZeLf3mZGtQa5f?scza?MFz~hI%W!ezU!ajf|m4Lja65)@*G5?}WLS__6uGis{!^ zjmZ6hg0R(bod;_t6W2RRPxFg{ntXphPrx7hLti?ZqRK8WW+WVS(r`Bj6vE7k}k@RwYAy;McE>tM;ZY2KtbV zvmJ?=lHS$Edeq0kP6g?R*Ye^wugFdMg%&iUr_bsgjey}dsqn&aZ6|@w z7SOc!i%&*AP(*ES&E5AaDB|bErf1N3J!^vaxa)3Dnlq!K`W%!)gQ9I#KCJ#WG(tl& z@xEjJ!4!EUdLeYA1D?=Q9}0MZJ6yc8uwT2Hs)!k-S-2l}AzN4(sG@F_(|(Z?u>8xX zv=e;zL@eg}R8kYMWKmt8fsODH;P3|eGfCJa=43fp)Uz5h{u;Z7oYAkQt1itR_uSw6 zOEZ(-)%}%_D28()F>M~dCg0r5c>AR<-jABPX`{E?F}Xdpsu{^axXljxBKd=$7n6zqsZOu%l1y zNMKQr3~6mk^Zr!*ZsGj5^qHHG+FeN%b*h#K&uDGoqi0ru0bAl-J!SXkieiqEITsJn z(81sQ*uMGuhv-dOcwlu-Bdj*$%_crMN|GCO^-PEt=zcA(2b7-u!#E%ZZdA%i z9-Nhz*{iU&+D$v~&NpZW_gRS_6h5uEM9=UVwApoo?)$>&ztq=w^5*l6>SC z*rb7j3x;tsaiv$SJ0PsV)*@pycRQMvbt^6o(GO+k;gMp&W4;4S@@)R}ayo!h$BMbu z=%yycg}zhl?i(=&FU*Y$yw?G-p`ZX3^Eg8C5-?0nH{4VU^)G8_r7boO=&<}n)=Q9> zwSE~ftyT$%K^kTP_uwEkV9rA5Ef%j3Q4syDk-0a@Qr^NunsR(ah?ZVoI%P#(X^6VI zsVKb8Sj{({i+z1bUQqGEwx{-EpgTUTyp}FC*|aRZzjf7#HT(Yb*AXu_f|#~>*|(=l z=3m#n%zTTKg6TOfkFa&v`1~$;_+{LH44(Fy&OTKCx|~!#v`%5t=kDkim<<%?3UqkM z*hr*6Zg^L)RLqGrQDxsq5qa0VkU&M5^l^pfsA=nOltGkqZt?!%f}fKQzibnMFJUvF zfVVTef!l*J7XV5bhF5Qp`5^kvs7iN}jfV$uRu_eDfyI3OspvgTu|G{Q(eC^mO`pD7 z(B4IRZ`&!|V*S}1!Z`S1pO}?1U4fnB{M~hagD9sRJQq(YReyMv6B!J8Zj*VBVf&l1+U9&&S3RR&0y@q3?Gq7 zEQ+(OzGx3% z0%sZzr{Ao^x}r!kHv)6V3>2TzN)~7qN>zXA(QDiL*&nD_mXUFW*5cTTCDZtC;gN8o zAQW^*wbbjZJ06MfnUU-RoMfJvy42EC*sjFiu@dA#ju{hvbue4id$41<`)<)y=oJy7 zzOcAJJWcE?o78TV|mnPlXPDB)$rBA*1un&dRtj=XeII8j{$~9^*6=?j3j-O zN;;ZJnR#(WJID0jgj3g#QI+YE1|ehve%Jvzq}X58wp!LAl$LqVi9b|PEHBvRd$)}@ z0XqE3voF*~H$oblFEw?ct_53KVzufdw)K)H`8Oho;Lx2cJ77otZZe^{o#(r2th8cs z_fn`+QfuC69j+qG8uA<{Z>%`y&cuw5Jfh+Wwko zml4BAkUKN_dJIP5l@PXFo*1nw&1fF40{B1sVU}G_FLE{oU;mcOxk$O7q&2U)DTI#T z^)`GS_onQ2X}zV)_Ru02Uk}ZL)VkmWtfmb52<_%W3X8*5U+e`%o(H1&obRPQ-G-!#&ec^t zPD~4U^UTwJg?N34JmzH5$jZ1U%p)wu ztYJoUP!+6-Nk!U%xIt<9deK+2IwmSgHyJ_8zbN`B&rvAa3!%y5Qq5+6$x?yfA zAV2=;gOU8(1Qi+*Vir`hDUZejOTRd9Ze6cRn2)*yl~wM*$enf#P>^27t>uE(_tjjB znC3u!J+2I<5LJ<|!+?#qo&LaVd30Md*|DF?&SXU`Y)Ca$2y#na#c9!5!potTNyVK( zcQ!l5=Rm+RM8$tjH{-g}SB3AcoKUD#>LlF<6wDqrXg9o*aoHyKq=uyXQLw5hf;${T*37$0{Q+;PBw*#ba_V5-Mj6Xaf_{M@HKXgZ&=cJ`L_fzp8$RP{+@&sEy~ z95$tqUR<4Nz;VnQ^=UixSFFP;hw73^-9hx{)H)xW)9Yc?sEiq5`{QxQi26p`VVBjG zOC>46#49@|9KrU>YXrq|X13(Cyx!t38^el~ARViMUd6v>ZXGIo+Nm>FFc}aR*uGH* zex6=IS+_yJ=Jp!WrH=NAV>OcG zp8|)&)m0{1udc=SsP|v}Q-LfmvSo30WB&XAhg_;`aIQicpYqJ>q#Cbro(w_o@`pk9%}^Ne?1j>-myz-Pd<9($L61$ zrCq#c#)z5BFNXTjoc#e;k)#ZsSs0e%v1D}g#VQgs3OTa9!&m~b3*5;u@oepAg3_6Aczk4PagEtmX*WO6979(9 ztcI7MlX0kLfKGBxSRT}Iw@;!N{yu(1(!x%F62I7n6XCgx`RD4^6L9aVt*BjZ(5zGo z9^AdN4kG)d8`IfVH8~O0_F-7@-i%3#dvz_67*mCBeU9B0vIRU7$Io+NPOT_GU+5`o z>+1Ib+{IyUaPn3#iS-=Q7C(Y3!qdP7Pxnk^Aci@foRw+8?hmV3<*HX}T+VXio)MiC zp0t=B2o9|NgZQn0p+9g~t=nLgVsL4)cJ@9<(} zWEf08!w`nDTp`--6RTSmlmP?Pvv+OkI841ZqE(9!RMEDUR8tV%)|G7yiijKhXx=tP zRZ6lgFTQJOr(q@~bqRo|utZ&M2PRs=8k~}TX$(BYvk~{Et?cC;lFqsU>g3>4%x>EwG5gcGyvvV-aF8plGs*)w)S|z5Lo#J(Re;Us{V1URvr^ z1wj5H0gw94D+1JD)Q_mg-3T|r`8k<^<(UpEwg48j1mJ`?F%*<~Do7}ZJBkEXo@;5~ zrG9pL^mq-lB6$Z&*5LP5BlO@nCP>y z{r&fc+m32zOeATLZ4=(3Gw^Zv5t0{kQIQ+wZzu>e04&j{!a`Co7@wu|>gMWi`LuO! zE)d+(J6UW8P-lL5gBG7|Qi)0Zl^@gb4{Qydp)eo0y;EQzN8R;NB!&Ih8cNU{P>?S^ zd{7d;%L3qB>Q`M?j_&P@XKnGNrVUZ z4j^va_iT^U&{=rHD4z(Eu!dxMstfp9AX);A%-OtjbjHT)-Mqz{h>VE^R)31!kKLGI z>vR65il={c;;y@+er(S z0f_e|9c`oZONs#As^!wNe~tI&v?POiz(4mm9Ju`}>_*?*lNJc! z0;4rU$rr{*az?{#KS2(x)sZoMbahmOh*@7a_g%d~V;u0r1}kI4>>Y4d+uN9ma{oN_U!coP+Y zL!%021Nf`hjq1Pw;||%C2|BelXP;#joGlz0Wy__0yhmSe3ooAC!_gIDjSTRc#ORlN`>I?XWDrrZ)!eS0z8m zn{3;5={^)_!Y6U#nT+ZedsHsN6<0cFYY@47y|4QQ$%XdM(Id;2l={nqrJls5tSs;w z-xkN_@G3rarV-%Ls5gc58hG1|+Lg~3p(MM=mjNEztmHHxRWo>R@Dq$1KPz%?Au@ar z?gV%C7nZbYRUH#MCC;i-K|{I#)fyd##{86P%M51zX`_J%8`p zOu%PvWE4m_apw)!bdjPG$dIX&&!P0S`Waxrv04uR;6kOnIwjjCedr8TNS=oA@8ZIV z1jH%5goxDpawj^k*75LJycbR!CZcr2uY5tr*4nO`x^yHN-=k5fGkesGF*M$wx^w_X zpcXD8C|kapFk;u&y?GS@h#>7+lqdLu$QIj*-f<#-AK*>kza_7M6v@1D!17Ceg$gv) z9}0*p$B6@KHC@aapw^)Bqs1q*6OPDfv6SB?V|HyrkN1X^f2aLc_aYtxGe9sjuvZ(8 zv%T-vJ{(Nghgzkj^zR{n3+x2AwgP04Oq{HhZmTLYXv=Zoe@vF88G3%favVIdaNqBe z5~&=2gPHRys;yiO0b|&HSym3y5f6{_2CtW+XueBfbdGosU@nK*q05lL>GcA?PfPhb z(%uy!mqVVN^sUbah@~Z@w;LxMylXggfd&tVNOUKIwaw+-#Tv00mrD~XwU)&jcVL}; zT%yr&8`4uDaU$jUfeH*VLo!v%XIrCt-tEh;h1N%R5OtoB`O|16A`MFkpc6L}Xks09g1@sKH~#0Iw-w{{Q@N{RNJkc`ZLBsf`i%>1fc$4+@gy I;s$>I4T-OxLI3~& diff --git a/mods/psionics/icons/psi_fd/lefthand.dmi b/mods/psionics/icons/psi_fd/lefthand.dmi index dba031cd3a0d21a63e9448bae9bbcd2c081369cb..afc74a556b418b9b284b0e0d5203fee3111f86f5 100644 GIT binary patch literal 12673 zcmcI~2UJtvw`M4USm=UE2~9w%f^_LfFVee+fT1H@YEVGHLKP4x0i<`NcadI0Zvlc7 zDG`to0|An`@%NvZ_h!8}>%FyR)-v9859geF?mqkb_P6&vF^_fCu3x!*1q1?J*HBk6 z0D*|IfnV5VGN1+Zx!wb~EC(8y`KUN}+j%*?@Nx2R2Z3H@d`Q%}`u*OuH}Kuc%SY1o zM9CY)F_}5cH3ktqpios_X)`!}jlZT1QD;kH~_N1lgfBG@_V~1+-gs5Q&BmXU+*0%Jl)qXrMBPtH)|Xr7U3mGdRqf!~W_)#K_xpqg9MXxw zX$tWPYYS8c1Lb}&xeJ47J!1?W^VD^q5QR6AT|yff&u;sXQV;_hF!7wEfdsf7QqWQZ z7l!yS;Qy*HQc@5o>=G9na3jD*L<9moC8D?t++0;xV0g@$z6jq11{L-0klF|Km3{9x zoLdjYYHZt0qJZ7juNEgtTfSfVTQ9})b+mQ`KM2&_xj<^~)%U&|m}$3Kg2;i{pO%T6 z1N-zaVc|=D&9FNWC`>vc-{f}bt}q3=vr=>-b?yTb1bjD%53gOxbd4;$_?{nm;-_sE zUuK|zj?f?iG<@D>@uLSCu3jS(MQSQtb_ajI-9o}QT)8G*eB_>Lme-*!S0!MvNI6~* zJH=H~yu_?H|B^iuQxG!39);kM2u;5d9lhTB8V-jF;czP)#X}#&T_2PUd!-OZ#u0CN3_SsQ3 zP}jLYsJwC-IZaV`pJZZwrg=eCi&!Lt@wPySR^WZFxV^*~YkwYl3-a|3shS*f}=f--iI0n`(qAFGjiqU`e|W}sGEHdmV?=)87Iq$UWLO~ zb#=UqUz{>sEYOtJ1-83gyKw_UwIyrtr5R}fcjc9LNmc3$Kc5Y+UMl!XCsH1w{k!kY znG)Zshms|#O7eO&bO|e$NF|VW$@+b{-++DRBErNj)z*yM{;m8X);2^tF+$tPg@vJx z{ZET9Hy7B<=m_=Rt!W^mcG(l;KbuJ2G#XFMaL zlF1-Ov5`|g&l1-8)X$7nT4jkroMI!tT=eLk0Vqt4+f?QX9r)OV$w6_od#6K7&MmF5 zUX_>_RGZ(rpl{!%to<(g&#<8-=U*_{{?|blcFoIYmA2g`!Sng^bVlGO8j6Q#ohO8W z`fpYmPx;B!`#cYL_Pjp877g=W#@F1%sVji&-xpHSZ;j|x@Cr^=8lrAVg?F#Bm)p06 zSYno^q01W=^69H_q@)UDyqN1TY4ZhJx1>0iS*-K+3_Yk5K2sh5BgYKMuS|)0skWLl zamDId(aLf{x~IG19B}&g^&iU~IrjZ=TMBCMKrQRqd;DDusP1TADm=W)r^rR(0uhs1 zHLpFV&`|y`#7-Tk7sWpm}Q5M1MsQQj?DpanpC*cDP&T%POT9!7>bTs+pR0_<2s-w}H-~}D{vMC!!Zj{~( z@1XRBOS0Cp?e=7-2QFjlj@eqY*=Lz9V7wNn?57(a73Zz_nf)oz!)H`+4gHuI)4*P?h|!?Vmw|JUtXH(FFx zdyaoCF2FrgwC!(sZ9ftc9yp9Mp0N3O1wrW~9L|!~$P3sf!U`)bQa!QfBy?%vHvZ#h zp7vxD8?B+_i1_HI;-7!L1nhKWUQri5TDSYao}5!=(k|IDlixq{yV>U${rVVJ7yqb{ z5aIrmlfnhw{A!Ck?mV$7q~VdGQcB4zYE$Wbhc#cbB>bjHIFS8bju9T>0t5 zIp*l`Pu1vsYk@)eKX<;ll(GbBME55jvZits_f$~P(hNWLj(eHp$LuxmDE3VgilH9o zG@`I5GotOpiCBfU6!Bv;ARk5xq=}D(Ir24E~uXYc@#r28k=bohBhxgp=Guqo$ zIuGUt(rZ7cZS)^nX)=m zuagwK?w>Yjmy~SQ7pG&QJ667LKd-bqKH=R3)^5*7_+$Kg8tty1+&^v6SMACqvc(GQ zJ&$<+p;_3esHU8YAPz6S???VLP*4+c*PnhND|ivD@pWyYL7NMFQ#-9%1~lnmD?L(n z2khTw#Kk_kpVRr&yl!}jgt)=byZ;t!a|EdE4J%lF2UQK|Q-i@Bybk!$(A-5Wh9Cb<-Nl*F&;d!A?k@4scIr=2{&p=r)-RTkaROr$*J zr5%GG!{cfuMBLs%%|3Ex?;@Hp?#P)oQ-?JDK~veI%LCRbDgZ~}?};Ml35?eA<=s@s z&UFq0Z^hQrfg6E43a<#bpXE#K9*@z=g{;4C3_Q8N#>(A%8!RZg;DYazoAmlt<(FCTm9GAkR00ky3t4iyqyEPLnm>&u0615r~IcA$o7^lHcV{ zVe;bT!D)@3=6K92%8(Ta<6_t61lQi;0mw%JP`gS8;h}+=2IX0^RzO8v1OJr1J)hjG zv0#=I@w|`jofi{n7COoBvwzk@74W_2_keW@g|DkAzE-ShZGVrA27lgT6Q5l?-xOB} z=_p~tF+Q3j%{ynM?t9P(5OD=-=&+O=G?L5)D&}_T+wVL7vy)L>x5s4@c~#6<2#5q( z38J|`$H5Tg?-w$sX$z;AjH(UK_}P=84aIJG*Z~iRm%0_UYx4*$=QW$z6o>!g<}ce2 zg0Ob8SuT1=B&sBbxscK z{O{7^bLAE%fQ`2yU6lsFh91=XNWQxBBS|a}m$Ovd;9^7#?Ut`RfS#Y0oEr9JJM;nw)kbzun61sm>^ z?4W_JHJ*~7=+n{&lBDYDe<=2W4rU5~iUEBi{;%c-gdvXUVE_Yw3x5DPLs;;*IFTE2 z=0g2;EJ#)xE{?ymS1n2rdkGZgXYWU`x7B^8bt^jB&lQEM^o(1|S}}8{hJuE9k|?(7 z-Y$%iXQo-R;Xre*4oU65_h6@95w`(A<(~` zTt_)-57+|^@GDFM^|D(Y`JxwW_SVr3V2ES@_L?p5T_E=N@i9IEq`>%IP4jMl_gnBk z{82;;TXaZ!+~3E z>*;!rPnj2Lb+t^-OsmFD<$Of68~i+}2ge$3#hB_c>a{De)7(Ny2m#90E!)T2bhSRn zLGgvoPTSke%Ca#qz4jo z-C(mviN7|Mow(HAFW#D#UDate;z+g9F1DP*7K#x+Iv=TN?XyX}Zd@Q@DWR)n71r9X zW0Cv9pBWHW!hIca(f}O+q-w(w%%Ray+iu}UQwBBM^c!D z_>mFl9(B|c`TSR4)T4STnmf*%cWhKHfk1RpW@!wVz1@PJKC9O2XxVCDATJyq~c zjWt4FAPV&fz3;EqNP|F(BBzbeRQrKS2jay2VRg+#FG^^jH9f{vGtYXlM#Cv8WPf?@ z+pS(kMw1j3-(e;DG=neG5ThPJioJYLlU!!+2lK7;9ICG|HisITE7!JS3jMqHw5d!A zdg%1_qc@XZEw(hIw>OSm(=H--(Uvv{@D<8n9<`g`$)^M}?2RR$CY_c(MTQ1q7i|I~ zLYuMr@SJ;jD_CkZCA#Orm>cz^R`+5?PqXOZE zr5&@BSM8_R@~tw7g8JAvsPM0*SrMX(4eTJYD{8N>rD6G&6PXWYM#kx6>;g3yGYHr& zdtnE823@4vp1Y9WGxrZR2*r;+xR{igJpSXG+klvY;NybSxowhzeRtFAciAq^3jGVV zG5gy5m`<(b6t--r*6j9TnMjvUp47_$u5XNsZW-Yb2dV#wDiw>F#boci05MkbVOW8Jy!&^QgA(2_rM+YQ1o`<%@S>j4tSs& zK%sWTGg<>b5U-ERTT(yQ2^G%lFgp?)M^WM$4XFSHE5*qO{%-@TEq zW4WDq+^v=GXT(2+GUV!RDxY>X#4%y#CsQ}bPpj)J+;&QMj!)5+nU?ya9pBvMyhs#3 zmbZEFSDl^Yo#QgM$1q-5F9W0M&%h4N#)V$*-~=bG0Y5R8zS`{XA(46U+j+=5^?2hf z-Qw&} zX@8M9SUW-V##)tsZ(fB!*k4QEOZLa&RxBrdcIJO;Y+&}wf(du1K@H8hK2(NeXn-5Z z8_hRVOL{!9Hk9c3yg1@SB&UXfYGN!EwiR0*Z{wJ3>B{)7CoLO(CR&&yjgLF(%}i}%ifKHxk--qYt%-|k3)xNO1YKUC%3z2`k`I0TFeUQZo8%<;%-x1zLS z-rD!W%jlZF0^*p$CG$`&on>^5mBbcubnuIx`;v{t{Kkyf4M>=ZirMS%?fXke<*;^h zY=&=Ss5Dk_(`fPNx^N!J;0upB*M>***!c<5rlp(MbL^q4!5%UIephWw>NLvH0pY*y zua}>YX?uDfBXN)e3kkvK{8nm{Oa3zn&aO1INtxcuNR-)Fgns`Rr*m21YV~YH4vZq? zsl?v?;nw2T-^x83wKd7@fAsuQIzpBIKQHUEdl6s3rnuZjl8&~tr`9gxDMLijL{(}1 z6h&i>uEIur>E+UvON{o*=-E>P77vEoA9kI#6_ElVAXlCl+6-jrlMN>3$(Q6I%Va5{B}FM|D2aH?XaGt)sa; z4;@1w>3*B({vnFH$i(6^&+{=o8`u$h;n?OZJhw-Z?P8Px+i~P}6R%~aX}PrAjZHAXf!@lAOzNRF-+cCI z6Ks|ze7l5%v5H6ujjn9?7h$+?$5B*-q-oJ?;X1fU%xdGh*VfU_X6G~T&Es9@Ez(Rz z_Z0LJ&x^S=QI+V@D~&7MeZ7Jh7V8gmqNq^}^2MqFt)!&kw-Yf97gCxy<@81cJxs9ky_6_5=t z1pDOlm4}xQQ6Hms$k8-j1C^On8YaP#$B0n2VS1y@n(@ODaKWT=;aaE}-|_BvDq~Ch)lB_TGI~?-mudq(`M9+7nb8MlE-XOdr>67|UyA1OC)Fb;&W|yRZu{Z=#iRPQJ*-GTzveMkq(9)07 z^7)2|Fknc0olM-qNX3#|w^ZunSlrgc?ssMcjaDkS*0g-2q zvDq@(_8x}8W@}R!DMS6Us75zr1K=uvIKIc9MEU?%1?KGt@z3+Ue2Tt+|{`#u2yjsS*m-(gBJYW(v+Dp?!R9k*6UT68&)7GV_FQUrWKJqy2>=c+=zwfU|HP z1!B!_&#EPB#w-`--D~qv9IpW;UtYUV-2{ZX=m0__$D=}SOno5^Gx|0%q%-Mls-hxH z4|$<`6SKC}=CD%+1p8y#!18bzqUX2N#+sDAxWu>^kzK4~8)5|w0Q&Jo-5Bb*h1n!% zeBX!R*8p=Vh%Vk5Gx6@oo!Q5?a*A&uN`=*agm(Dj%Yqm{A*>;v=FZ!#$ozm4YHvLdjYnNn^Rar?B7O}h+`lT1*dQV~AFkCb3G9m#IxCXr|Rl6?z~ z`oUCUBz!qiaLf(mZ)^xwfc*6^w(Tp@?6baelu^&h1qT3 zXMfe6Ozn$8>-+hY=(+<7P&+VmZaB+`RUvRWud0#&>ZGig;g8(o6=*%G7GZt77t7^L zygHG}6J+ntNpf=w!JGaD) zy9)wQ8xYO{Faj{K6kHl8q&h3FJCmh_R-0u|EHDg|3&*w0Ao2Mx9Fah#w+Z|ppUN{z z>PeLW!&2Dp>nX~oW1q@G@ts*Oz^!MhRE?4hl1S`X^pj__g60OsH<*UhQauFlfp&eW?luZR@nH{rW|&?| z^Mg_j5$_mf;)8z?QS?88w6O#9HtHe#hrUlJenUb2~|H=s9ZdmdAmX# ziJ2A-6Q4E|Q{<`D*-h*=P2Wl57O&HqS%X(^D><}uYbpr)FaDUjr^IX2*E7W8FL}6G zq@}rM=ceS~dcGGme;Z%KhQk4s#Fd8a?*%7nx(d3cj5IWYl*ddVv1kXH_qWeB)mIqcaSzym%73g;=Wf z1}odcKUeMPr?*(UzK5DoL!s2rqZd5vh*j`iqInU%-(Mxipon1}$EDhuW$NW#vD0Tq zs~?g|glDmJ@2(f!BtjT@WX=|U2vJ~N-EYv$3D5r8b?ujjvPxBKI`S4?{Jpeygw7$~cNRe?x9tW%HVP{X72xx&~{nqeoL!5+jQe!frqJ<>!=D8fe`o3T5o`tq;TA%RcTR zI94Y5P1VMId8clhWq-{DAve0Q-gJpe(%`cy-+JOiI^SM$3r8(6x=>oNB*kz_#O*HMg)r`q3gzS3UG3V@nVME{+#{{Q_; zK-GIL4+(J!Lf%moJsPOoZ~DypED^` zY%C6Po2s6Y{XKNlN^=AF%hlrHuq)FC{pLcW_XEE5`YE1I+uF6T;dZL3tzQSvWQ9Fx zI&k|%rsd_DQeA9K4MopQ2}O4Vx;m%&wL9w&_V#7dTI`&}NFwu4%%1)r!T-hIM^Hm$ z*>KOpPb#UoaSODMbEJiU=*hytQCP}F>a)5}ay zHwyK)bTl!ir~Q3Farc|5m$q2znh-rpy#=pMP@VNBj3sN;^_0TL470vf;=ML~jE|Of zpDCZmyspF>iL(QqoVGak#3y#ymFbq>3=@a$FW|A6fK3{qCa5$ypWc3iP(f0j;9?&K zZacX$(Qg*YN3jL?Q_|r50%}M%m;teHC#Iu*+BjDfr{Y(qwY&=U?`6D{zL1|;xj;vF zj}!^lXy$l;dfz`;yQZ{xxu@Q5{&1XhsM@MK^Wafuil3*=nSRQbb%>kHY|M6g(bM_&l7D?ASVNcT+8SW^QU*pKyv8w0pM^V&`$wbpUzc7U6&$cMA?rGTMgrZM zw6S*<_)#dKzPuD)ZcS?xHPKi7%*BF^>N)n)--d1bCgw0ts(_BR2V*iW?TM+7t4nHC=5JtO38Lgna>d^~dU*!y z4%x3j-B)e%u2j3JT$y?`hhnc}dHICkx;H5j_5LXS^EJy4s4@SWLv4V^{Wk*0-*a&P zeu&if6#rkJG_!1~%Six__flyweHQ*S^z<8vM0~{5E8wh6Y}K~Tmx5Oqx?*ymfWQ_7 zgqLSI4bc*fy`%%`*FO=e;8ZCi!+8$GfW)G?2X=K$m6Su6!5;t~zbFR=q#E<{KX!Jq zmh7m~XWRPq?{sRwNtO6-x5oG-+DC>pifGdTAE^|d7S(ZeW^AbRn(t2!wl}yUJ!7&s zU@}d1Eq$Tq7$tv?sBO_RD%qvGxd!tOD5$SadnRzbiSCfE@9mf_YMb7#p~nA>Yo{K@ zHEfn^;N%CZND(4H%r)25Wy`n>`I$3sNnp7IfVi@%(4kB(oB|9s|3Gk&?J|joU)eRc z@p)Ph^A8=VwSqtYX9M?wDp9OT0 zx#&KO3BneW03eA4Kr;Se^aL>n(1En8D`V0cxRJtkNR6%;ojhso;iw}=z)y}eD@w(J z!2V);Y(B9DZqAGW@;sxb&XZDmk09r6uBkiIkD1&;&o9V>YF*~$gaSA| zcz^rHp{sZ2di(xtMR$DIeM*uRMEm*!Cw+G812vBVAm6{-v47V6W0pxqd|~FaWRK+c z9LtAj>KV@?OPZhFi}iIDI@5ZSh)0pog4uBwr%Vzca5LL1^)Z`2dE$qMVIYRu*!)#y z-YL}geWZBLl8bGyUQ1}sbA^Xq19!-fz$8#jYa^n*{eZ{RG#BWx1eHzakp1krugF&K+#9OHVLoxo zHhYa-)wXXQ7sV3tkZ4(FEiVC{`aW0?_xExr6IdH(jx*%`GIgS{El)$E(|l}*Vdo%B z_z-uZHyau&&Htjt0UFcpy%Oa@G2$cF{HH-3W|{@eypUNT#KB954CG55Zqb%gx_v#-FgzJ*Nk&%2V2+5o0=stnc}6l_ytqodVXtZ@~i>QC9lZgDn?OhY=C};8~z}uXHfgJ12Cz#Dy z!><*c?%j06X4T6$Po4)!)si?D6m!xZcoCS<#QbB#83cZi)WFg-VXJ2lw1DbkZ*3P& zdQGZR5hyC9QTJm){^XnnW0me$&WETgr-vT!VWBvS`Y!P)4>_h?gUen?xJ6{ zjF3`bH-iROVf%M^@LHs$ME z5P*~xg+QQdYD3qe)i0u_|D16oW(V5m$I=>aD$Fcg0#&^h(^Kl#B&Rn5grB~cBO~Z* zO#Llt8r2HWCLo@~Ea(WIILEHI{MB;y|2o3K3uRyifg&zZN%l+pe?xBe1EOgRYxF*!D&LE3mHo}59-es0O&ihUM(%Ri|TDcAEb-<^1zEc->Y zOVgcP=WTMa%Zj#ZXyTXpiD9wGqij#c;#OXxkKX558OBXxPlc8y(YrA_u{wLd>>^PG|{(~ zro=h`fEK%u{fISAq?`}go1=xsqQ+`b;JNTb(&POvbbN31d(Zaqit}H;%|dv#k!m~! zF!Sz6J9=lY^Q7ME2Oe=w!1ODZHQT?krSec-pz%^MR}CZhVA^HrPM_vfqoILZPMlF= yWdW)hfFKEzWFy*O3jRm={_ii*|K(FRcrbj?e^24O^ce65kj5ijl?tV&um1-FxQ&Yd literal 12604 zcmb_?2UwHMpKU0Lh;$VZFmwRG>Dpf#0dIt*#2-15C z9}p=aAP@+I1n!$}|9kiD-o5{O_dfeP#xRqadFP!u=lsr;XnkFE+RHaDgFql!O$}8; z5Qr=v_=H`$2;`tM8$E%qrC{TyeyUEs4nD44ey*M#Akd5K*d!gAZ+EY}8OBs!I*@TZ zpy=xuR3dj|wPs)Bo<-Sw zZ!31TJzj&3Vk_i_%E62ZBXpH_F|^4%Pj@d1HWr7H4;VKWMTGTmfk2!fO;si17ulE` z#50cR+4VecM|W~(wD9eo6zJ;*{aLMM+vpC-ZD z-nU!F=v?xt)qnBJ@||y+7+wER@R)qVDUvl#F zx|}D(J-RtOm;+uP^c@<+9dNo^|H|I=9TNA=1=2a*l+@(F1k^fHG*JNGG1N>9z}NMJ zFyQ~sVU(00P}l`tP9Pz|Nk#?&*^*IT0unSDir4k!6k5{esX!q8*h%U>Y@GRP#N_5|#Rn3wy zOdc!=@TEkpzV=&sd&Ep9y&&JR*H#u5rLpw%&uDRcHxi7Xlw=QEFu2B>lpSxP6uy*8 z;9wl>#tDgi#EInbdh8w~KP-4RZ(-(qdgwXqnEQIMF6vXmDn9UVY|>x;4BzB(_kj9d zmYV0Xe*{irorJ}~Qx{|`?N+<69GfF7S`_F_ej;ZVAY)-r9 zXEt~<0?_m1-spl0a{M9d@)4`JleR@iHQh1-td-`7Vu*^zzTV-8ieeBCM z3O6@zUA1wU=}%i6E!yAbBIm)$X|5){d2N;cPsiSTVG*#a5&7Al-pj1*B;aUqn!X%Q zJN??Y8~Lhn%1-m9{ch_aj2HY=l}45|VkfCTqQ%ov$Lft8N5bthFSPpMJsqa|#Xw67 zZ)VW)8401b-oL8F8&TZ8bHM_Yg|7Y5!yE;oTA8o*m!@h0y@tbp5}KbbQLCq9OqmAl zGWc68@EX5rbPfbvjF`21yusjaIl*iEzH#W+cMUQSKHUl;FBP~h9dCwRFNDY;}`P(oP$1niF?Aw z@W(?LId0auIc~r3#9yh$JY-}E;x=Vvm{9l4!IRxFAuZ;dFvJ z*w-)d>`$Q(M^=|wbq4}k89@;^dhZ}AreSX#&Mqk;Talgj(PT((f^ciE6Av%VEXPe} z+1Kj2-h%GJUv<)Ad|!kH9))Qzh@7 zv1P5qv+64)6yjEqm5;#nv4pIC9wIOMxd-Zm;`V@);$Kjg%RcqtgrJZ+8DUlhg~CI$uX)_FH*OKzFCqy1b7REV7s) zd(GfLA78Og?y|F9t955qJGPS$59B$>&?r97XqZ)6kT7$V_>osuR*>=NFKOLiT`0;w zdWLa+q@Ta6Zp?=kn)l>f94$jL%P3$Sp6JvUrya0WODJsEPHQP>RGHE=48Ye$$Ul;A zn6h&*_hehmGdSRt9MT=FgxZ%fm(fwn*c-{3=Kvk-ynx}6y(L|qlB4;axKOxQ*wB_E z9GFw^G&S0wG1}cNF!Gn2Q9a*ThQyOhzB{}Hl9N&Ve>|)NFQVQw$zHv zqtyAIaRY0t@zc(~JsihQ26Qck?mJp$c=3em?9m6Rj`s7(Ucl*%`3LR7*{5B#cS091 zNsT;Hi_z%MB1!S}G3ckitC}9*q9mccTxnMB%}1+M2vczeT#j=|eIj(P%WNWvH5{=0kYsq|8n=I)XJyvpzM7M|Y ze)Tr2vMg}ey1LMxpn^oxG|}I+F`D$AsU`ey%?|9kkU_f_NQpvw>+a9*Fw@n*%)U~B zK_8FkX_C9@k_EKg-I!tfV_z|0&$TzOI)BJO2^=MX*pj3+R#N`1+>-^#98D z|2^h{K&Zi?24@`+8pqy2D|AP|{IdTQ#oKkhm9x3fMY+ZlT2SAuV)6XhmZ@!$5CEUr zpFU;-o$Yvs?PqWNfa^g7R8pHXsk2c|LHTYeMm;wK^ARa&A zi;mw?IM#$8Hc;j1P}S{_MQ!=`|M|VKVrHD`Vnq1*^Q6o3^tuxYC4FX5MYegPOzn<1 z+O}VJbWvKqty&czuufSV#1PFP?Xvx{?7n&T?SWUx*Y?aLZKEvXZtsE56cC0MCD6V2 zm@&$Uf2hZz(7-#R&aDh})mxn0H*d=PiLdj$Gb-z&+b-Rzu~@3hkeJE5(txWTtvh`( zLCQ94yVTUEWGaOkjRsj(Z&@J_wKSN5unY=Gw9#?v5)({YE%YGLjA;J*jcT|!xkS_ z9S;vKHa`*%T-`r@t=Wy7yk(vid4RlWJnGTC64-kU9bPXDh%(V zP*>ap$+d++0TIpq>4Uf5jzW~)EQoU;px0Hese{EuYjKuH612Z@^$jejwGo= zH79Nluv-J>1Jx>31C2-L@7Ih&SH?Cqj8Mcn3pVb(CSBIa=^@FDOk8lO*%!A#?>!R z<^y5H(+UjVkB!_oQGbGs1eK5xbnV&-CqGn3-N8msh#3K@zZXFvEHELd zr#qt8xu^ddbCabTyeIaY&=usfe}Z^nOCyH|OYoc-5RK)CE9u--+9w{Dqz_ZjRpz1> z`ur_g)MUj29WXdv4A(${k!MRg=YWF606c@|xh&^d6e2Yj?t3c$VYG45O=h^%(aZSiob%Ck;O~=$1^Gx? zDNEt!7w-!|M-*1#kJXoy)GrP`r(EeASB<;j=cZQH#lBaRBQ$Wk>9+q{3k2}q>IBAf z!TCDb>?y|toy>w(diHBbt<5wV2~4X+(&*6ks>f&7tl<4UMfkxsM zM89&dc7?M5_V)<7c>Zv+Q||T=>f#>Nmr$RKu)kf$NXG1i75Xp^K|MwO>`(u28$1Pm zTKXOYnFb(kZu>u^9bc)w+^ukvzZ*QGQbhSccDnp=3#-y$pEw-={d=<0Oe7j-6~3K- zZBa5Z6075{pKHz4LPE}OlIDl>qi}=pO5gD{5^}8+u)IquyWhHxD>fJy&!2hy0Kcm1 zl5lWzFIc!>W=Y&l37Fry5v1m{GUn>?Yy-rx9UOIrITmvT(xm`Hl+W-hisyI#$Lv(qCLBFG zMO2DUKs`MVV^+vU{6#LYdhfp9zdkB!P3czlO{u-+%R4iZ@7enAR9m_ba} zt;yG(H8q@<^6Eu>%z4~^cuMkW!0>UY5ATb&{OT?qkL%Bgx4Ouv8WI&1+~}XDZISAR zl(U=XI{W>l=8Cf+;d|5=YsL2GmLOQP>cMwQ>>lcRPOx2Dl7p%Lsg$x(5YX5tV0^aZ z{lhIz5l^h#R!Jidkexy9Tq8Ovsx!!kJ5`M21B=y7&$>={3LFlmH*BX>{M_MA=6?ww zUqlTN2x)5ZaF=z9m0zPh4Nf0L9xx(&1%3X0_HOmBsK~%Tqo8Si{9n%ZtLVH(5<~0j zU6!bC)pcw^Zc%C3vaiW{8Ogy4V#T;SEfsPNC|!i@{KAj3s8Cu#@EfTz%^tRlTU2D_W51ZBBwbptV`^LW*7ftEoV=>yg-f(6fs|fV& z)5ac4{e2q!d(0!!Z%3TW@!Pr7d^xnm0m`{+{C5nRW#e*q3d@N1H`ng}0z@h+8Yn&{ zUB3Mes;Opvn$eh(B3-beY6dNrp#uafizHaT0FG_FLunvWdEXZoLz$i8(xsFijFz@% zMnjV*FDYe9vS&&A%;^YP>0}v2fG!_y!NUE1~2>!q(|#>)~o@B(TVe ziuHOH&$D6gQYd{#!MC+Fb!~lQxD;MCyM24I*FveEzbe3%d=8RjuwRg0k7CC!n-&n0 zcUWGPAN7%EgOEfQCR_re~a4RCe;MGGCtX`cBxe`?aYzY9W1-!t7vd%JeO$&q?&e<@ELH_ zF_@Q3T$)oeSr}WkxtxF=H@8ZE-N}mQ%sb}GtA8~VmJ9a?SsC&}K-C@*7mgflSo^-W zwQa5rRF1p~-g=FR8>0O4XUF5RW%%0_hwCEPl)ye&zcsv{DU0)myc~I4+N}?HmGA`z z!5Bm*^~SIkFTCB2*~B_eZf|Q+Bf77{IwgvfLkxud zDQt>pq~h>Q(fd_8Sgh}S8Bn34(*mr35N-FBi#FyZ{L}>=4m_AN!qQWHe?NKqGT!-@ z2P&4@Ag=8T>&UdJS(kjri8SzFlf9*3aIBvlu_I4m>k%ov`D=JOg_)`ad*m?9WOWr> z)JU-2$@9BCY;6Pduh|tPP_AIUd}M$ZprTulzrMNRK8i&_n`Ba*@;y7@3?vXt)znn0 z$sLh1kK}n)5<-@j3$dt5TyG{BEC@~X1Cr>U(F5bd(9-Bh1P)#*In^1`HQwfNUQalS zWyP0DI&U0Ws#Z6Z4KM9tle9a9PO!h%q4P?3oSx_4$SyM7U?(E2;Es~wc~unv7hcca z*YFx_M`zJ2Qj&~_j%?a+%j!RwruQ7(b1>T+&&o5(W*sS&R485Tt*R0hp!+q6L1~Hk6nocRqHtcgE1$x zztLZ6aD`sHN+nIBM+E3Sf%bhlGAU2lEJiOzLbIrTuifT70*%E zd@1q>__x4*D_3_6y*E~`YKv~VWO|E1UE!0JxxlRG5(X%1_~|HSyhJHjKyJ^ljAQyq?2iZ3 z-rjBvm$J#f3@6ZzLDLX+_KhVOi6fIP2a};!YkMpKkEr!abxb(o`9F3uXe3Pp*h<^VaN!Kx^pgYTNn#d1byTjjxW013eQDfB!-v= zO$;rfwS)s({B;CaIT;yKmu-W!aX5y2&s2FA>koOc@R@rl*cabvHpA{OG+8vZJ-&)R z88ZuNyN5kFM1>SBW3PKb1sgq_|0*XG*=YeAa(Sne2T_V1o4kf^*J~dt2T4XyXB-nrHHhF?KsfjowMhIxDN|oH18&gwF2lr z)%f;7&K?f0!@+h&nzR%?9Sp48cm=d(qbWz>(^Zw?uvxZ&H`sK4P+FHwrl^q9c}n|U zsn_?egdWsOp}E{fq z375m)>sI8%o!XU+G^s;!H(b@SHDzr#4z@y0Z+5v2VwhfPUsrNUF9P?M1sLg9=RXH( zWZpN)Q5~7C0Aq220>KIWy4^6^`yWL|)+gy}0|r{`DA>Brei{?gb=quHuMgHpm{Ssq zIP%LKFTsd-Ow}D#xy}WSTx2FJ;UbBwpBB9*JOVIBT>UlKui@HhJJ)_UV?Jx(TX$9> zI;HV;(@e$m`!}@23&T4z@P<4?ivf1TI0!4o)U_GQqp>)jVDp!V3)kc6NYr?^hecwZ zx;c|!%fcn1`(eajNA^1Lk+#_8!~9Q&4sz67+um2r9|-`n%h}au*2>IyCv~81-#~sp z!^cN3?R}IF z0QYD)JiX$BV%gVMQxKpEmG!(@(EMHds`UvJAgJ*6G4ffA1cE3KH?`bx;JpE8y!wtp9HWcSi9iL2wAeGe$Sz4^q-vSJf~F6Id^_j##?Fp;CQJIUJ)JQ|Ak zfFa)oP{=ZXP6OpbuD~SWIV+^nI0^5Kbt8q#>ZzV$zT0lJ3r2Ud24y?wGj|38dsP%5 zcmtwO)=sg;#sQjYb}HDq`CO;AI`(=mPD4E35cY`=;U}QVd>FCZiDJeRnif*G94Za# zW|^^pi`5sy08NX6*n4|@;o|mbZMEOca|AQL*gRsXNu>iuIKNGUp}_z?^e*F0UGwugI<@61@VeP;g;Af6elp3>J5g4j6vo? zLyi0v?C0MvXVA4xK6KB4k!-`Q8+J|^C1SYvt-|eXV~z!&1M#b+6CO=DajGP$NU14{ zpl7Cx-v)CCV&gF~m;ix}HlFCLux2dk>&;XU(b-8z7P4`$*}EtHQ^YcGod$M`_)5MB z^B&rH@&#((qU1ImwpO^k=(bH_hLTp`{^obM8wMWV4G~Fm`R?&{Z7S__5pb}oQuQt$ zs@ola56{oa>~arkK&jz33vBYj;qr%HgU`+mtw$x?(>^@Nrv+|3Fwm0j0xS&M@566N zY#IC0zOh8MA!a^4+BP>CX);5)DHT3fK(_PvZ_HQcjRpSI)D67Jx)X2+;?@SWzjni= z!}_9)(;w+W;;pC~YkB2(Wh6VyRWlWD%&!8B+4lm=_muB9QWi*H{|T+yZ&WX>aJ%g; z{mTz_GQ?W2JWXf?U#P~{{2@^q#9L?#X3m41TGqGQMVw=14eByN99aXe7OW_9rorFS zEWn*AS_SC@Vwkc+q+ zqUHxkWH^8B(5vPFQ4C24d*mmP`9ek*l)9f)Rz}AQ4pAic8J&F=^SZP4fRy6_0fF{T zW*y=eftFN(mLh>)BAlc|9+RIQPyUFDmGZ!R(5DvM`0_rlO$ z@z+}cnhz*~0VsGv0YTi1@amwWVo(;~zhEgVQVb;%QcP>49xTxTN*W)${bW*B;up>*u%gQ?rY%*%l9mdpOd+`*1*Sfxhwr=cEFeMk7?Cl12CZNWg z6z<#}NMOY^x9+2g+$qQj0dt2;z4DKrTfo>m5DLSOPa}@AB4w#(ub)4q?n^aznb!05 zWr(x99l9hZw&agQRlh(Mi)XemtYxa&+Fh~d(o9J(`jH-Vn<9n*(PeU(<5dcWlP!Xt z`;Gs?iE{Vs5^r)R*v7_Y$XD(H^_)d@^}+d{{e7RZQ4MPW%Xz+NWaE^{NXH&<=-K%8 z=W&Hpyr1RNp4h{i+^%h^xnwC@4)#IcFBYnk*|`S=W=9pky3{?~gm+l;ep)_&Leo&R zZ1$CA^YBmTn`HBIqMC7*U9h!eL*wHj<{WWOV9}SMI~H(zkj0?T=7BGyy*{H00b^lY z)M<9j+et_ZxJ`clNRgI=DPZI0TWT-Ckr5HJcpKUVY?ia_E--F{ZhxPey{w_PzzV*k zR>cW;Ob*N3xTMLJ>H=$ar5+hw$)y(N=64K7l57SKz52A;RLj(Dw#tJ?p82-%?k)bt zZ)M;8=#lnKE_g-kOC@c5D3AvGi5#VcQoS{dIZ?eKjeUy8a6tX^JgJ1YXRvn`V5n8$7F(8hVT z^|{8H0pUM0BWfq_rl%;jc*gA=Q9LU-JToC0)fMdioTVEgC()oK3u)j7ViXDSkd?R2 zu16?UoFJ+v?v$NPO*yLT76YPAiC`ARgn&|i1Oy9+ymX9-|<| zlxhFZ59?JUn$nUq*bZoG9%u3t`;_>68nL7Zt0L*)xS51k- zHr^#RS!)aEST^Gx6Y7K^e3+qgZKe@qSEq0?Oq;7eNtJK zu=!4m?q6P4fb_Z|o-+)xoC9nUH#&Z>z8PYSfnsV=i{7cQ77dxzw-I+REAqHi5%qp3 zRCX$QD(|!_BXexO2soN3UaW}`;Cl9@gfT{UfrUHS7XR8*p*E@`7NcCBlwHWnZOsvQ zy?M23#H{goi}6E)Ap|dH4{y%i%TU{aZB+phl$VCq&DdlmM6oG30sTFv?cy2k0CpWh z)pr7SfHBD-$(ji=!Pcnl)rUiaM?e+LMb-*I9<8xBe4%}C+ehp$w)IJEOhmd~H_DXV*%Hb9Igf$`pHtafC7D;X@U>*bKU{3vG627SvLptK z?SCbtgpu0~$OdQ^_f^kKkpT?2P_QUmqa>vevRyN;p}Ym$%E?!p!Il_|e>shwh`^DN z=_|^x>C}vv{a~|V4tFfNI2Z;3wNMQ>J2Rz+JvqEbIY`9@2-vX1lsJvMJ4@3rNk`N( zh%--zIUQjpB62?iYFv*T_D{evf5(Fs=}RW|Mr}oVlO@5<(K?uwBNI`!pyYV%Cw8ZE zF|xDetz_Rz0`3tB^g4=S0Shjun>9Pz#D577-2i%uqPbRf<16>*Z#GcDawCt=w`+Pm z2F@!oFU;ONZ+2un|3bOu=f62M6~6Q7&b$-g?KUDl|ARdSwNJUv&ek5D(ZHNa>qf8E zMhv+T#zk{b56^6BV-U9FOa}*OxMWMs;>OV2PCz1=1Y?uu(o;3EJ)FSs9t5y;Kn)dw z|3X>n`f*#o(Ai7sXTSrzt7)_== zGnunfl=wQH9M#6m$3a8gVu7gyvLl z$%En-N28)_IRZNw3>sG(D-VN9;F(LJLcoo~IGcg38=uRpla9BR)`9Rc@L>X#C?$vTHC^)>oUDf^Q1r=)TuFm?Z4Yd_q^qZM~r?f33y-X`)dqNv&uP9j1!o{i{?-Ta-Rg~-h5axe7EctIF4u~Oo>!ja&{g`*) z)KaS9r98k-udj>!-e@WVIR$Ci6BhjCw1DEeZw0gk<1=zsPiGoLNs(JEH{XtTZ}vy9 z^UI-tvfRAvNs~reya5B1kh>=}YC<=BJ0aO`P-vhpyy(n4Ei5X^rj_`5^s86$53{VT z3_gqbV#86>`fGT3V>3vWmE9lUzS(|!##^D~nTU8A?t(7%N7?wN(Cu4HmPeU^RvK|~ z$1m*9>v=gB3vs07hkH8L`z?nRAgVCM&y8&lL}T{WbECb`$nW#Xh@|tBenIh0%aeFj z)nrlPAS|lCh6>E0CwE9}K%R=`Y5L#toVENQhB=+GFchZ_v_^KEOwXJO>nXOXV|2|} z7#V@+a3kjxpaV5hQp*gBhthPKNB77qS0Qo==9Z_$b^9s)T?5cZ9C_PU78T&9s;oWg zqk785LL?Mt3|XDJKQ2;lB1bBElCKr(Zp>`AuVscCubLQZR&Rr2vz zr{|~(3;(?5hDxM8WCM7a>~r(!K-;L3lZNvFx+T?x&K6i)OdvQ=S)BFlYFFc%yPIb{ zzvh#>Dq>>1&Ua=J`?+#vGTVYKE+Ir-)oGlQVM2bti6_5+>xv=@4EqV}j5E{Sej9BW z;^R|n!r$3cfRHS!^1Pk#-WboAR_B5&@bn~JhR#}Y$*>_zmmdf0xD0nbrrJaliRwK> zuyN>h){WQ}tEp@Vng!0v+=&DHoI%rh>wGbAqc=eLk`lAB@sJ+jo^2LzL$(_%ye{yZ z9dB;=_|m-^yb&Y!XQJ8sTKu&SL%5G~HsI!Y?Sy;;{Ik&6$=C9vRTC%klF3QNBKYTW z-}=tIA&weg(XuB_Cgx3OY=~pB-kY8kHBnk=UazBgzo?OEsqn6$xT;CuTxPH1iQYzI zg*dackwGz3Sr$aQ(HGUKR&I&*cTgu2f;F||j`^`uw9fPGM9F&M?>?O>ak^OKR`h(p zKY_F0*fWHKuRQ)`dp!+kS=7SgyUo()uN$%xVerQGtd(!PpnL}43KC-(xMmJ+t;%E? z-#%ebuyv!)vJC_>{rp?=QqX4Dx2?o9nevMmaz*)32@39Seb<(6fIyUm4@t%jr1Z3o z61W`A3Hg`X)=DRJ%Rox##TTWTuUGzY^ZLIO+JM5qW$k}n1x5X_CPXl>`f0-lU5Vp# zzFN7l#<%4@e)hGVpjRIrksVsgJ9N{?8wV=#10?2c+^+O$Q&Rn1Z-zvP$6bavN|)4E zgDsCtfmSrq$Bsa%d`;qAv2Gw`9pM@C7Y&p=&SMj>`tsTt1*1TY|`BxoH z@{js9>R!&zR4D3=#Vmx0wWGUZt-iP6Pds5A5!BPi%PTuKEUJBT^awy!4~Cp0 zgb~s#^Fcs67WpntA(3@G_jWYH%*%aBET$4-0JM-BymhLo`cu})yvjAy71`8m{q%d$ zF>~=Q!(wlI|DL4N8|N7C7djtl3Yn0jJH-P`dDiJgU9oX&_gZnQo`tImqMz(62qxWE z_TuBH_o$ARFWvVrQKI%~SzCsjLAJ8EjZ=#$#)+$-y(WstPrj^zyiI@%lg_q#E<#i< m{Gadd{<}r&f0&kU=T!aF+BSo&w1U7~fixfMs#Yo6hW`)j^jO*e diff --git a/mods/psionics/icons/psi_fd/righthand.dmi b/mods/psionics/icons/psi_fd/righthand.dmi index 0306a380cda6ded49f5a457fe9e752bc62981bfc..e971fd181a6b55d1175b71b20a3b2be3d68e9181 100644 GIT binary patch delta 10613 zcmZ8`by$;c)c+_^P(lfn*l0vTF(_fAl!BB92pE7OB?yAV9#l{|MMRJkrID5zN|%Jv zH5{FDqc#}Zd++K)={w98m8D*@yQ?1dED02*Tvc z%Mv{}=-=SsC4R{u6#Mte)*p5*c-5_7*yReOl2HD-j^2>~PGJK2@CSQ9?1}ki4*uZl zN%C7JZOGfM9a0+(H?ar{LGXr7^zaG0*|QtGG?8L1l)`I#{`B$epxA)HfOJx)?)}I9ZSM<`K;PO&XQyBkd*D{7^+$@$u>g zzEz0I$YDKo{@t06_ZnFvr6-?%;N*^o+Z-|KclmVN>G3NI+fUHLN%?2emoEPVA_vE! zU!21mEI@8h!|V>uq{|L%R!c4&ZyUWi>_6Uij;h^uh{$Cw@`oSvA~{$1Vq$G5;jd0; z9FbD@bUzl>Zo@NP-BPqRBDRKIKBsJj(Vm_T8uD2)EfUku2Tqf06}ci3%ll=wS2s6vHZOhEcO+-}6-JeAjcwXC zk8+cADe;gmFhGsZRqY$UpiIGAdnr4!?$fu%&DkKT&vcywzGUxr{3-2uwVAWLwl%U= zyYH=>9%n0>$GNHW0?{dlkM1L=ok#-C$X9M`h-}GBS}5b&8UmY=zx?y8ULbG3VHV+} zz(!HdMMo1>eN`3jSGLFzYx4Nm0HfLT{?>V5`ki#=?Btn`;=!%*L!#v=-YgMD=mOlb#ggJxxQY?U&XI{IXJWtFc+Wr)n&T(nOEQrV^*uLCQ9 z^^=nz`_bU_xh!p(dnzICdB&ZF5$AmV)amyr583_a+gEMxIB07FIpzUxm$A$F*y`@6 z^QObYN+T6DF~D;JZG+7kEsxql#@YT)-!r5=pA(&Gf(GWNSw*eki53^HrUT2F_x||L zBb#bx>n|F!@13+oUo((cOMRe9!I=kq9avSGu!3}_9~u2wurxMlA=VDq3;(|r*)Oxk z%NB-T}t7pfY^}VMi=;cu^MTJaQ%ux)=xf3U9#+V2%&2ozfN^55M_Nf6-5g z0Eapu@6INbcoO^01=BOWKXCPYp1NR^n5xBT%y?9WY~qM1YQZ17Hn%9ou$Kx*izp>0BW! zdSj+acQ+!~?_s@f(3MsBKGr)&mjBd$BO2dF23%`?L`S}W4N|wTT>21R+QxJ-j@tc( zERlS1G`QMvkv_?Qv&GoN-1bB@`j+(odF>53GL$S~HcmfO|IM%7_ddQlA_*@K{V#_w z9Ykek<VlOW-cKfVx148TqBbWPbXFhiP+V(d0-7mxnd-`B-TnsHsdF$F^mq z1=novT;sWFH`K5DlI+2=lztDoGmJtxyY7|n7L@c|oRA6d839?&%U1?i zV&&)Pu9dCoOomnc=GG>lijJgWNlqFYI8KIfayDvfkH%L0el3W%Pk4iW=ADHOm+v`M zv{Yr(zYx1I<8#-6JuFP}*%FFhfKQB)#@a@j~sVYc13{WG>q@0vHt{Gd_ z`zeW<<0Y&dbn)Y{IJxN9g3(#F~L{y{*UG(U~s z3ehJmjYRa*jYEK8;vjtUqCN9GQW3L9hmR=q%1Mq%%cLz;SrKFB@A5H>MZZzeU+VVU z50HY^*S-E`x|~MpVm4H4`Ps#V{a1=t2JAnA1nj!rer*Rmrk!lBssqTvtbazid&){E zNlUo1NnzgJ=-NDzL}K?AS*`BnXSHcO1c3)RXorp%Z3tvX=6rp;(iuKh?LTF1`{|)- zz}j+iD~m0^4FBZ@3oa)WVsbou0PtX2P&PqabshtsM_!wUDnyqsdsi}DC+~lGaOAqL zFWkp>kCq($zb7vf7EC~D<66Vpf1OYXz1=_9r@X56?4xXxe*~~aDCOjMM@u-w^6;nj z+QV|G-4g^HoB$UjG+8BV;SSDn;MjWH>BjLT8#@n++j!!;iTB4lUg^XRPb3E&-YHCQ z&hLaSbT*ytgjO6Sgs5dGp1Z(7VE3Y8@$&fB+P6n(iLbCxtL@B1`3J3Z1RNVFR$(5~ zbcYu)9!}%37fyPILE1271a&ixO4OnphVQiK)w|o40}T!Ko`eWL%TsT+9q|ky*K1Mc z*hza5BTPr9QslYlyb#nR8GTah4hKIBCd%ud_~V>f;=nm3h@+)8KNryyOV0>{S!crN zVCsn1t?tUu)wERWx(uTxxPy|UIt<3qiLhcm5_`q6X-PG~VlYB>hZ=7gg=3->w z2u4Wx-(4QoNXUe}EbK=QWcnzvyCWU)4{b!+j5aV*+aZVJyk`w|FU-{2erM9WE*Bz~ z*zs>)z~n__vl>@RDLZ5Bg=nHv2Ya^l9*cTlBSh}5*xu^3-OWwEet!88lw8|mhgz`e zrc&agEX+15fEXzLV4=`#2GOyxN=X6{peLvpGZ6E8+5*E0<{|nZ(J+1@Srx{7T*6!Dc*)Y z=}O;<4bEuYYJ#+J({@s_6;sM%P(OwAtr3B4_@Wz?yX%pgZ2#iD=|PR@pNZY?#r;+G zlyf&E?Wf)gI0;zHUiwVjp=&jECrdV-=R!Q)39T9|MPeZJCgNcIx(D^|7TR9}I$+PJ zLE&?J$1`xqv2SSz;=m-ktJYK02=uaJk=l=hKbP!BHvpX|BhB!pwVYQ$0;GNXo7bB@ zL!MZjz$^H-&&&)%4^U&j{!a?rMdVSC1X8zueT*lMdAm2pZOE7KjPL!ap`OxfhJReB zs>EOYjQi_9Jy1?9OF8=_V`Sziv`=?9&pBw^?b;8nzwyI!uR#5K@ORVffroa~73S@& z3=|?zAnldf9xFbPGlMsy`IdcUmZ}TKvnN0P{@i%$I>}l!0$_FqzI*I>_IsOg@d-MkQ-jOnNX8fp(50<^38LoBSDixkr~q9CfYrj+sXjJeg6K6rxIA+2 zmPuUds)b_Y1CW7Zj=HjY4Tnqa#qOM=EF4HdJc*GRX;yOB+9t|4CRzoZ9~5bSj5K*d zU81k~k}+Q9*0@wwokrqV!#6=x$?bnBVg1j5DXx#ANM9e6%2qY~voCeSCemq3RrL;0 zirah)HmLm3>4yxe6%SJfh(-+yDj#I;t}h~?nhbA0R@LRLpBzXu{=n>4G%X%YwLCQ5 zESwx=*thMpviY{D5_|ffd8GN@8JtFgZ$Ou2WV$iaqUvdM8Z`cd)TjSPq}@9I!n?~e zThfQ~CihSGdXQ;|K{q8W>n$?)KXj9HS5qgO_AE?pC+cpho>%+(6GtKNrS`i%gCdhB znv&2SJ;|6Lu@*hl?xum1j|a^f7WUMqVo7yhy^fs57KVGk-)vd4s~yW8@-nbvcvAk$ zPW~^O3q|M3ecRVhSQHa)Fsi*obPm}C7^?O%GAbZ}H_@dF4IsLHmq7opE!0hMU`5-5 zg^UoRP|7;%3Ga<$h_L<(!uyb#Z{v1YgnLCS6j8RbDCI-cmw?W+J4Od59Acj-)z6`Ju zY|K&U5f|kI(!Cb1Y(l^dV16ynJfqL(#L%oO$ZSC>SuH^l>Iw70Y6Ujp8~^cHlP+Mu z?n{SoHak1)xUYY3$x@o>T2F7ro}SZ^({|!Qd?LDp;II(pBeL>K6L+Y(LA z@KGJQDT+b9|+&SkP)PvEroAe*jnJCfQCf)o6k4@`}7EKbY1WDcQ}Mnkka z^q$CO%8QZWFDD5iSIdhv#Fu75zn}Aw3tc{K;;)$$$Ev5+wD%H$lE=Ocn$R4^$@`82 z$~y@)&zV(X>KjGflrP1`Qx9`)8Q&{;r*l_be*7z2a%y%Yu`9yfy{;;`RrQz_e;TRVJ#$nXXpvZ|yBcedB4h!b-gC~|UaYLd1=*{zS z`mu(AFql~;GcEsw$f~=`-M|{_Mpqkz!7rDnqI<`}N|9)@A>L#m^f>+|Zx-yoG*sE7 zHd0Uu>UvqH9S%&sYzF2M$X5jA@vfQYt)qMxcSVIN^W=V<2{$`_jvIMQ_{7f>2|mFx za-%Wxk8l(A)}L3QQ2nH{m<@{>@+TpwY61LCyPU3XAwRyYeKg3{%8A@L8ca(&G*-_D z(<$P@2H5E5ZgS6@@eq(q`^SQN+yt^?DR#J#237cL2Y~^+t$Lsmo*BH9>pxxI6&0(C zKix@suQ^=0q5}{X-rXc-wmV1Uv=1VKlmYpu&YRy3y=9(hVU4; z|Iv~u9mR1eRdn)apFvI}znbV}y>;;>OPvL2)mC1({a%@v2r5sI14$yRAH|K`6p#@G zPH9Se=^gO8Pi2=A=@)oV3$?6$FUO>|P-R!sa->kR^g|g>+#Nt6kXsVa*&uGZg5MyX zh$H`)RnYBLmgKZICeuoYybkksf8ni`@C*!jh@mY&ah^(Wg%paoGi8oq%Tt*3!^UWVnFCr25p zRQmoT_Gf#WoWFw3kp0&CC{YNVPDHsskmh|PiVW}tgw4B%J^{d!!G52U+lZnuGFcl1 zHl#K1S0f1@#Eqz7dRKQucwf8$GKlTBIhk9cq%HF;4BkXEDLEge9F9Ow5$%>()Lgk2 zt=VudhZnX2h*$JV-3A4kCiNo>x!s)WK!i{9b z9bOPe>;@xDo~_BJFvSvWNMu4r*fb#V&(t4lk6F)+j!6{x5Rxk|>YkwvJ`seI~v3fm2uy^HuGy zSkW**#9Cf>mu~G)$ZlspC$RPA)4w{c8#9+}@uAbqpSL*w>PO+88^3(^{p-^UToexO zFF}#tUHI@j9dEmv`D8=C78Nxu_bKh9AZLegUL?<6KE2(A4k6UMU|gf{`+{%fqN-~4 zs9NVNyRAJ=%sTOwQd*9ruoK~hjEXGY^MvG=_0Z^yDf9FJ4hSG8?^<7Cb1D_uJgn*+%8DAz*JwIm)m7ua2EXBDP*|u`M5K*cIm&+l`vY1 zVZXQZoPQ!CY9mmH7n{n9?5%Z*D`MFDvog~0X$l5A)uFGgVZN8sTKt*#Qd|f)Onqsc z1=R6jBTXLydsCZU-KP~7>&(|7Vf07heO&He_Oj?YwxpBridh)FSAc^m^*7TCTLx^0 z0(!IEJ-3zpZg3jzsO3$dmOFs=C}4^0t#s~I1qJlhmV4vtzf(h|?`lGCKOwJXp1%ap zR{v1xtJ{~*O(IM?RAF|XRDNRV%X>0K7Ta+i1r^lBXSi;Z-d&P|B;OtW?g42g54M8B zHG;=Aj-RZzvdn<;RyP{LORlC>mDjuPRgx(*ADc-lfr#2I9^eP+~wR=ylR)2|6l{e^85Cs5=a&bnK;El(C1m__P0?;s#BC zDHK4HMoVQSfPuTISFsW@ly;x-zz4GFAqskr(AN|sSF%O#HF=|Lt=KrFs84 zu;~rxZf*x1YN2Az?F7iXx8KwxO9}7sJOJxl)EkYiQQlx@n(u!sEM+U^)8T8j>Cl$3 zZ|&ZB!8MWrztg&8&olGKE7n%gj&#w${5!Me{Aa$_(NoAye``=jvKq7g6FmDah@hZ~ z;-+T%i%pW&t4y`v5N&HHgd+U-vQL(QFL|e*w{C4$z-m?WP61P2@_qZaN#?6|`CS~q z7HU*}YWcs!)Qn@&*uB$NK zrUY-(g^vVN9a(OZES;Z;>%N8Cf@Xu%K|PL8rX~GRSGw z4h+JRJoV;-*2iM?&)_6`lbInWQVpNe z9>oFx#7yc|W9^H9b7=dgLyE;B=tduIC-N!$uPAucJz-E_YDBBkz8|S`^^abJ!C;*s z|BXfT&Z#ToI+9d9nh_Rk`k4zcjmrSTVdAOV!RsyVASAI#V=&mQhymv@ zlbOE^Fj$ffk%K>i9R?!`k*}Li8ykW}FTGo*3r*36eqeraqLN^+%#-E;hb@4qRU~=+ zUba2*%@rx)21Ak&9O>k;==n^zY-dPB&0h zdxJs?-tv^=_HW}4fd}SpOM0mHJ6}ImaUp}f0&N+jj@Ks1NinSK9zn6+G6y=g9=FJw z;90NmEBA=(#m-GVY9M}4q!Z33LB^W=@xrRdeilof03#k^RW|mit)4i_GtJyhYbViS zjt%XV@a?AiBqE3SZo=}*u4LjzC~+=KeBR_*p9_+F>?kdO4(3BM({GOseYi8cVID{V zV+vOv!>XbCJQgqfp1GI!*?NIfM}LarQfQ|tHFV7g`)0;_o{qHF0nOu}dHTzsZ72Xl z<#!k`W_jt(&W^S=7)U8l5c8A5El=GefNC=1o?-JfpaMA`2SE*l(z;}^vjkl13I-A@ zooBNS0p!6an??|DWm)3=f*h9KFm%8u$j@7zs;YrhI1_jUQBV85KvjFWB)vv zG({DWk9nq4(3B{i!H`B$IINd@HXhG10H#e{pc`6V+9P5PuL%W+C0R$8+j)L|lB!0* zqW<=H@9H_uR*8s(PEkAw|~v6X8nvGA57vT!@njJxSizgm_gi{ z77^&XSq2_x-wpoc5GY~M5$?#|$rih$FPl_sa-cITYT|QI^$Gt$mEsIS&(wnvYL53g z9wMdQVEG56^h)ZK%hkL2R$fzxvJQP!(o^#M1-%=qjT+bb_}2C3Pucyp&f&OwGT`%U zM(;EAS%qvikkntHSGbJ3t|oV1{|O$#Mt&-A)(-p z=IW-y7*Df%8bzOD4b)$NiDo9x-Gl&<+1T}mFj~Y{-Xe&C4iqMl=*cAmzVe)e0=W^C zCwAbH3GE2w$0ZD=ply2`Qy?%tDl9D)IF=lT!OUaSaSR0@Jc-UeH=`SdL4RxTx1Ko! z3xZ#mlpYd{Jq7>H!wl1(wF(A6Y5S@4Co(q3CV@k@?K6kPWVYsSLMeT<7~0ePR+Wrc zfcmiU?PyF^LA3_7gEqZ*j*%2=&z}UspcC?ws?K+yvz|6}OR*catTDGKe|UW9%ZGJE z_ZLLq%0l^v!c@v~catl?6?i(Gsk5L|LOA=ScRik22*Yy*NOwg{yLZKCRhH=pAJp*! z44065-jEMolXd5;g2xD6cw8WJYIAMN`lRqjC7m#B^b>f&CT7fdEiH=CP!gPiQEBlLwjp{E6e(q{F#>9bw^XUDh7mLO4Nk2%+^ zaZm3+xJB!>v^pH}Y}%g9ei3wE+pULY%df*%u85GV7I_R8)e@)cyyP!Z?abXE!vuoy zyQqhVW3>_n?i5wlf!!KRyx`qRig|@g;mz%808@oZZ@*H#MK!Z&djIK(2jnrN$$iB| zAD74k)4ry z+0cL9^O)^pM|Y3W>xYRPoX)d`0ORg_bHTC<&~yYs+dM|hIdyLzuNSSnF4XXOTTkfP z_);(p2%nZN&m4X6S~cEl{RK~^F&gi42LBGLVme$cdOu^F#voSA=`0@KBn+&-6kwO{ ztzL|4o$A?)-~IYgrsnzqFjm5qhIOl8^QhFq>?bw}mHmo|HIm0(@V2yWXl=Hb9FA4B zp7<$d@!Q{$BQ3v?lS9I}Lp^hkjt&M3dnE{FDe%O;bE1%rFiYHeO$I$I*sq-zK{0S0 zE=^#9apa%m`%OEi&xLPJ)&je!It(Vx*VSKcAg!i-Oj>>U5C;38p-*?V@8-EP%VylVOs7aw(Z0WPk04+f zfN3!mw)hF2W0?2>xK~t8vptoJ_NqG@DPgK4G z3687LRl8&w8Ar&)tt%F6l`5y}^<5MF%O6ZW;1#9*emkoM0jeDrde^#QeC0fjrEtPm zUJQJNwHY&kq> z=g?s?EfVy+9QFJgl?ERjP(zu5HX zb<0f%la^X|wdyFz%Htf<@`>FLC1Vz{)A?~v?L0tF-$7!3xWrWPxza!=O%#Ba-xd>u zg5sPL@VkCPo?;q>0 z2sSU=FN)W#rX1U40NY>=4NS-T@4Uak;hB?rY6uwY0z+a669V8E4r#K+IeTmX{tOD? z2IC~@0~)(!zh{QQy2LA)w=3(ue4%Y7z6aD`4krm}hz4&q80=NVf+*u%LwZ5qxeBO9n>d#Z|v@C4~@p~+xx`%STCg12`Pd<%Myo32AN%C@sym=}Ti z$H`f?u#guy`9rDLM#m+l!Xq+>@8;~a`w@MSpL)qELR1QZigiVfX+q$|@mo>Y_3k9; zLr1K@{`^GLkRp`gr`zdO5Gw5$9mT_erwmY2HHkPc<*phB_5<+=0 zW1GI)&ttE~O+$5F3AHi>`4jIy&m;9~mu?`Bm_t-0GnUv->pncSfmwTWZjjB5n%?Mc z9-4s~-Q6y3{@5baRq1s398d8yU$kHJEQ%~}OW^!EAacd!G#5GEOQayG120-;!9vOJ zZaU2NPssatLr8=Teb6PA3+wU|zkAXqch>l~|7VWl5ba_mEQk=jlmCMJ##Fd0b|n7r z+aHCo#MbIy%su0GmBALR@k04PwQENbCPYH%vzR)IlU5sQ%|n0@5-q|Krheb9a{IEW zWj3mEl%Ih^;sIo17OypHpp$ZLNv&MidT5|ax#@CLlgtFRGKP1yTKgN3;Tj&sCa`LH zRz=!kjg;S4dOrN&S7qw%sq}DC^65wrIX#QWNb8n~xAxR!WE(7dUdSm-#C3LW?exc6Cv+a^2^uXGVx4 zwi=XBC(br8ap%`1VLesqFhQV<}Q7Ew&gjvSg>tHmQ`dh3sQqDcQ;zl0qbFgph5fM2JZC zbu!2@wi(+nW9ED2_y3>oobNlwIPbjkzRz;s*L_{r^E~VKm+pT$c7Vgo!f<2rA|_es z0G3bIva@}DEmsm1s-RbDD|AotaB|}TBk18ki*w-R4b3?*I|1W=#u*Uu%7&hy@z|$F z*+Zu@$j4sy?YV=D_H{n;iWog?$Tnpl{ophw-?clYVebXt!}1=2G~;_@X+5?W)Ae(( zFuBWm(Ibp_mw8Fy`Ll#7o&j)I(vL0rdy~R-H0@o4U%J)KW8J$}P zTtfdHBV2uVTGK9m%dG3pr9#UK4R^6SkBPZL2YGZ44P|8}pf+XXo-}gu1`)7-BO6=y z`#5ug_f1~y7TgjySeL787BQAke)_^P42C!zqmPkP(l%E5XB@s~FAQe)S1h^w>>GE>dwrN1cZ;>2{kn zXPEx<>%aZNALSlr%GI;U1lK~?l%IGT@T%iBx1uGRs!J|Py#BO>p%&>p!+on%cz~fe zb%$hs*Y%c-c{t`q_-Y0uiq?ILeo#aArN1vAO^dYB`J>0-nq1sg^K_EXES=VF|5qxZ zD3*ui1;5Qi^pSbsq2|CHZ-;3%o7y%2{64S*Y_nelhFv7q4})$HyQ>C*X11i{Nl8CM|50HS9(Ma|4HP3w0r%8U%-~tR(kJyRjg&hl^=sa z?pw-}q!_v^vkhNA5z#WLDK7KjAJUS$fYurOu*S2%T@i|8)_FQs1P+GGw;ho2fqT7( zEwxWO8Paj`%vmc5#kOk6yP)e%M&+plXd1p9kY6wC{(w>ZgiaZH5%d5|3PkR(94>Y? z&oU@F&VQiiRYgI>`%FpAZ>4ZIC5F4ZYj~mO?sf_YeQ@{Lp37cl{JcE@H1po!cl?WY z(EO10m_7CF$WHHim~w=j4kiA-!M4%UB*TmAG+TdocG|4OnmyX?x9JQ0cXng(V{YeL z!90Dw24YbiqpAL{JSk(&^`7JDLe>RwuJF1e$4F}W?R#ll!jd5Syer4nRJuT~k;|$e z3P{j?$4`8jo9-srQihct$WGHIJlKi!**5N%XGdo_hqlk{4ds)nGC821qDK8k-s`sB z_AWmJ3l|n7NW=DqAaip>*U9Y3%3DqD9REAs=X6@#{yT8)ql(Y>@qLVMFA@>&29Z;| zdy|!sfB^W5@mKkgA<@ccsl4P3vvMhBKvAQO>xRS<_zjifZ@`(^RN;^Yoe+VTT(S7V=an284@SPiG#GNm?{V{gm@< zkl2n#P9rs^32)ozk-;K`&+FZ%3P=M-Nnl)$$}TCWMjlLHQuP_R`i$}DPN-nd9g}MU z)4Gfk;uQ2S>L0R?M*;@ZwGD&=N;#PvC%~Kh_3R;NvKR(JIg#8bgKz@OQI?}T^(D*& z2Kz$3686J?Wkfc_K)0cMydEd!Cpx?DB>Vcj<8^xerz~x$$x0YjgshWYRP5W?JV*=| zX@gw!8Oa^5+;m4(eIJ|TMNQ@_6qW9`M=L0~GW_%zEqaXPLU*+o>3w{R)L~u7;rEK}YxOLfuFIH-O@f9Kn68+uut%n-zgi8>bP2~- z*WY#i-b-@4eg^=*+!)pE_Vy|WL$H88u?!!a|CDluKSegjffDcSY2qSU#6O?EgW3jKJ(;wR9O zX8i?=!T72_fT}=A$zL!JOZ{7qLdnEfvfAY5z0o}JqOJsy!2A`yxi?r?C?14Wic4H& zVK!Hnp%&|FajN725`VTjWRUC1wONs+)J9DbfJTqV+iX&rVPXA?>wpy2|GLpiN~Ko1 zOB}a?0syx{Q$Mf1jAB)Pg-3H#l#@&jsnu@&VmwvF_&Zgj&XRyipE)qFW|u!pY4u;x zRIcDapG5x{ZTR|R!FE85(H3KG$SP~Yj32-J~|JU`CX{Eu7c)++4 zbDLq1e2!P{x7^;8aXgD!CN`Wv$wiH|LiUnRtLRSvLAF=abgJs}x4a7n{K;bJMI=`) zt@A!BF4|>&b~CAGz}&ofBLdyG&a}4rBYoerMbY_tcG|DGkhDFw<#X6kD65!L%#-%^ zsmHemrJrpJn_pstntksARY+LUGGmcDAj7;AHIP3RGtqaupo1^Q7398>wnBu3x{H_D zyg|N8Xr1#!>Pq|0F;?F!PMMr&TIrjR4*tzwdNh$mc2l#ifGR2W$YCAn-yAEV9S--p38>jzgaDf+%QyWJZFZAc<&^kEm-XR7buRue=YRz z_qpd;xhtD*mE$=0c^lUU9?hwk0l_`*e>*c6?Vi(7mYD;{q41uUq|0(i!cS@5X@WRK zMP7=MMW=Jr@%q`{jf?m=fo1Vkj-Ffo=8>M39-GgPrcv(p+MY$FUFDgLevh1QMJUG! z9TA&QJXk47?`Y$mTVBQyb*zG*WGTuDHw7+5!QV()TcL?rRxh2hInAD1UmssrPXl6j zL3`}-qiu=;kg}K!YMIT_TfO30*L#wFSsG?(Xl(-!3q2@$acUA3QGPRLqstTkRdSpq$Hzs>P4AiH%y7$3>}zc0u;~&(WRM;<{jtvjy1|RzyR|?&gms;*dnHsN$PrxacL$wl1}3%?b*9* zDjEah(MVwaOnpyp4dy%ogC%ikCwpPC^O$lV;Dj>3b`btQ#8}+}qu|${hPR9d?y{ueD|5 z2!j3_a^h|4%8(p zRABhkg1AjU=4^SY2&Ucelw8E$V`7G!c+gJ0vOlb8HGewFE?h3$wJ*Hy5i&L~JEFoA zIQCM-v*So*oZ_meHGKz0lvl&PoDe+7^JS-LWNt8P1(}Ve&pB?^Fjs@njoJ9!$ZmT) zwWofudkgM<-JAzAx5QB`t&Su?UvIB5XS2AqUfx54F@-{IlktQNt8chC%x>WKi(8rt z>SP(*YwGvf!n~$XP8R3EljwhOC@iv)ZNS!+(>IyJ1*L)SSFa^(?rr-$0F7hh}NqKbJXh*fQoi`_8rn zk_UIh{9+a@g4!O{9c$rSpfd71^IVk1xxcG_H}$KRBJ4;2X3x24d+!^s-SS(_$dbmr zu^v<&Bjyi0gXKrNt}nv(w61`$5NFr$kS%2-I%`G}jAaf)4YkRvQ|i@WlkTiKqc)S; zzBcUu8KyVFbrvgR(?TW~zBN~CqTKdH!Q-iz@F!Wv2eHIke0$uJM(`xQS>lwV65K~u{H&y(9>GAVX1Fr-@X|ICs20_|NUUqW8u3R#CM-) z65FowbcxdSt+$5HL!I56sn53%6ZMVL#RlE^d)A~5p}X+zRhZfL^Srk|+KQNntpufF zDFvqv{ZnJG5JMoCJd#^uYb-x6paw@^3uh=EJMFStnSxoXe*>WH7r*XR*Fr6qmk1_= znwgFjT#~aKG9=(=N?i>r8bxK$mn4&M8x8hD#&&M_u1fmD z$aBn`*Plv{{pIHjH(jc#>HBV~`*3Y73;UO5*98V}Vrhp%MTfrP$%1ednqfR=JJ*f- ztviU_mhYaBK&Pp=Z$M6Eh^7nH5mSTvmh*d8A{#G-QG=&qZI?B#3>$OO?|AB!5ie`M zNNr2ahnunGi)0YtUdSA%VK>UI@Zp|yt(PevIXW~w_NtLo-u=iPc)LLGMQrTP?!jO) zLsb^mZL#r%J(ZBck^bnufQnO}{~7j8Wf2VdTtuzRF;P&N8crCie**r`-Z*bLWhb;4 z$C%uGw6kk%(B{io3L=Y{i)eekXS#1as=Pp7C2!SPH2t)Ch>q<{xSCG5=WS4-f#0Gk zN}W~aI$m*p9bP$35ySe@)Ov{&X(1U%_>F-+rjh)1fAsh?zZCV{(Hfb1c(zn-JUOe@ zBhrmc@Q-%||1YeP-lfNX5V_gwZcFXR=Y79QT(`@uWCz~R-op?4y3b|16@#3-BiHI-9{Zu06 zM65#eQWCh0&f~WpBe1H($j}kJ{uR}L;gFg%KB!{K<};zbQEo{`T1u8lGkllz)#3Pd z*mSvtq_UcUFgaNeKlaE?B|3ypPonM3{zE+XHnqrpa-SKzXb%icZXcH2BcYv7K^KO2 z^PJ#I6(J}6YqBIGJc5nE4S`A}lv;&LRIy;G@Vd-p^Y{#jv4 zy+Fq;U)3PSz9^&BRdiAl%h(RT9~B2GrG(^-y?(rTs~Uj*M8la0O-uDj!HFI$@+}tK zQXImI_QD|dw`*ok)rV1ih}_^MlZ`r;WKnoL@pQtPQbZBDHx@vbKLxt{VX>7gi`$_B zyK zF+XnvN2%!GmTzCaM7PvNU@0@bRt6sr5hLw|o6E+iPE_yql`E{ukjB-LFTbT*94K2bBHp@;)P3}OyVGrBYfYYc=})g&`b<%?|!@u zzH!;$06TdD`Vmmd1$`|iOc_nr8v0}A%WnVHzLeQV1;czMSv$7o8BhPKh3G0K}7?Q#c?8~ zd#PDfnqfPgGvP{KA{-u7}!)sNjESlx-x)M&#GMLY~`T&D;yqVs8Odq37-W_Yc zuH41)QYMOiDxIO?06aSICK<&y^d}`XzM`xNWq*I7I7L&`_2g3UJB(U43rvBevTEc^ z9DSqgZt^0r&;R8MeOW8ci4x8x2dh+VP2WqK;SEB5M4swgV2H2|Hzar$n*+K@D^j_O?I7_GT2 zgQHXPj#aL@4427V8J+w&7h6hgI+*bMoqRK)pfB3I#h8b@@gs7YIQTO9U?a4!VYnTY@wX{9YP9iw z9g(Y^+h|s{DOrTDl(}d2p~d7)1-i7NDNV?G@H~+e&z%yX=5WyB#to?Ft?$Aa=xZTi zhBEa^En%@EUZ38kjR-L~dBxeqI2ePY`}FEH{#%j74U^ybs2f_LI;Yp{{2ho>VwR@E zT;j;u!VB-DanJO2ZRX@QDLItO`Rx~NU(d|=qG zAXD4>sIQ(Kh9Puc2F%$$z@W7eZ>OTYp(t*ir^{1<1CsEsT}$epk)os9ddkgeD%e-Pzkru#DYRjxg`G3uhNnVyIoDXeQ)ux^T-=Oc7_`;{8B?>nfJpkeOkC+8mv3v0o$z3bQTFchWGI{9SVQ z&C9_U!oGsOc63We-J@2HPps;&{JBe@rafx)DXm8T@s6f05ZCxgH-A2O#29lL^Pl$V z=Kj#KWtt>GsDuq$ECAlGI~+3Hy5FF?5gL?)BMy#h`!x#-6IKrRA;u?8y~(i4`5aY{ z!b|Yw+k+O#nwT^F_y1E|PVRq;pXhN3AZ3m$Z^HCwwy>kWAXRKPJ6t%>8*Fii+?W!| zw+A0JEBO0Go7*`M|A$@D9A#YPPA`r%t7+i~8x=N?x3a1R&W*cG<4ud#>cNo26Rt-G zBncj&)GURLim*RgoVsvzI7Z?>m zT~yNAs2XlGoGDI7WRbg5`*g>rtvY(9083Nxr0dH8J3!3n zihKEuzz?=%^`LC)Ocvr+K8&@;AUCSU5}b#GIEbX^Zv4rH{28hGhYgh5FAE-WKW#Hs ziz<`HCTx6OAi;$)h5l-vRiI6K1=AH71{)^TYr}4N&vbSm*3@(#>WKU%>7^`FNm(k7 z2A8xd`iwu>a=lUcjyrOqu&>cNSsFwX!_Z*3Ov@q^@FFS;Xw7O%bZz4~X$>kDsxP;bJZ8S3Ks zwh2C$j*cqSgs`w*>sE&sUtsL>_!Q_;bToB`xHgs0MjI-JC(GbhqsovvZI#Yq{)NDa zGLc3;+t-!R{)POJ%hbH5wdpCXCrqD3otFa(0ph6mMXWhCf?0DU>h*FAp#CQg;=#II zsd>Jdm5b@e>Za1H7jkOg*!)x(EQVZ zhA8sEHxw|KPsD(B1FlubEV~VZ!4eJtwuOC8unv1Pk;nyu-33<*lx^)-`wzfic}B-| z>j+3T7>q1m0vnDT2Ts2EL^&HQTi{*qr`(3`959$-?5ec702~He)u+BFsLM(Pjowul zWR$kG+rV7f;OHg_TcQwLZoukMNMUN$kjegXzFy3j4f192VyV9k!YR<%Pd zU-pAViKCNw&g0|nttB6M=4*2~kXInACXs$pYM1M#O$BTt|F!rEU}6H;oq+>#n29J@ zUG~4=$?>&JZT4RgFor@gJYO}t-ET>m zGt|2Mwjw?!(6+3d8M;(<0T^SnXpv==($GEf9fDALOKWX+Ao;ZS9+Wj$;67ECF$m@h zx3^+#^sKrWv`p3|n9_;rg(J@v~Qmlur|QYqZCABGlE9~6E+Swva=H|9XDn+9Jy*6AHxT!|qJ zuEDp>ha2bH*eNUV?GS<4w$BwT8*Bklk$1K}mEHZcK#GoXMT~pWFSgYfJewR75I3r^ zubAR#_W};&8iL6PoI(4kTs}KZfcN5=CQj{=pE&_}oOe*4(HauyQZa>!Zj7Y0;k@qr zkWLzWU2GRh9~!=OucM;{QqyK`dhq`G?w?d70d=3 z14&>t^czeAPYcr9G*PS)b7>?R^`8%=x9m2h%`YbY{CY2vw|#j3IA}XcU3UA%=65KR zc3z^a!hX=)SaZMW&qm=J+uV*}f#i9Mb84xI-=i_(p9gxlO*|ebpuDFLIkk-;n9EVPCyal0ek=h4voLO!81pc@YjCY8KYI zGOC~$w{XchDW0v@r@Q^a{-^jP@ubPan@>F;n&i}nui@8?;VEGhu$!q{D=4>h=_`D= z6~?M~*LTz4NE!w+PyTjR;(yO?_#mpHF1^12+|FTL?XD`Iz%FRaiu4y&ad>t8y3*kw z3WF6$Jf7gN1tm)EU3e`PRLl;8r8EU_bG85iKvA?0u(inRJXAUYOZr*~17L}H;`>1u zPOFxaj*BstE~++&ct3;Q=YAP8RgnF_-efbZD62#auYbkk3A7NJcgq?aTjA9ek2+^0 zFjsBeZQA#IuFD%yZ7eGDEUdoMD$-?kdf0o6vid!gcGcwvim}_10*-Vb2t0j(E8z;- z0)=9q_n+d{!zrmA0_CAwH=ZOJ>3TaBwdtn;aO}99c6fV>V>|vwC9HgAhDg{xaz4U0 za=6CeEJVX4iblFNp37&AVkJI~UK~cJCHK*{@?XbB7~W-cY=)Umk2&X5=Z!@`>9kIq zyI`_j0`sr!3_9ZRqxy46S?4NdZ+A0|u&IR#*%ecBRGp%z`5R$63?g>^o59*nQ`AT* zE0z|;ZV$k+v{NayGxS)!-^`s`jK+cyC{=DIOF^_%m(R!ID z;MI&d4**p!*ZEba#LmzUb^F%qs#>V!P)^gsPSSwTQQ;hyA3Z&L&XXnnzJDNor`2j$ zc4qdB;A~iPW87pUZSy18u})viIJe|&dno$oyK@I8=iBh}{5*^Ndy{w!H&0tuL4b7^ zoCli)vsq&VoyHPM3T5I-MEs3iU+4uI&nM~yR&=wmfS}cVzk!#sKSX9`XziqK7G{d1 zN<7{Y@V>~yxJjq-KNdN1L2%-x#mmp8S6X_$_1#89*QSljE?Jzj_k6Jlf_2m_aJUjy zD57@Fpubw~ewOz!F9m*z^0VmC$g#-WopQHm@$kz9;j>NX*=2=hO2k9Akr!QMR2 zzW;aMJ{Bc_81_Q$1G@BFMVFp3RD?dt1w&XLJ^%g%_`c5sIacE(2zJ;_HvmIcE&Ew2 zd9SdGwRcwlyOT3v%?WG&Vd(RyEb_sRtuPqO^n6m5OUiXj6yNo*-!wMZsV7N$&c4a8 zR{fo?7 zpeWv%xp@Kz+L7dOMJqwWe*cG{hmJmRx20_sDGQVj+L9|RQ!7Ro5QRr6kD&~td!OTT1=QZ_> z?CicX{U7;yRdh#Gc;uzclkD<%o|le6cn!5{9uIgal@rzne~T|3@XZvU{<>N*6=ex1 z%9|zdU0ipK@2BXg8_y-`sn_9XbOxfgl!F#p{Wd8wk@EK5pW8kS{@FzX)#Kue(MisS z5^X7cvj|szJDj%xMFG@^LWbDplV-4$nv!E*-j*D0FR(TH?^Niebs4fh4 zbAPfY_Zik16a-UxDun2r7y&H0!+8R1ECI~|9A}`!4bG~}T)F4&`c2Xja)Y$H%B<-w>g}ns8@KjI zpD5x_O!Gm_;2jR7cLY2ExNfF1NqDBccgPXR1=SCnOPJD>(4sZc=iQsJ(90QoC{tgC zuf{?~7)bnoRs@B*8XEfEB_*RRyCS8f#)V~7j1?X@nee7FeG-@t!C$FEyATsQXPNf% z_q*Z2WMQrzo!ayISqt>K1Q!EkUHV^HnOhwlR>C!peeG&u1|;qgglOkqe+_C9cq^=x zz8#>)*uBVT8OB1NBEXB4??hULQ%>C2>1ftkZ?6(9^k%4%;}T|Uxo-Rv6IDV?oJbn4 z^Rbq+kefYV(_h{8JXaMCGIc(|^L)|Vkj5G^!Lx=%>^cofCrV4yHF5FqUGI@Pio|I~ zz|0Ar@I^nyTzv1qXm^!r9pzoZ440BF9P-AuwRk`XpaXKg_O>=vO2+L_l23O!_D}(X z;rl^AN^6*O(q~(5g?)rk{mL_4JVl8WppfyATVs!BXFydYkwjFd3OezfQ`d!oLy?lmbGS^oU9Hs#4ly8K!hk;F=o4D&Z?g9zcI$~{7^B~OiOw@@Bg1_3N zfN^=no$Sbs0tK@l;N0m$m><@c zBtK+^sox+q0+6MK=A8JjFr}=R2^S^pE|p;*n+tP3iy;r(CmQ_nDKOlo(E@<9=#U{QB6<6rzT>4CJQ<>^-S3!feHlm37~pwI zuj=Er7FrMSh4D`?M9R4#VsYep&DkSu=iNrdLTG1NBx+A%u$8faOV@Pk8e0#<1 zzUureo}up18R0riawqB>=xFvZVC;&Y#d0BHhJ+C?BV~c?pU=dt*pkV|1(G3d3E@~K Zx3e!BdG_952QY^)V*_(ksou@-{{yutlP>@O From ceffacb58ef7d4e24ecc8e46ce400db34242a25d Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Sun, 1 Dec 2024 11:27:47 +0100 Subject: [PATCH 07/60] =?UTF-8?q?=D0=9F=D1=80=D0=B8=D0=B2=D1=8F=D0=B7?= =?UTF-8?q?=D0=BA=D0=B0=20=D0=BA=20=D0=B2=D0=B0=D0=B9=D1=82=D0=BB=D0=B8?= =?UTF-8?q?=D1=81=D1=82=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Названия отображаются корректно, вайтлист работает, но имеется баг, что если персонаж имел пси до снятия вайтлиста, он останется с ним --- code/__defines/mobs.dm | 1 + code/__defines/psi.dm | 10 +-- code/game/jobs/job/job.dm | 2 +- .../preference_setup/psionics/01_basic.dm | 15 ++-- .../preference_setup/psionics/02_abilities.dm | 79 ++++++++++--------- .../code/xeno_whitelist/xeno_whitelist.dm | 2 +- mods/psionics/code/equipment/psipower_gun.dm | 2 +- mods/psionics/code/faculties/energistics.dm | 2 +- mods/psionics/code/faculties/manifestation.dm | 2 +- mods/psionics/code/faculties/metakinesis.dm | 2 +- mods/psionics/code/faculties/psychokinesis.dm | 30 +++---- mods/psionics/code/faculties/redaction.dm | 5 +- mods/psionics/code/mob/mob_interactions.dm | 38 ++++----- 13 files changed, 99 insertions(+), 91 deletions(-) diff --git a/code/__defines/mobs.dm b/code/__defines/mobs.dm index 46e417f7f1cf1..3c97f213b16a8 100644 --- a/code/__defines/mobs.dm +++ b/code/__defines/mobs.dm @@ -366,6 +366,7 @@ #define SPECIES_STOK "Stok" #define SPECIES_FBP "Full Body Prosthesis" //SIERRA-ADD XENO WHITELIST +#define SPECIES_PSI "Psionics" //SIERRA-ADD PSI WHITELIST #define UNRESTRICTED_SPECIES list(SPECIES_HUMAN, SPECIES_DIONA, SPECIES_IPC, SPECIES_UNATHI, SPECIES_YEOSA, SPECIES_SKRELL, SPECIES_TRITONIAN, SPECIES_SPACER, SPECIES_VATGROWN, SPECIES_GRAVWORLDER, SPECIES_MULE) #define RESTRICTED_SPECIES list(SPECIES_VOX, SPECIES_ALIEN, SPECIES_GOLEM) diff --git a/code/__defines/psi.dm b/code/__defines/psi.dm index eb1eef94f98bb..a39e6955a8bce 100644 --- a/code/__defines/psi.dm +++ b/code/__defines/psi.dm @@ -13,11 +13,11 @@ #define PSI_COERCION "coercion" #define PSI_CONSCIOUSNESS "consciousness" -#define PSI_PSYCHOKINESIS "teleplexy" -#define PSI_MANIFESTATION "demiurgy" -#define PSI_METAKINESIS "metaplexy" -#define PSI_ENERGISTICS "hyloforia" -#define PSI_REDACTION "ephanoferia" +#define PSI_PSYCHOKINESIS "psychokinesis" +#define PSI_MANIFESTATION "manifestation" +#define PSI_METAKINESIS "metakinesis" +#define PSI_ENERGISTICS "energistics" +#define PSI_REDACTION "redaction" #define PSI_RANK_BLUNT 0 #define PSI_RANK_LATENT 1 diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index 3877d8ba6636d..96d02dbe36c6d 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -90,7 +90,7 @@ return LAZYINITLIST(psi_faculties) - for(var/faculty_name in psi_abilities_by_name) + for(var/faculty_name in list("Coercion", "Consciousness", "Energistics", "Manifestation", "Metakinesis", "Psychokinesis", "Redaction")) var/singleton/psionic_faculty/faculty = SSpsi.faculties_by_name[faculty_name] var/faculty_id = faculty.id psi_faculties |= list("[faculty_id]" = psi_abilities_by_name[faculty_name] - 1) diff --git a/code/modules/client/preference_setup/psionics/01_basic.dm b/code/modules/client/preference_setup/psionics/01_basic.dm index 5b122bdf49741..a01e6a672e9f6 100644 --- a/code/modules/client/preference_setup/psionics/01_basic.dm +++ b/code/modules/client/preference_setup/psionics/01_basic.dm @@ -24,13 +24,16 @@ GLOBAL_LIST_INIT(text2psi_status, list("C" = 1, "B" = 2, "A" = 3, "S" = 4)) pref.psi_threat_level = clamp(pref.psi_threat_level, 0, 4) pref.psi_status = clamp(pref.psi_status , 1, 4) -/datum/category_item/player_setup_item/psionics/basic/content() +/datum/category_item/player_setup_item/psionics/basic/content(mob/user) . = list() - . += "Threat level:
[pref.psi_threat_level]
" - - if(pref.psi_threat_level) - . += "Psionic status: [GLOB.psi_status2text[pref.psi_status]]
" - . += "Openness: [pref.psi_openness ? "Yes" : "No"]
" + if(!whitelist_lookup(SPECIES_PSI, user.ckey)) + . += "You are not permitted to be Psionic
" + else + . += "Threat level: [pref.psi_threat_level]
" + + if(pref.psi_threat_level) + . += "Psionic status: [GLOB.psi_status2text[pref.psi_status]]
" + . += "Openness: [pref.psi_openness ? "Yes" : "No"]
" . = jointext(.,null) diff --git a/code/modules/client/preference_setup/psionics/02_abilities.dm b/code/modules/client/preference_setup/psionics/02_abilities.dm index 48357900f7358..d09f1b0102652 100644 --- a/code/modules/client/preference_setup/psionics/02_abilities.dm +++ b/code/modules/client/preference_setup/psionics/02_abilities.dm @@ -8,13 +8,13 @@ GLOBAL_LIST_INIT(psi_level2cost, list( )) GLOBAL_LIST_INIT(psi_faculty2color, list( - "Coercion" = COLOR_RED, - "Consciousness" = COLOR_SURGERY_BLUE, - "Hyloforia" = COLOR_MEDICAL_UNKNOWN_IMPLANT, - "Demiurgy" = COLOR_LIGHT_CYAN, - "Metaplexy" = COLOR_SEDONA, - "Teleplexy" = COLOR_LIGHT_CYAN, - "Ephanoferia" = MANIFEST_COLOR_SERVICE + "Coercion" = COLOR_RED, + "Consciousness" = COLOR_SURGERY_BLUE, + "Energistics" = COLOR_MEDICAL_UNKNOWN_IMPLANT, + "Manifestation" = COLOR_LIGHT_CYAN, + "Metakinesis" = COLOR_SEDONA, + "Psychokinesis" = COLOR_LIGHT_CYAN, + "Redaction" = MANIFEST_COLOR_SERVICE )) GLOBAL_LIST_INIT(psi_threat_level2free_points, list(3, 4, 9, 16)) @@ -83,50 +83,53 @@ GLOBAL_LIST_INIT(psi_threat_level2free_points, list(3, 4, 9, 16)) return (pref.calculate_free_points() + GLOB.psi_level2cost[GLOB.psi_level2cost[pref.psi_abilities[faculty]]]) >= GLOB.psi_level2cost[GLOB.psi_level2cost[level]] -/datum/category_item/player_setup_item/psionics/abilities/content() - if(!pref.psi_threat_level) - return ..() +/datum/category_item/player_setup_item/psionics/abilities/content(mob/user) + . = list() + if(!whitelist_lookup(SPECIES_PSI, user.ckey)) + . += "You need to be whitelisted, to do psionics
" + else - if(!pref.psi_abilities) - sanitize_character() + if(!pref.psi_threat_level || !whitelist_lookup(SPECIES_PSI, user.ckey)) + return ..() - . = list() + if(!pref.psi_abilities) + sanitize_character() - . += "" + . += "" - . += "
" + . += "
" - . += FONT_LARGE("Points remaining: [pref.calculate_free_points()]") + . += FONT_LARGE("Points remaining: [pref.calculate_free_points()]") - . += "" + . += "
" - for(var/faculty in pref.psi_abilities) - . += "" - . += "" + for(var/faculty in list("Coercion", "Consciousness", "Energistics", "Manifestation", "Metakinesis", "Psychokinesis", "Redaction")) + . += "" + . += "" - for(var/level_index in 1 to LAZYLEN(GLOB.psi_level2cost)) - var/level_name = GLOB.psi_level2cost[level_index] + for(var/level_index in 1 to LAZYLEN(GLOB.psi_level2cost)) + var/level_name = GLOB.psi_level2cost[level_index] - if(pref.psi_abilities[faculty] == level_index) - . += "" - else if(can_select_level(faculty, level_index)) - . += "" - else - . += "" + if(pref.psi_abilities[faculty] == level_index) + . += "" + else if(can_select_level(faculty, level_index)) + . += "" + else + . += "" - . += "" + . += "" - . += "
[faculty]:
[faculty]:
[level_name]
[level_name]
[level_name]
[level_name]
" + . += "" - . += "
" + . += "
" . = jointext(., null) diff --git a/mods/ex666_ecosystem/code/xeno_whitelist/xeno_whitelist.dm b/mods/ex666_ecosystem/code/xeno_whitelist/xeno_whitelist.dm index 920496eabaa96..c6002d56f9668 100644 --- a/mods/ex666_ecosystem/code/xeno_whitelist/xeno_whitelist.dm +++ b/mods/ex666_ecosystem/code/xeno_whitelist/xeno_whitelist.dm @@ -8,7 +8,7 @@ var/global/list/admin_verbs_xeno = list( if(holder) if(holder.rights & R_XENO) verbs += admin_verbs_xeno -#define HOLDER_LIST list(SPECIES_FBP) +#define HOLDER_LIST list(SPECIES_FBP, SPECIES_PSI) /datum/admins/proc/xeno_whitelist_panel() set name = "Xenos Whitelist Panel" diff --git a/mods/psionics/code/equipment/psipower_gun.dm b/mods/psionics/code/equipment/psipower_gun.dm index 288b7fda78d24..02a1739e13471 100644 --- a/mods/psionics/code/equipment/psipower_gun.dm +++ b/mods/psionics/code/equipment/psipower_gun.dm @@ -64,7 +64,7 @@ /obj/item/gun/energy/psigun name = "psychokinetic gun" - desc = "Result of Demiurgy and Hyloforia combinated factors." + desc = "Result of Manifestation and Energistics combinated factors." icon = 'icons/obj/psychic_powers.dmi' icon_state = "gun" fire_sound = 'sound/weapons/Taser.ogg' diff --git a/mods/psionics/code/faculties/energistics.dm b/mods/psionics/code/faculties/energistics.dm index 39ac387acc60a..c1c960959b103 100644 --- a/mods/psionics/code/faculties/energistics.dm +++ b/mods/psionics/code/faculties/energistics.dm @@ -1,6 +1,6 @@ /singleton/psionic_faculty/energistics id = PSI_ENERGISTICS - name = "Hyloforia" + name = "Energistics" associated_intent = I_HURT armour_types = list("energy", "melee") diff --git a/mods/psionics/code/faculties/manifestation.dm b/mods/psionics/code/faculties/manifestation.dm index e4ff526df6636..5563074d1a6b3 100644 --- a/mods/psionics/code/faculties/manifestation.dm +++ b/mods/psionics/code/faculties/manifestation.dm @@ -1,6 +1,6 @@ /singleton/psionic_faculty/manifestation id = PSI_MANIFESTATION - name = "Demiurgy" + name = "Manifestation" associated_intent = I_GRAB armour_types = list("bullet", "melee") diff --git a/mods/psionics/code/faculties/metakinesis.dm b/mods/psionics/code/faculties/metakinesis.dm index 8b3d9e447e6b0..4ac94f6846b4f 100644 --- a/mods/psionics/code/faculties/metakinesis.dm +++ b/mods/psionics/code/faculties/metakinesis.dm @@ -1,6 +1,6 @@ /singleton/psionic_faculty/metakinesis id = PSI_METAKINESIS - name = "Metaplexy" + name = "Metakinesis" associated_intent = I_GRAB armour_types = list("laser", "melee") diff --git a/mods/psionics/code/faculties/psychokinesis.dm b/mods/psionics/code/faculties/psychokinesis.dm index ae8d393c31389..3f239a2384c63 100644 --- a/mods/psionics/code/faculties/psychokinesis.dm +++ b/mods/psionics/code/faculties/psychokinesis.dm @@ -1,6 +1,6 @@ /singleton/psionic_faculty/psychokinesis id = PSI_PSYCHOKINESIS - name = "Teleplexy" + name = "Psychokinesis" associated_intent = I_GRAB armour_types = list("melee", "bullet") @@ -16,7 +16,7 @@ use_ranged = TRUE use_manifest = FALSE min_rank = PSI_RANK_APPRENTICE - use_description = "Нажмите по отдалённом объекту или существу на жёлтом интенте с выбранной головой или телом, чтобы захватить его телекинезом." + use_description = "Нажмите по отдалённом объекту или существу на жёлтом интенте с выбранным телом, чтобы захватить его телекинезом." admin_log = FALSE use_sound = 'sound/effects/psi/power_used.ogg' var/global/list/valid_machine_types = list( @@ -64,7 +64,7 @@ use_ranged = TRUE use_melee = TRUE min_rank = PSI_RANK_OPERANT - use_description = "Выберите руки или кисти на жёлтом интенте, а затем нажмите куда угодно, чтобы разбросать всё вокруг себя мощной волной." + use_description = "Выберите руки или кисти на жёлтом интенте, а затем нажмите куда угодно, чтобы разбросать людей от себя мощной волной." /singleton/psionic_power/psychokinesis/gravigeddon/invoke(mob/living/user, mob/living/target) if(!(user.zone_sel.selecting in list(BP_L_ARM, BP_R_ARM, BP_L_HAND, BP_R_HAND))) @@ -283,7 +283,7 @@ /singleton/psionic_power/psychokinesis/tele_punch name = "Telekinetic Punch" - cost = 20 + cost = 40 cooldown = 50 use_ranged = TRUE use_melee = TRUE @@ -345,11 +345,11 @@ target.visible_message(SPAN_DANGER("[target] ловит лицом кулак, улетая назад!")) if(!user.skill_check(SKILL_HAULING, SKILL_EXPERIENCED)) - user.apply_damage(rand(15,30),DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) + user.apply_damage(rand(5,10),DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и кожа на вашей руке стирается в кровь!")) for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) - target.apply_damage(rand(15,30),DAMAGE_BRUTE,def_zone=zone) + target.apply_damage(rand(5,10),DAMAGE_BRUTE,def_zone=zone) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 1, 2, user) return TRUE @@ -358,7 +358,7 @@ to_chat(target, SPAN_NOTICE("Ваше силовое поле успешно сдержало удар, пускай на это и ушло приличное количество концентрации.")) target.psi.spend_power(10) for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) - user.apply_damage(rand(15,30),DAMAGE_BRUTE,def_zone=zone) + user.apply_damage(rand(5,10),DAMAGE_BRUTE,def_zone=zone) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") user.throw_at(get_edge_target_turf(user, get_dir(target, user)), 1, 2, target) user.visible_message(SPAN_DANGER("Мощное силовое поле [target] отбрасывает [user] назад, создавая мощную обратную волну!")) @@ -368,13 +368,13 @@ if(!user.skill_check(SKILL_HAULING, SKILL_EXPERIENCED)) - user.apply_damage(rand(15,30),DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) + user.apply_damage(rand(5,10),DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и кожа на вашей руке стирается в кровь!")) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") target.visible_message(SPAN_DANGER("[target] ловит лицом кулак, улетая назад!")) for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) - target.apply_damage(rand(15,30),DAMAGE_BRUTE,def_zone=zone) + target.apply_damage(rand(5,10),DAMAGE_BRUTE,def_zone=zone) target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 1, 2, user) @@ -410,7 +410,7 @@ to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и вашу руку выворачивает наизнанку!")) for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) - target.apply_damage(rand(25,40),DAMAGE_BRUTE,def_zone=zone) + target.apply_damage(rand(10,15),DAMAGE_BRUTE,def_zone=zone) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 3, 2, user) @@ -420,7 +420,7 @@ to_chat(target, SPAN_NOTICE("Ваше силовое поле успешно сдержало удар, пускай на это и ушло приличное количество концентрации.")) target.psi.spend_power(10) for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) - user.apply_damage(rand(25,40),DAMAGE_BRUTE,def_zone=zone) + user.apply_damage(rand(10,15),DAMAGE_BRUTE,def_zone=zone) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") user.throw_at(get_edge_target_turf(user, get_dir(target, user)), 3, 2, target) @@ -431,7 +431,7 @@ if(!user.skill_check(SKILL_HAULING, SKILL_EXPERIENCED)) - user.apply_damage(rand(30,40),DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) + user.apply_damage(rand(10,15),DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и вашу руку выворачивает наизнанку!")) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") @@ -485,7 +485,7 @@ to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и вашу руку выворачивает наизнанку!")) for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) - target.apply_damage(rand(40,60),DAMAGE_BRUTE,def_zone=zone) + target.apply_damage(rand(20,60),DAMAGE_BRUTE,def_zone=zone) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 6, 2, user) @@ -495,7 +495,7 @@ to_chat(target, SPAN_NOTICE("Ваше силовое поле успешно сдержало удар, пускай на это и ушло приличное количество концентрации.")) target.psi.spend_power(10) for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) - user.apply_damage(rand(40,60),DAMAGE_BRUTE,def_zone=zone) + user.apply_damage(rand(20,60),DAMAGE_BRUTE,def_zone=zone) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") user.throw_at(get_edge_target_turf(user, get_dir(target, user)), 6, 2, target) @@ -513,7 +513,7 @@ new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") target.visible_message(SPAN_DANGER("[target] ловит лицом кулак, улетая назад!")) for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) - target.apply_damage(rand(40,60),DAMAGE_BRUTE,def_zone=zone) + target.apply_damage(rand(20,60),DAMAGE_BRUTE,def_zone=zone) target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 6, 2, user) diff --git a/mods/psionics/code/faculties/redaction.dm b/mods/psionics/code/faculties/redaction.dm index bbbb27d3a6892..70ad13acb902e 100644 --- a/mods/psionics/code/faculties/redaction.dm +++ b/mods/psionics/code/faculties/redaction.dm @@ -1,6 +1,6 @@ /singleton/psionic_faculty/redaction id = PSI_REDACTION - name = "Ephanoferia" + name = "Redaction" associated_intent = I_HELP armour_types = list("bio", "rad") @@ -69,7 +69,7 @@ new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "redaction_healing") if(user.skill_check(SKILL_ANATOMY, SKILL_TRAINED) && user.skill_check(SKILL_MEDICAL, SKILL_TRAINED)) - to_chat(user, SPAN_NOTICE("Помимо прочего, благодаря имеющимся навыкам, вам удалогсь залечить некоторые из менее заметных ран [target], значительно ускорив его реабилитацию.")) + to_chat(user, SPAN_NOTICE("Благодаря имеющимся навыкам, вам удалось залечить некоторые из менее заметных ран [target], значительно ускорив его реабилитацию.")) target.adjustBruteLoss(-rand(20,40)) target.adjustFireLoss(-rand(20,40)) @@ -208,6 +208,7 @@ var/limb = pick(BP_L_LEG,BP_R_LEG, BP_L_HAND, BP_R_HAND) to_chat(user, SPAN_WARNING("Ваша некомпетентность привела к тому, что во время восстановления [new_limb.name] вы нанесли критический урон вашей конечности!")) user.apply_damage(80,DAMAGE_BRUTE,limb) + // limb.mutate() -- придумать user.adjustBruteLoss(rand(30,40)) user.psi.spend_power(30) diff --git a/mods/psionics/code/mob/mob_interactions.dm b/mods/psionics/code/mob/mob_interactions.dm index f9dc19775018c..786a1e2c84af3 100644 --- a/mods/psionics/code/mob/mob_interactions.dm +++ b/mods/psionics/code/mob/mob_interactions.dm @@ -20,35 +20,35 @@ if(. && psi) INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_intent[a_intent]), A, FALSE) if(a_intent == I_HURT) - INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Hyloforia"]), A, FALSE) - INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Teleplexy"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Energistics"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Psychokinesis"]), A, FALSE) if(a_intent == I_GRAB) - INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Teleplexy"]), A, FALSE) - INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Metaplexy"]), A, FALSE) - INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Demiurgy"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Psychokinesis"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Metakinesis"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Manifestation"]), A, FALSE) if(a_intent == I_DISARM) INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Coercion"]), A, FALSE) INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Consciousness"]), A, FALSE) if(a_intent == I_HELP) - INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Ephanoferia"]), A, FALSE) - INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Hyloforia"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Redaction"]), A, FALSE) + INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Energistics"]), A, FALSE) INVOKE_PSI_POWERS(src, psi.get_melee_powers(SSpsi.faculties_by_name_new["Consciousness"]), A, FALSE) /mob/living/RangedAttack(atom/A, params) if(psi) INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_intent[a_intent]), A, TRUE) if(a_intent == I_HURT) - INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Hyloforia"]), A, TRUE) - INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Teleplexy"]), A, TRUE) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Energistics"]), A, TRUE) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Psychokinesis"]), A, TRUE) if(a_intent == I_GRAB) - INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Teleplexy"]), A, TRUE) - INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Metaplexy"]), A, TRUE) - INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Demiurgy"]), A, TRUE) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Psychokinesis"]), A, TRUE) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Metakinesis"]), A, TRUE) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Manifestation"]), A, TRUE) if(a_intent == I_DISARM) INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Coercion"]), A, TRUE) if(a_intent == I_HELP) - INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Hyloforia"]), A, TRUE) - INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Ephanoferia"]), A, TRUE) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Energistics"]), A, TRUE) + INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Redaction"]), A, TRUE) INVOKE_PSI_POWERS(src, psi.get_ranged_powers(SSpsi.faculties_by_name_new["Consciousness"]), A, TRUE) . = ..() @@ -56,15 +56,15 @@ if(psi && ismob(grab.affecting)) INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_intent[a_intent]), grab.affecting, FALSE) if(a_intent == I_HURT) - INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Hyloforia"]), grab.affecting, FALSE) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Energistics"]), grab.affecting, FALSE) if(a_intent == I_GRAB) - INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Teleplexy"]), grab.affecting, FALSE) - INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Metaplexy"]), grab.affecting, FALSE) - INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Demiurgy"]), grab.affecting, FALSE) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Psychokinesis"]), grab.affecting, FALSE) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Metakinesis"]), grab.affecting, FALSE) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Manifestation"]), grab.affecting, FALSE) if(a_intent == I_DISARM) INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Coercion"]), grab.affecting, FALSE) if(a_intent == I_HELP) - INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Ephanoferia"]), grab.affecting, FALSE) + INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Redaction"]), grab.affecting, FALSE) INVOKE_PSI_POWERS(src, psi.get_grab_powers(SSpsi.faculties_by_name_new["Consciousness"]), grab.affecting, FALSE) /mob/living/attack_empty_hand(bp_hand) From fd2db65540d76cea3fbf248305b3fa9218e05b89 Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Sun, 1 Dec 2024 18:12:39 +0100 Subject: [PATCH 08/60] Update psipower_orbs.dm --- mods/psionics/code/equipment/psipower_orbs.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mods/psionics/code/equipment/psipower_orbs.dm b/mods/psionics/code/equipment/psipower_orbs.dm index 6ddcb02f951b2..4990ac8e74bbf 100644 --- a/mods/psionics/code/equipment/psipower_orbs.dm +++ b/mods/psionics/code/equipment/psipower_orbs.dm @@ -397,7 +397,7 @@ /obj/item/psychic_power/psifire/afterattack(atom/A as mob|obj|turf|area, mob/living/user as mob, proximity) //TURFS - if(istype(A, /turf/) && !proximity && combat_mode) + if(istype(A, /turf) && !proximity && combat_mode) if(attack_type == "FIRE WALL") var/turf/target_turf = get_turf(A) if(target_turf) @@ -726,7 +726,7 @@ //TURFS - if(istype(A, /turf/)) + if(istype(A, /turf)) var/turf/target = A if(combat_mode) if(!proximity && cryo_rank >= PSI_RANK_MASTER && structure_attack == "ICE WALL") @@ -749,7 +749,7 @@ else if(!proximity) return - if(istype(A, /turf/simulated/)) + if(istype(A, /turf/simulated)) var/turf/simulated/sim = target cooldown += 2 user.visible_message("[user] покрывает [sim] ледяной коркой!") From 59edf6f6906c07c20f9bc8350aba3caac0526072 Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Sun, 1 Dec 2024 18:18:09 +0100 Subject: [PATCH 09/60] Update energistics.dm --- mods/psionics/code/faculties/energistics.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/psionics/code/faculties/energistics.dm b/mods/psionics/code/faculties/energistics.dm index c1c960959b103..8bf85e59333b0 100644 --- a/mods/psionics/code/faculties/energistics.dm +++ b/mods/psionics/code/faculties/energistics.dm @@ -323,7 +323,7 @@ user.fragmentate(O, 20, 5, list(/obj/item/projectile/psi = 1)) return TRUE -/mob/proc/fragmentate(turf/T=get_turf(src), fragment_number = 30, spreading_range = 5, list/fragtypes=list(/obj/item/projectile/)) +/mob/proc/fragmentate(turf/T=get_turf(src), fragment_number = 30, spreading_range = 5, list/fragtypes=list(/obj/item/projectile)) set waitfor = 0 var/list/target_turfs = getcircle(T, spreading_range) for(var/turf/O in target_turfs) From 6f6aa4d20001a1e81e5c630ad4690116f4b847e3 Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Thu, 5 Dec 2024 10:00:27 +0100 Subject: [PATCH 10/60] =?UTF-8?q?.len=20=D0=BD=D0=B0=20LISTRESIZE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Шарики проваливали рантесты из-за этого --- mods/psionics/code/equipment/psipower_orbs.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/psionics/code/equipment/psipower_orbs.dm b/mods/psionics/code/equipment/psipower_orbs.dm index 4990ac8e74bbf..bf96b72284629 100644 --- a/mods/psionics/code/equipment/psipower_orbs.dm +++ b/mods/psionics/code/equipment/psipower_orbs.dm @@ -466,7 +466,7 @@ var/length = LAZYLEN(turflist) if(length < 1) return - turflist.len = min(length, range) + LIST_RESIZE(turflist, min(length, range)) playsound(src, pick('sound/weapons/guns/flamethrower1.ogg','sound/weapons/guns/flamethrower2.ogg','sound/weapons/guns/flamethrower3.ogg' ), 50, TRUE, -3) @@ -810,7 +810,7 @@ var/length = LAZYLEN(turflist) if(length < 1) return - turflist.len = min(length, range) + LIST_RESIZE(turflist, min(length, range)) playsound(src, pick('sound/weapons/guns/flamethrower1.ogg','sound/weapons/guns/flamethrower2.ogg','sound/weapons/guns/flamethrower3.ogg' ), 50, TRUE, -3) From 2c403a4f283a2016d67134787cab96032ccc7a61 Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Tue, 10 Dec 2024 16:26:17 +0100 Subject: [PATCH 11/60] =?UTF-8?q?=D0=9F=D1=81=D0=BE=D0=BD=D0=B8=D0=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Examine check +1, нерфы, правки --- code/game/jobs/job/job.dm | 2 +- .../preference_setup/preference_setup.dm | 10 ++-- .../preference_setup/psionics/01_basic.dm | 22 ++------ .../preference_setup/psionics/02_abilities.dm | 14 +++-- maps/sierra/job/jobs_medical.dm | 2 +- mods/psionics/code/equipment/psimonitor.dm | 2 +- mods/psionics/code/faculties/coercion.dm | 32 +++++------ mods/psionics/code/faculties/consciousness.dm | 6 +-- mods/psionics/code/faculties/energistics.dm | 20 +++---- mods/psionics/code/faculties/redaction.dm | 51 +++++++++--------- mods/psionics/code/misc/decoyobj.dm | 2 +- mods/psionics/code/mob/mob_assay.dm | 8 +-- mods/psionics/icons/psi.dmi | Bin 29034 -> 29035 bytes test/check-paths.sh | 2 +- 14 files changed, 77 insertions(+), 96 deletions(-) diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index 96d02dbe36c6d..f1f2bc912958a 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -101,7 +101,7 @@ H.psi.update() - give_psionic_implant_on_join ||= (H.client.prefs.psi_openness && H.client.prefs.psi_status < 4) + give_psionic_implant_on_join ||= (H.client.prefs.psi_threat_level > 0) if(!give_psionic_implant_on_join) return diff --git a/code/modules/client/preference_setup/preference_setup.dm b/code/modules/client/preference_setup/preference_setup.dm index 1803a2b7cf894..d6b4b2a1c1196 100644 --- a/code/modules/client/preference_setup/preference_setup.dm +++ b/code/modules/client/preference_setup/preference_setup.dm @@ -30,11 +30,6 @@ var/global/const/CHARACTER_PREFERENCE_INPUT_TITLE = "Character Preference" sort_order = 4 category_item_type = /datum/category_item/player_setup_item/antagonism -/datum/category_group/player_setup_category/psionics_preferences - name = "Psionics" - sort_order = 5 - category_item_type = /datum/category_item/player_setup_item/psionics - /datum/category_group/player_setup_category/loadout_preferences name = "Loadout" sort_order = 6 @@ -50,6 +45,11 @@ var/global/const/CHARACTER_PREFERENCE_INPUT_TITLE = "Character Preference" sort_order = 8 category_item_type = /datum/category_item/player_setup_item/law_pref +/datum/category_group/player_setup_category/psionics_preferences + name = "Psionics" + sort_order = 9 + category_item_type = /datum/category_item/player_setup_item/psionics + /**************************** * Category Collection Setup * diff --git a/code/modules/client/preference_setup/psionics/01_basic.dm b/code/modules/client/preference_setup/psionics/01_basic.dm index a01e6a672e9f6..3adb9cbbede67 100644 --- a/code/modules/client/preference_setup/psionics/01_basic.dm +++ b/code/modules/client/preference_setup/psionics/01_basic.dm @@ -1,10 +1,6 @@ -GLOBAL_LIST_INIT(psi_status2text, list("C", "B", "A", "S")) -GLOBAL_LIST_INIT(text2psi_status, list("C" = 1, "B" = 2, "A" = 3, "S" = 4)) - /datum/preferences var/psi_threat_level = 0 - var/psi_status = 4 - var/psi_openness = FALSE + var/psi_openness = TRUE /datum/category_item/player_setup_item/psionics/basic name = "Basic" @@ -12,28 +8,24 @@ GLOBAL_LIST_INIT(text2psi_status, list("C" = 1, "B" = 2, "A" = 3, "S" = 4)) /datum/category_item/player_setup_item/psionics/basic/load_character(datum/pref_record_reader/R) pref.psi_threat_level = R.read("psi_threat_level") - pref.psi_status = R.read("psi_status") pref.psi_openness = R.read("psi_openness") /datum/category_item/player_setup_item/psionics/basic/save_character(datum/pref_record_writer/W) W.write("psi_threat_level", pref.psi_threat_level) - W.write("psi_status", pref.psi_status) W.write("psi_openness", pref.psi_openness) /datum/category_item/player_setup_item/psionics/basic/sanitize_character() pref.psi_threat_level = clamp(pref.psi_threat_level, 0, 4) - pref.psi_status = clamp(pref.psi_status , 1, 4) /datum/category_item/player_setup_item/psionics/basic/content(mob/user) . = list() if(!whitelist_lookup(SPECIES_PSI, user.ckey)) . += "You are not permitted to be Psionic
" else - . += "Threat level: [pref.psi_threat_level]
" + . += "Power: [pref.psi_threat_level]
" if(pref.psi_threat_level) - . += "Psionic status: [GLOB.psi_status2text[pref.psi_status]]
" - . += "Openness: [pref.psi_openness ? "Yes" : "No"]
" + . += "Implant: [pref.psi_openness ? "Yes" : "No"]
" . = jointext(.,null) @@ -44,14 +36,6 @@ GLOBAL_LIST_INIT(text2psi_status, list("C" = 1, "B" = 2, "A" = 3, "S" = 4)) pref.sanitize_psi_abilities() return TOPIC_REFRESH - else if(href_list["select_psi_status"]) - var/selection = input("Select psionics status", CHARACTER_PREFERENCE_INPUT_TITLE, GLOB.psi_status2text[pref.psi_status]) in GLOB.text2psi_status - if(!(selection in GLOB.text2psi_status)) - return TOPIC_HANDLED - - pref.psi_status = GLOB.text2psi_status[selection] - return TOPIC_REFRESH - else if(href_list["toggle_psi_openness"]) pref.psi_openness = !pref.psi_openness return TOPIC_REFRESH diff --git a/code/modules/client/preference_setup/psionics/02_abilities.dm b/code/modules/client/preference_setup/psionics/02_abilities.dm index d09f1b0102652..acb7226bf4f72 100644 --- a/code/modules/client/preference_setup/psionics/02_abilities.dm +++ b/code/modules/client/preference_setup/psionics/02_abilities.dm @@ -1,10 +1,8 @@ GLOBAL_LIST_INIT(psi_level2cost, list( "Blunt" = 0, - "Latent" = 1, - "Apprentice" = 4, - "Operant" = 8, - "Master" = 16, - "Grandmaster" = 21 + "Latent" = 2, + "Apprentice" = 6, + "Operant" = 16 )) GLOBAL_LIST_INIT(psi_faculty2color, list( @@ -13,11 +11,11 @@ GLOBAL_LIST_INIT(psi_faculty2color, list( "Energistics" = COLOR_MEDICAL_UNKNOWN_IMPLANT, "Manifestation" = COLOR_LIGHT_CYAN, "Metakinesis" = COLOR_SEDONA, - "Psychokinesis" = COLOR_LIGHT_CYAN, + "Psychokinesis" = COLOR_YELLOW, "Redaction" = MANIFEST_COLOR_SERVICE )) -GLOBAL_LIST_INIT(psi_threat_level2free_points, list(3, 4, 9, 16)) +GLOBAL_LIST_INIT(psi_threat_level2free_points, list(6, 8, 12, 16)) /datum/preferences var/list/psi_abilities @@ -86,7 +84,7 @@ GLOBAL_LIST_INIT(psi_threat_level2free_points, list(3, 4, 9, 16)) /datum/category_item/player_setup_item/psionics/abilities/content(mob/user) . = list() if(!whitelist_lookup(SPECIES_PSI, user.ckey)) - . += "You need to be whitelisted, to do psionics
" + . += "
" else if(!pref.psi_threat_level || !whitelist_lookup(SPECIES_PSI, user.ckey)) diff --git a/maps/sierra/job/jobs_medical.dm b/maps/sierra/job/jobs_medical.dm index a5738a57d80e1..0ff6c57d61482 100644 --- a/maps/sierra/job/jobs_medical.dm +++ b/maps/sierra/job/jobs_medical.dm @@ -242,7 +242,7 @@ if(H.mind.role_alt_title == "Counselor") psi_faculties = list("[PSI_REDACTION]" = PSI_RANK_OPERANT) if(H.mind.role_alt_title == "Mentalist") - psi_faculties = list("[PSI_COERCION]" = PSI_RANK_OPERANT) + psi_faculties = list("[PSI_CONSCIOUSNESS]" = PSI_RANK_OPERANT) return ..() /datum/job/psychiatrist/get_description_blurb() diff --git a/mods/psionics/code/equipment/psimonitor.dm b/mods/psionics/code/equipment/psimonitor.dm index a8ba54e7c8059..60db32805fac2 100644 --- a/mods/psionics/code/equipment/psimonitor.dm +++ b/mods/psionics/code/equipment/psimonitor.dm @@ -119,4 +119,4 @@ psi_violations += SPAN_COLOR("#ff0000", "Critical system failure - [implant.imp_in.name].") /obj/machinery/psi_monitor/proc/report_violation(obj/item/implant/psi_control/implant, stress) - psi_violations += "Sigma [round(stress/10)] event - [implant.imp_in.name]." + psi_violations += "Stress [round(stress/10)] event - [implant.imp_in.name]." diff --git a/mods/psionics/code/faculties/coercion.dm b/mods/psionics/code/faculties/coercion.dm index 863f1b82c1b42..cd48a929ac4f6 100644 --- a/mods/psionics/code/faculties/coercion.dm +++ b/mods/psionics/code/faculties/coercion.dm @@ -88,8 +88,8 @@ return 0 switch(chosen_option) if("Joy") - var/funny_option = pick("вспоминаете крайне смешную шутку", "вспоминаете очень глупую историю", "всматриваетесь в лицо [user]") - to_chat(target, SPAN_WARNING("Внезапно, вы [funny_option], начиная истошно смеяться и кататься по полу.")) + var/funny_option = pick("смеетесь над несмешной шуткой начальства", "стараетесь не обидеть друга", "насмехаетесь над [user]") + to_chat(target, SPAN_WARNING("Внезапно, вы ощущаете принужденный смех. Как будто вы [funny_option].")) var/mob/living/carbon/C = target C.Weaken(5) C.spin(32,2) @@ -100,8 +100,8 @@ C.emote("giggle") return 1 if("Sadness") - var/sad_option = pick("погружаетесь в ваши детские воспоминания", "вспоминаете о ужасной потере", "на секунду замечаете перед собой знакомый силуэт", "вспоминаете о своих прошлых ошибках") - to_chat(target, SPAN_WARNING("Внезапно, вы [sad_option], не замечая, как по вашим щекам текут слёзы.")) + var/sad_option = pick("то, как умирают солдаты на войне", "мысль о том, что после смерти ничего нет", "то, что вы никчемны", "воспоминание, как вы опозорились") + to_chat(target, SPAN_WARNING("В голове проскакивает [sad_option].")) var/mob/living/carbon/C = target C.eye_blurry = max(C.eye_blurry, 10) C.emote("whimper") @@ -111,7 +111,7 @@ C.emote("whimper") return 1 if("Fear") - to_chat(target, SPAN_OCCULT("Внезапно, ваше тело цепенеет от одного только взгляда в сторону [user]. Вы дрожите, словно ваш мозг испытывает какой-то подсознательный страх.")) + to_chat(target, SPAN_OCCULT("Вы цепенеете, завидев [user]. Холодный пот стекает по вашему лбу.")) var/cn_rank = user.psi.get_rank(PSI_COERCION) var/mob/living/carbon/C = target C.make_dizzy(10) @@ -122,8 +122,8 @@ to_chat(target, SPAN_DANGER("Вы [strange_option].")) return 1 if("Anger") - var/anger_option = pick("к самому себе", "к человеку, что стоит рядом", "к месту, в котором вы находитесь", "к своей жизни", "по отношению к данной ситуации", "к сегодняшнему дню", "к сегодняшней погоде", "к вашей работе", "к тому, что было вчера") - to_chat(target, SPAN_DANGER("Внезапно, вы ощущаете странную злобу [anger_option].")) + var/anger_option = pick("к самому себе", "к человеку, что стоит рядом", "к месту, в котором вы находитесь", "к своей жизни", "по отношению к ситуации", "к сегодняшнему дню", "к погоде", "к вашей работе", "к тому, что было вчера") + to_chat(target, SPAN_DANGER("Внезапно, вы ощущаете злобу [anger_option].")) return 1 if("Stillness") to_chat(target, SPAN_NOTICE("Вы ощущаете странное умиротворение.")) @@ -190,7 +190,7 @@ cooldown = 200 use_grab = TRUE min_rank = PSI_RANK_GRANDMASTER - use_description = "Grab a victim, target the eyes, then use the grab on them while on disarm intent, in order to convert them into a loyal mind-slave. The process takes some time, and failure is punished harshly." + use_description = "Схватите жертву, цельтесь в глаза, нажмите захватом с синим интентом на цель, чтобы обратить цель в раба. Процесс занимает время, а прерывание может оглушить вас." /singleton/psionic_power/coercion/mindslave/invoke(mob/living/user, mob/living/target) if(!istype(target) || user.zone_sel.selecting != BP_EYES) @@ -198,22 +198,22 @@ . = ..() if(.) if(target.stat == DEAD || (target.status_flags & FAKEDEATH)) - to_chat(user, SPAN_WARNING("\The [target] is dead!")) + to_chat(user, SPAN_WARNING("\The [target] мертв!")) return TRUE if(!target.mind || !target.key) - to_chat(user, SPAN_WARNING("\The [target] is mindless!")) + to_chat(user, SPAN_WARNING("\The [target] не обладает разумом!")) return TRUE if(GLOB.thralls.is_antagonist(target.mind)) - to_chat(user, SPAN_WARNING("\The [target] is already in thrall to someone!")) + to_chat(user, SPAN_WARNING("\The [target] уже кому-то принадлежит!")) return TRUE - user.visible_message(SPAN_DANGER("\The [user] seizes the head of \the [target] in both hands...")) - to_chat(user, SPAN_WARNING("You plunge your mentality into that of \the [target]...")) - to_chat(target, SPAN_DANGER("Your mind is invaded by the presence of \the [user]! They are trying to make you a slave!")) + user.visible_message(SPAN_DANGER("\The [user] хватает голову \the [target] руками...")) + to_chat(user, SPAN_WARNING("Ты ввергаешь свою ментальность в \the [target]...")) + to_chat(target, SPAN_DANGER("В твой разум стучится \the [user]! Он пытается поработить тебя!")) if(!do_after(user, (target.stat == CONSCIOUS ? 8 : 4) SECONDS, target, DO_DEFAULT | DO_USER_UNIQUE_ACT)) user.psi.backblast(rand(10,25)) return TRUE - to_chat(user, SPAN_DANGER("You sear through \the [target]'s neurons, reshaping as you see fit and leaving them subservient to your will!")) - to_chat(target, SPAN_DANGER("Your defenses have eroded away and \the [user] has made you their mindslave.")) + to_chat(user, SPAN_DANGER("Ты прорываешься через мозг \the [target], изменяя его под твое желание, оставляя его подчиненным твоей воле!")) + to_chat(target, SPAN_DANGER("Ты ослаб и \the [user] поработил тебя.")) GLOB.thralls.add_antagonist(target.mind, new_controller = user) return TRUE /* diff --git a/mods/psionics/code/faculties/consciousness.dm b/mods/psionics/code/faculties/consciousness.dm index a779b324dd8a7..d304353150f30 100644 --- a/mods/psionics/code/faculties/consciousness.dm +++ b/mods/psionics/code/faculties/consciousness.dm @@ -352,7 +352,7 @@ use_description = "Выберите глаза на зелёном интенте, и затем нажмите по себе или другому человеку(начиная с мастера), чтобы временно сделать его или себя невидимым для остальных." /mob/living/proc/run_timer_invisibility() - var/invis_timer = 30 + var/invis_timer = 10 set waitfor = 0 var/T = invis_timer while(T > 0) @@ -366,10 +366,6 @@ src.alpha = 200 spawn(3 SECONDS) src.alpha = 255 - if(src.psi) - var/con_rank_user = src.psi.get_rank(PSI_CONSCIOUSNESS) - if(con_rank_user == PSI_RANK_GRANDMASTER) - src.RemoveMovementHandler(/datum/movement_handler/mob/incorporeal) /singleton/psionic_power/consciousness/invis/invoke(mob/living/user, mob/living/target) var/con_rank_user = user.psi.get_rank(PSI_CONSCIOUSNESS) diff --git a/mods/psionics/code/faculties/energistics.dm b/mods/psionics/code/faculties/energistics.dm index 8bf85e59333b0..1e4e7d21837a4 100644 --- a/mods/psionics/code/faculties/energistics.dm +++ b/mods/psionics/code/faculties/energistics.dm @@ -92,7 +92,7 @@ cost = 10 cooldown = 60 use_melee = TRUE - min_rank = PSI_RANK_APPRENTICE + min_rank = PSI_RANK_OPERANT use_description = "Выберите глаза на красном интенте и нажмите на любой объект, чтобы создать мощный электромагнитный импульс, направленный в него." /singleton/psionic_power/energistics/disrupt/invoke(mob/living/user, mob/living/target) @@ -120,7 +120,7 @@ if(en_rank <= PSI_RANK_OPERANT) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "blue_electricity_constant") target.visible_message("[user] взмахивает рукой, создавая мощный ЭМИ-импульс!") - empulse(target, rand(3,6) - en_rank, rand(4,7) - en_rank) + empulse(target, rand(2,4) - en_rank, rand(3,6) - en_rank) if(en_rank == PSI_RANK_MASTER) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "blue_electricity_constant") target.visible_message("[user] взмахивает рукой, создавая мощный ЭМИ-импульс!") @@ -128,15 +128,15 @@ return TRUE /singleton/psionic_power/energistics/spit - name = "Bullet Spit" + name = "Ballistic Projectile" cost = 20 cooldown = 45 use_ranged = TRUE use_melee = TRUE min_rank = PSI_RANK_APPRENTICE - use_description = "Выберите голову на красном интенте и нажмите по чему угодно, чтобы запустить частичку вреда." + use_description = "Выберите голову на красном интенте и нажмите по чему угодно, чтобы запустить пулю." - var/psi_shot = "Standart" + var/psi_shot = "Standard" /singleton/psionic_power/energistics/spit/invoke(mob/living/user, mob/living/target) @@ -144,7 +144,7 @@ "Armor Piercing" = image('mods/psionics/icons/psi.dmi', "AP"), "Explosive" = image('mods/psionics/icons/psi.dmi', "EXP"), "Piercing Charges" = image('mods/psionics/icons/psi.dmi', "EXPAP"), - "Standart" = image('mods/psionics/icons/psi.dmi', "DEF") + "Standard" = image('mods/psionics/icons/psi.dmi', "DEF") ) if(user.zone_sel.selecting != BP_HEAD) @@ -167,7 +167,7 @@ if(user.a_intent != I_HURT) return FALSE - if(psi_shot == "Standart") + if(psi_shot == "Standard") user.visible_message("[user] изображает пальцами пистолет, делая выстрел!") if(user_rank < PSI_RANK_MASTER) pew = new /obj/item/projectile/psi(get_turf(user)) @@ -223,7 +223,7 @@ pew_sound = 'sound/weapons/guns/ricochet4.ogg' else to_chat(user, "Огромный ком энергии накапливается внутри тебя, готовясь вырваться наружу, но что-то идёт не так...") - explosion(get_turf(user), 5, 10) + explosion(get_turf(user), 1, 2) if(user_rank >= PSI_RANK_OPERANT) pew = new /obj/item/projectile/psi/strong(get_turf(user)) pew.name = "explosive psionic round" @@ -247,7 +247,7 @@ pew.penetration_modifier = 1.1 pew_sound = 'sound/weapons/guns/ricochet4.ogg' to_chat(user, "Ты пытаешься сконцентрировать всю энергию в одном маленьком сгустке, дабы создать пробивной снаряд, но что-то мешает тебе...") - explosion(get_turf(user), 5, 15) + explosion(get_turf(user), 2, 3) if(user_rank == PSI_RANK_MASTER) if(prob(70)) pew = new /obj/item/projectile/psi/strong_piercing(get_turf(user)) @@ -257,7 +257,7 @@ pew_sound = 'sound/weapons/guns/ricochet4.ogg' else to_chat(user, "Ты пытаешься сконцентрировать всю энергию в одном маленьком сгустке, дабы создать пробивной снаряд, но что-то мешает тебе...") - explosion(get_turf(user), 5, 15) + explosion(get_turf(user), 2, 3) if(user_rank == PSI_RANK_GRANDMASTER) pew = new /obj/item/projectile/psi/strong_piercing(get_turf(user)) pew.name = "piercing psionic round" diff --git a/mods/psionics/code/faculties/redaction.dm b/mods/psionics/code/faculties/redaction.dm index 70ad13acb902e..aacf9a0345ddd 100644 --- a/mods/psionics/code/faculties/redaction.dm +++ b/mods/psionics/code/faculties/redaction.dm @@ -58,24 +58,27 @@ return FALSE . = ..() if(.) - var/option = input(user, "Выберите что-нибудь!", "Какую помощь вы хотите оказать [target]?") in list("Базовая", "Переломы", "Кровотечение", "Конечности", "Органы") + var/option = input(user, "Выберите что-нибудь!", "Какую помощь вы хотите оказать [target]?") in list("Кровотечение", "Переломы", "Травмы", "Конечности", "Органы") user.psi.set_cooldown(cooldown) if (!option) return - if(option == "Базовая") + if(option == "Травмы") + if(red_rank < PSI_RANK_MASTER) + to_chat(user, SPAN_WARNING("Ваших сил недостаточно для проведения этой операции!")) + return 0 if(do_after(user, 20)) user.visible_message(SPAN_NOTICE("[user] кладёт руки на плечи [target]...")) to_chat(target, SPAN_NOTICE("Вы ощущаете приятное тепло...ваши раны заживают.")) new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "redaction_healing") if(user.skill_check(SKILL_ANATOMY, SKILL_TRAINED) && user.skill_check(SKILL_MEDICAL, SKILL_TRAINED)) - to_chat(user, SPAN_NOTICE("Благодаря имеющимся навыкам, вам удалось залечить некоторые из менее заметных ран [target], значительно ускорив его реабилитацию.")) + to_chat(user, SPAN_NOTICE("Благодаря имеющимся навыкам, вам удалось эффективно залечить некоторые раны[target].")) target.adjustBruteLoss(-rand(20,40)) target.adjustFireLoss(-rand(20,40)) target.adjustBruteLoss(-(rand(10,20) * red_rank)) target.adjustFireLoss(-(rand(10,20) * red_rank)) - if(pk_rank >= PSI_RANK_OPERANT) + if(pk_rank >= PSI_RANK_GRANDMASTER) var/removal_size = clamp(5-pk_rank, 0, 5) var/valid_objects = list() for(var/thing in E.implants) @@ -89,7 +92,7 @@ if(LAZYLEN(valid_objects)) var/removing = pick(valid_objects) target.remove_implant(removing, TRUE) - to_chat(user, SPAN_NOTICE("Помимо прочего, вы также извлекли [removing] из [E.name] вашего пациента.")) + to_chat(user, SPAN_NOTICE("Вы извлекли [removing] из [E.name] вашего пациента.")) return 1 if(option == "Переломы") @@ -98,12 +101,12 @@ if(E.status & ORGAN_TENDON_CUT) if(do_after(user, 40)) new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "redaction_healing") - to_chat(user, SPAN_NOTICE("Вы аккуратно сплели новое сухожилие на месте повреждённого в [E.name].")) + to_chat(user, SPAN_NOTICE("Вы сплели новое сухожилие на месте повреждённого в [E.name].")) E.status &= ~ORGAN_TENDON_CUT return 1 if(red_rank < PSI_RANK_OPERANT) - to_chat(user, SPAN_WARNING("Боюсь, ваших сил недостаточно для проведения данной операции!")) + to_chat(user, SPAN_WARNING("Ваших сил недостаточно для проведения этой операции!")) return 0 if(!E) to_chat(user, SPAN_WARNING("Эта конечность отсутствует!")) @@ -126,34 +129,34 @@ to_chat(user, SPAN_NOTICE("Вы установили кости на их прежнее место, заделав образовавшиеся на их поверхности трещины.")) E.status &= ~ORGAN_BROKEN E.stage = 0 - to_chat(target, SPAN_NOTICE("Вы ощущаете приятное тепло в районе [E.name]...кости начинают вставать на место.")) + to_chat(target, SPAN_NOTICE("Вы ощущаете неприятное движение в районе [E.name]...кости начинают вставать на место.")) return 1 else to_chat(user, SPAN_WARNING("[E.name] не имеет никаких внутренних повреждений!")) return 0 if(option == "Кровотечение") - if(red_rank < PSI_RANK_OPERANT) - to_chat(user, SPAN_WARNING("Боюсь, ваших сил недостаточно для проведения данной операции!")) + if(red_rank < PSI_RANK_APPRENTICE) + to_chat(user, SPAN_WARNING("Ваших сил недостаточно для проведения этой операции!")) return 0 if(!E) to_chat(user, SPAN_WARNING("Эта конечность отсутствует!")) return 0 if(BP_IS_ROBOTIC(E)) - to_chat(user, SPAN_WARNING("Эта конечность заменена протезом.")) + to_chat(user, SPAN_WARNING("Эта конечность не жива.")) return 0 if(E.is_stump()) to_chat(user, SPAN_WARNING("Нет смысла тратить силы на этот обрубок. Здесь вы бессильны.")) return 0 - if(E.status & ORGAN_ARTERY_CUT) + if(E.status & ORGAN_ARTERY_CUT && red_rank >= PSI_RANK_OPERANT) if(do_after(user, 60)) new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "redaction_healing") if(!user.skill_check(SKILL_ANATOMY, SKILL_BASIC)) if(prob(30)) - to_chat(user, SPAN_WARNING("Ваша попытка связать разорванные вены в [E.name] закончились ужасным провалом.")) + to_chat(user, SPAN_WARNING("Ваша попытка связать разорванные артерии в [E.name] закончились ужасным провалом.")) target.apply_damage(20,DAMAGE_BRUTE,E) return 0 - to_chat(user, SPAN_NOTICE("Вы вновь связали разованные вены в [E.name], останавливая внутреннее кровотечение.")) + to_chat(user, SPAN_NOTICE("Вы вновь связали разованные артерии в [E.name], останавливая внутреннее кровотечение.")) to_chat(target, SPAN_NOTICE("Вы ощущаете неприятное чувство в районе [E.name]...словно кто-то вновь сплетает ваши вены воедино.")) E.status &= ~ORGAN_ARTERY_CUT return 1 @@ -161,15 +164,15 @@ if(W.bleeding()) if(W.wound_damage() < 30) if(do_after(user, 30)) - to_chat(user, SPAN_NOTICE("Вы аккуратно перекрыли поток крови, хлыщащий из [E.name], устранив протечку и зашив её.")) - to_chat(target, SPAN_NOTICE("Вы ощущаете приятное тепло в районе [E.name]...кровь, ранее шедшая из этого места - остановилась.")) + to_chat(user, SPAN_NOTICE("Вы приказываете крови в [E.name], остановится.")) + to_chat(target, SPAN_NOTICE("Вы ощущаете как ваша кожа смыкается в [E.name]...")) new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "redaction_healing") W.bleed_timer = 0 W.clamped = TRUE E.status &= ~ORGAN_BLEEDING return 1 else - to_chat(user, SPAN_NOTICE("Это ранение превыше ваших сил.")) + to_chat(user, SPAN_NOTICE("Эта рваная рана, слишком разтерзана, чтобы ее закрыть.")) return 0 else to_chat(user, SPAN_WARNING("[E.name] не имеет никаких внутренних повреждений!")) @@ -177,7 +180,7 @@ if(option == "Конечности") if(red_rank < PSI_RANK_MASTER) - to_chat(user, SPAN_WARNING("Боюсь, ваших сил недостаточно для проведения данной операции!")) + to_chat(user, SPAN_WARNING("Ваших сил недостаточно для проведения этой операции!")) return 0 if(red_rank >= PSI_RANK_MASTER) @@ -206,7 +209,7 @@ if(!user.skill_check(SKILL_ANATOMY, SKILL_TRAINED) || !user.skill_check(SKILL_MEDICAL, SKILL_BASIC)) if(prob(60)) var/limb = pick(BP_L_LEG,BP_R_LEG, BP_L_HAND, BP_R_HAND) - to_chat(user, SPAN_WARNING("Ваша некомпетентность привела к тому, что во время восстановления [new_limb.name] вы нанесли критический урон вашей конечности!")) + to_chat(user, SPAN_WARNING("Ваша некомпетентность привела к тому, что во время восстановления [new_limb.name] вы повредили свою руку!")) user.apply_damage(80,DAMAGE_BRUTE,limb) // limb.mutate() -- придумать user.adjustBruteLoss(rand(30,40)) @@ -219,18 +222,18 @@ if(option == "Органы") if(red_rank < PSI_RANK_MASTER) - to_chat(user, SPAN_WARNING("Боюсь, ваших сил недостаточно для проведения данной операции!")) + to_chat(user, SPAN_WARNING("Ваших сил недостаточно для проведения этой операции!")) return 0 if(red_rank >= PSI_RANK_MASTER) for(var/obj/item/organ/internal/I in E.internal_organs) if(!BP_IS_ROBOTIC(I) && !BP_IS_CRYSTAL(I) && I.damage > 0) if(do_after(user, 120)) - to_chat(user, SPAN_NOTICE("Вы проникаете внутрь тела [target], восстанавливая повреждённый орган: [I].")) + to_chat(user, SPAN_NOTICE("Вы вторгаетесь в [target], восстанавливая: [I].")) new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "redaction_healing") var/heal_rate = red_rank if(!user.skill_check(SKILL_ANATOMY, SKILL_TRAINED) || !user.skill_check(SKILL_MEDICAL, SKILL_BASIC)) if(prob(60)) - to_chat(user, SPAN_WARNING("Однако, ваша неопытность приводит к тому, что [target] получает ещё больше урона!")) + to_chat(user, SPAN_WARNING("Ваша неопытность приводит к тому, что вы лишь усугубили состояние [target]!")) I.damage = max(0, I.damage + rand(5,10)) return 0 I.damage = max(0, I.damage - rand(heal_rate,heal_rate*3)) @@ -242,7 +245,7 @@ cooldown = 60 use_melee = TRUE min_rank = PSI_RANK_MASTER - use_description = "Нажмите по цели на зелёном интенте, чтобы очистить его от генетических отклонений и иных воздействий радиации." + use_description = "Нажмите по цели на зелёном интенте, чтобы очистить его от генетических отклонений и воздействий радиации." /singleton/psionic_power/redaction/cleanse/invoke(mob/living/user, mob/living/carbon/human/target) if(!istype(user) || !istype(target)) @@ -265,7 +268,7 @@ else target.adjustCloneLoss(-(target.getCloneLoss())) return TRUE - to_chat(user, SPAN_NOTICE("Похоже, что у [target] нет ни радиационного заражения, не генетических отклонений.")) + to_chat(user, SPAN_NOTICE("У [target] нет ни радиационного заражения, ни генетических отклонений.")) return FALSE /singleton/psionic_power/revive diff --git a/mods/psionics/code/misc/decoyobj.dm b/mods/psionics/code/misc/decoyobj.dm index 5f13ef7de6203..3a6049eac289e 100644 --- a/mods/psionics/code/misc/decoyobj.dm +++ b/mods/psionics/code/misc/decoyobj.dm @@ -6,7 +6,7 @@ . = ..() alpha = initial(alpha) if(mimiced_atom) - name = mimiced_atom.name + name = "The Illusion" appearance = mimiced_atom.appearance set_dir(set_dir) mouse_opacity = 0 diff --git a/mods/psionics/code/mob/mob_assay.dm b/mods/psionics/code/mob/mob_assay.dm index e7c5c1f015313..65d5c8dc3a5df 100644 --- a/mods/psionics/code/mob/mob_assay.dm +++ b/mods/psionics/code/mob/mob_assay.dm @@ -25,7 +25,7 @@ var/rating_descriptor if(mind && !psi.suppressed) if(GLOB.paramounts.is_antagonist(mind)) - use_rating = SPAN_COLOR("#ff0000", "CAN'T CALCULATE: POSSIBLE LEVEL - 5+") + use_rating = SPAN_COLOR("#ff0000", "POTENTIAL DEVIANT PSI-USER") rating_descriptor = "This indicates a completely deviant psi complexus, either beyond or outside anything currently recorded. Approach with care." // This space intentionally left blank (for Omega-Minus psi vampires. todo) if(viewer != usr && GLOB.thralls.is_antagonist(mind) && ishuman(viewer)) @@ -65,9 +65,9 @@ for(var/faculty_id in psi.ranks) var/singleton/psionic_faculty/faculty = SSpsi.get_faculty(faculty_id) if(psi.ranks[faculty_id] > 0) - dat += "[use_He_is] assayed at the rank of [GLOB.psychic_ranks_to_strings[psi.ranks[faculty.id]]] for the [faculty.name] faculty.
" + dat += "[use_He_is] assayed at the rank of [GLOB.psychic_ranks_to_strings[psi.ranks[faculty.id]]] for the [faculty.name] discipline.
" else - dat += "[use_He_has] no notable power within the [faculty.name] faculty.
" + dat += "[use_He_has] no notable power within the [faculty.name] discipline.
" dat += "
" if(viewer == usr) @@ -76,7 +76,7 @@ var/list/check_powers = psi.get_powers_by_faculty(faculty_id) if(LAZYLEN(check_powers)) var/singleton/psionic_faculty/faculty = SSpsi.get_faculty(faculty_id) - dat += "[use_He_has] access to the following psi-powers within the [faculty.name] faculty:" + dat += "[use_He_has] access to the following psi-powers within the [faculty.name] discipline:" for(var/singleton/psionic_power/power in check_powers) dat += "[power.name][power.use_description]" dat += "" diff --git a/mods/psionics/icons/psi.dmi b/mods/psionics/icons/psi.dmi index ee499e8fe585f084fe242f7c24ff9fc44ef3af4c..544de7bfdc43638227ac9d500e230a504276c66a 100644 GIT binary patch delta 567 zcmV-70?7U9;sNX80gxnr9C}n(bVOxyV{&P5bZKvH004NLm6pM7;xG_~&+rscdyOh6 z&7p@qq{X!9h6IJMEvLvNlg1(>$Tpz9{TfO)z+%QI7}@Ca%s>Cw5x3S8dGP|PKlIvb z;DXha^~-v=>$F=NmdQdbdiU*C0qnDo-wPqB1U0>xQ2{sYR>ru0P|I$+m2P>|QO(k37GM9oS7g1$G1||Jc^UmF)eZ@FVB38>K2O%Is zHAyI8NoDbs%y><&;aMfwLj8(wnI}-uS!tqXo@7jzv8qtY7xjuKwWdP{b~?6mc4wYn z(X~V!2fTCl_RrIQ+mGF&>(GUu=WEq(a1KT6lWVFr%9`XfWhIjgguz__o-$o0j=)MN za3v~LK1we@(m7Ko!&#_+e=;FiY7m!JEQjqq!A0CM{rJVHJ*(Z07 z1-QWr(J1IT#}c}>;rD?vvFH1GZw_>Xe@Nu|KFYni(GZ7-j~}S#Xd0r>yNRZOH;(ZN z)s^~946yepFzTb!Xd2<-2VO+1x5*IqVn>c9!SkyQy|qZt-~FBY3-SWBJVH1#zq3dJ FB5(Vh7-awe delta 566 zcmV-60?GaB;sNU70gxnr8+ue&bVOxyV{&P5bZKvH004NLm6lO+qA(E0pY>BP?JLvK zS|0jv546OV9)g2-txrspP%;I=BvH?A-_+VeJ>$j+aT4a2-T&@p8LzDe^yG(@H}bnH z!Ubiu^~<`u>2*76n#n?K2DjZ#LFjuSzc)f+N!0Rcjs>~ub~4I;h1&MJot)!}e6RmO zm~*yHOOi`Nlz({w*#%=|#@01#bRp>qme~lJo<&s>GE(A=TK8`5?F;6i6R~U>PJ|#C zs7aENG*}j!bj}&Rgr~Knm3j*w`AA8P=cS37k2Isgj8%bRUa=)lnWjQ}>2z%8f1@=d3QBaPy+324weT(~w7e3WQHIjXm_bM71p zaKk60QP6h|CG>5>-@VKveh}z$v!^5agJL%bKv+CrhX{SWsETLiGO`pya$vq=IX EZ!E_bWdHyG diff --git a/test/check-paths.sh b/test/check-paths.sh index 9f3300ab701d6..8bd5d073d44e7 100755 --- a/test/check-paths.sh +++ b/test/check-paths.sh @@ -57,7 +57,7 @@ exactly 0 "simulated = 0/1" 'simulated\s*=\s*\d' -P exactly 2 "var/ in proc arguments" '(^/[^/].+/.+?\(.*?)var/' -P exactly 0 "tmp/ vars" 'var.*/tmp/' -P exactly 15 "uses of .len" '\.len\b' -P -exactly 15 "uses of examine()" '[.|\s]examine\(' -P # If this fails it's likely because you used '/atom/proc/examine(mob)' instead of '/proc/examinate(mob, atom)' - Exception: An examine()-proc may call other examine()-procs +exactly 16 "uses of examine()" '[.|\s]examine\(' -P # If this fails it's likely because you used '/atom/proc/examine(mob)' instead of '/proc/examinate(mob, atom)' - Exception: An examine()-proc may call other examine()-procs exactly 13 "direct modifications of overlays list" '\boverlays((\s*[|^=+&-])|(\.(Cut)|(Add)|(Copy)|(Remove)|(Remove)))' -P exactly 0 "new/list list instantiations" 'new\s*/list' -P exactly 0 "== null tests" '(==\s*null\b)|(\bnull\s*==)' -P #Use isnull() instead From 18f067ad6de5626f1f65a0d47bde1b89af8f22fc Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Sun, 12 Jan 2025 10:32:29 +0100 Subject: [PATCH 12/60] =?UTF-8?q?=D0=9F=D0=BE=D0=BC=D0=B5=D1=82=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=BD=D0=B5=D0=BC=D0=BE=D0=B4=D1=83=D0=BB=D1=8C=D0=BD?= =?UTF-8?q?=D1=8B=D0=B5=20=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/__defines/psi.dm | 11 ++--------- code/controllers/subsystems/processing/psi.dm | 2 ++ code/game/jobs/job/job.dm | 10 +++++++--- .../client/preference_setup/psionics/01_basic.dm | 2 ++ .../preference_setup/psionics/02_abilities.dm | 2 ++ code/modules/psionics/complexus/complexus.dm | 2 ++ .../psionics/complexus/complexus_helpers.dm | 2 ++ .../psionics/complexus/complexus_latency.dm | 2 ++ .../psionics/complexus/complexus_power_cache.dm | 2 ++ .../psionics/complexus/complexus_process.dm | 2 ++ .../psionics/complexus/complexus_topic.dm | 2 ++ .../psionics/equipment/cerebro_enhancers.dm | 2 ++ .../psionics/equipment/foundation_implanter.dm | 2 ++ .../psionics/equipment/foundation_weapon.dm | 4 ++++ code/modules/psionics/equipment/implant.dm | 2 ++ code/modules/psionics/equipment/null_ammo.dm | 4 ++++ code/modules/psionics/equipment/psimeter.dm | 2 ++ code/modules/psionics/equipment/psimonitor.dm | 2 ++ code/modules/psionics/equipment/psipower.dm | 2 ++ .../modules/psionics/equipment/psipower_blade.dm | 2 ++ .../psionics/equipment/psipower_tinker.dm | 2 ++ code/modules/psionics/equipment/psipower_tk.dm | 2 ++ code/modules/psionics/events/_psi.dm | 2 ++ code/modules/psionics/events/mini_spasm.dm | 2 ++ code/modules/psionics/events/psi_balm.dm | 2 ++ code/modules/psionics/events/psi_wail.dm | 2 ++ code/modules/psionics/faculties/_faculty.dm | 2 ++ code/modules/psionics/faculties/_power.dm | 2 ++ code/modules/psionics/faculties/coercion.dm | 2 ++ code/modules/psionics/faculties/energistics.dm | 2 ++ code/modules/psionics/faculties/psychokinesis.dm | 2 ++ code/modules/psionics/faculties/redaction.dm | 2 ++ code/modules/psionics/interface/ui.dm | 2 ++ code/modules/psionics/interface/ui_hub.dm | 2 ++ code/modules/psionics/interface/ui_toggles.dm | 2 ++ code/modules/psionics/mob/mob.dm | 2 ++ code/modules/psionics/mob/mob_assay.dm | 2 ++ code/modules/psionics/mob/mob_interactions.dm | 2 ++ code/modules/psionics/null/_null.dm | 2 ++ code/modules/psionics/null/chemistry.dm | 2 ++ code/modules/psionics/null/flooring.dm | 2 ++ code/modules/psionics/null/material.dm | 2 ++ code/modules/psionics/null/material_sheet.dm | 4 ++++ code/modules/psionics/null/material_weapon.dm | 4 ++++ code/modules/psionics/null/turf_floor.dm | 4 ++++ code/modules/psionics/null/turf_wall.dm | 4 ++++ maps/sierra/job/jobs_medical.dm | 9 ++++++--- maps/using.dm | 2 +- mods/dev_mode/code/dev_map/dev_define.dm | 16 ++++++++++++++++ 49 files changed, 132 insertions(+), 16 deletions(-) diff --git a/code/__defines/psi.dm b/code/__defines/psi.dm index a39e6955a8bce..1401abcf5fb37 100644 --- a/code/__defines/psi.dm +++ b/code/__defines/psi.dm @@ -1,4 +1,4 @@ - +// [SIERRA-ADD] - PSIONICS #define PSI_IMPLANT_AUTOMATIC "Security Level Derived" #define PSI_IMPLANT_SHOCK "Issue Neural Shock" #define PSI_IMPLANT_WARN "Issue Reprimand" @@ -25,11 +25,4 @@ #define PSI_RANK_OPERANT 3 #define PSI_RANK_MASTER 4 #define PSI_RANK_GRANDMASTER 5 -/* -#define PSI_RANK_BLUNT 0 -#define PSI_RANK_LATENT 1 -#define PSI_RANK_OPERANT 2 -#define PSI_RANK_MASTER 3 -#define PSI_RANK_GRANDMASTER 4 -#define PSI_RANK_PARAMOUNT 5 -*/ +// [/SIERRA-ADD] - PSIONICS diff --git a/code/controllers/subsystems/processing/psi.dm b/code/controllers/subsystems/processing/psi.dm index a0c7800d4720b..ae9beb90a4c86 100644 --- a/code/controllers/subsystems/processing/psi.dm +++ b/code/controllers/subsystems/processing/psi.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* GLOBAL_LIST_INIT(psychic_ranks_to_strings, list("Latent", "Operant", "Masterclass", "Grandmasterclass", "Paramount")) @@ -34,3 +35,4 @@ PROCESSING_SUBSYSTEM_DEF(psi) if(faculty) faculty.powers |= power */ +// [/SIERRA-REMOVE] - PSIONICS diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index f1f2bc912958a..85f186481165c 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -58,7 +58,7 @@ var/faction = MOB_FACTION_CREW - var/global/psi_allowed_species = list(/datum/species/human,/datum/species/human/vatgrown,/datum/species/human/tritonian,/datum/species/human/gravworlder,/datum/species/human/spacer) + var/global/psi_allowed_species = list(/datum/species/human,/datum/species/human/vatgrown,/datum/species/human/tritonian,/datum/species/human/gravworlder,/datum/species/human/spacer) // [SIERRA-ADD] - PSIONICS /datum/job/New() @@ -75,7 +75,7 @@ /datum/job/dd_SortValue() return title - +// [SIERRA-ADD] - PSIONICS /datum/job/proc/give_psi(mob/living/carbon/human/H) if(!(all_species[H.client.prefs.species].type in psi_allowed_species)) @@ -84,6 +84,9 @@ if(psi_latency_chance && prob(psi_latency_chance)) H.set_psi_rank(pick(PSI_COERCION, PSI_REDACTION, PSI_ENERGISTICS, PSI_PSYCHOKINESIS, PSI_CONSCIOUSNESS, PSI_MANIFESTATION, PSI_METAKINESIS), 1, defer_update = TRUE) + if(!whitelist_lookup(SPECIES_PSI, H.client)) + return + var/list/psi_abilities_by_name = H.client.prefs.psi_abilities if(!H.client.prefs.psi_threat_level) @@ -116,6 +119,7 @@ affected.implants += imp imp.part = affected to_chat(H, SPAN_DANGER("As a registered psionic, you are fitted with a psi-dampening control implant. Using psi-power while the implant is active will result in neural shocks and your violation being reported.")) +// [/SIERRA-ADD] - PSIONICS /datum/job/proc/equip(mob/living/carbon/human/H, alt_title, datum/mil_branch/branch, datum/mil_rank/grade) @@ -127,7 +131,7 @@ H.add_language(LANGUAGE_SPACER) H.set_default_language(all_languages[LANGUAGE_SPACER]) - give_psi(H) + give_psi(H) // [SIERRA-ADD] - PSIONICS /* if(psi_latency_chance && prob(psi_latency_chance)) H.set_psi_rank(pick(PSI_COERCION, PSI_REDACTION, PSI_ENERGISTICS, PSI_PSYCHOKINESIS), 1, defer_update = TRUE) diff --git a/code/modules/client/preference_setup/psionics/01_basic.dm b/code/modules/client/preference_setup/psionics/01_basic.dm index 3adb9cbbede67..3f995c6ad1dd7 100644 --- a/code/modules/client/preference_setup/psionics/01_basic.dm +++ b/code/modules/client/preference_setup/psionics/01_basic.dm @@ -1,3 +1,4 @@ +// [SIERRA-ADD] - PSIONICS /datum/preferences var/psi_threat_level = 0 var/psi_openness = TRUE @@ -41,3 +42,4 @@ return TOPIC_REFRESH return ..() +// [SIERRA-ADD] - PSIONICS diff --git a/code/modules/client/preference_setup/psionics/02_abilities.dm b/code/modules/client/preference_setup/psionics/02_abilities.dm index acb7226bf4f72..bc832f691e442 100644 --- a/code/modules/client/preference_setup/psionics/02_abilities.dm +++ b/code/modules/client/preference_setup/psionics/02_abilities.dm @@ -1,3 +1,4 @@ +// [SIERRA-ADD] - PSIONICS GLOBAL_LIST_INIT(psi_level2cost, list( "Blunt" = 0, "Latent" = 2, @@ -145,3 +146,4 @@ GLOBAL_LIST_INIT(psi_threat_level2free_points, list(6, 8, 12, 16)) pref.psi_abilities[faculty] = level return TOPIC_REFRESH +// [SIERRA-ADD] - PSIONICS diff --git a/code/modules/psionics/complexus/complexus.dm b/code/modules/psionics/complexus/complexus.dm index cc1b85fab1ad8..b20ec0b55db25 100644 --- a/code/modules/psionics/complexus/complexus.dm +++ b/code/modules/psionics/complexus/complexus.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /datum/psi_complexus @@ -94,3 +95,4 @@ manifested_items.Cut() . = ..() */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/complexus/complexus_helpers.dm b/code/modules/psionics/complexus/complexus_helpers.dm index 1102738015ffd..6e2dcb09a2ddd 100644 --- a/code/modules/psionics/complexus/complexus_helpers.dm +++ b/code/modules/psionics/complexus/complexus_helpers.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /datum/psi_complexus/proc/cancel() sound_to(owner, sound('sound/effects/psi/power_fail.ogg')) @@ -104,3 +105,4 @@ cancel() update() */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/complexus/complexus_latency.dm b/code/modules/psionics/complexus/complexus_latency.dm index bda1984be59ac..df402fde9394c 100644 --- a/code/modules/psionics/complexus/complexus_latency.dm +++ b/code/modules/psionics/complexus/complexus_latency.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /datum/psi_complexus/proc/check_latency_trigger(trigger_strength = 0, source, redactive = FALSE) @@ -18,3 +19,4 @@ log_and_message_admins("gained the [faculty_singleton.name] psionic faculty by: [source].", owner) return TRUE */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/complexus/complexus_power_cache.dm b/code/modules/psionics/complexus/complexus_power_cache.dm index 8b86d0399c700..de1b80ae18624 100644 --- a/code/modules/psionics/complexus/complexus_power_cache.dm +++ b/code/modules/psionics/complexus/complexus_power_cache.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /datum/psi_complexus/proc/rebuild_power_cache() if(rebuild_power_cache) @@ -49,3 +50,4 @@ rebuild_power_cache() return manifestation_powers */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/complexus/complexus_process.dm b/code/modules/psionics/complexus/complexus_process.dm index 8ab10e4ad1ac7..e8717a498967a 100644 --- a/code/modules/psionics/complexus/complexus_process.dm +++ b/code/modules/psionics/complexus/complexus_process.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /datum/psi_complexus/proc/update(force) @@ -250,3 +251,4 @@ if(prob(25)) to_chat(owner, SPAN_NOTICE("Your skin crawls as your autoredactive faculty heals your body.")) */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/complexus/complexus_topic.dm b/code/modules/psionics/complexus/complexus_topic.dm index 753a3e945e559..e3b2803e115d0 100644 --- a/code/modules/psionics/complexus/complexus_topic.dm +++ b/code/modules/psionics/complexus/complexus_topic.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /datum/psi_complexus/CanUseTopic(mob/user, datum/topic_state/state = GLOB.default_state) return (user.client && check_rights(R_ADMIN, FALSE, user.client)) @@ -20,3 +21,4 @@ if(istype(admin)) admin.show_player_panel(owner) */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/cerebro_enhancers.dm b/code/modules/psionics/equipment/cerebro_enhancers.dm index 3b471e3f95cbf..945edae342a9a 100644 --- a/code/modules/psionics/equipment/cerebro_enhancers.dm +++ b/code/modules/psionics/equipment/cerebro_enhancers.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) //Psi-boosting item (antag only) /* /obj/item/clothing/head/helmet/space/psi_amp @@ -167,3 +168,4 @@ set_light(3, 0.5, l_color = "#880000") */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/foundation_implanter.dm b/code/modules/psionics/equipment/foundation_implanter.dm index 2f87380ae2676..43c04f951755b 100644 --- a/code/modules/psionics/equipment/foundation_implanter.dm +++ b/code/modules/psionics/equipment/foundation_implanter.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /obj/item/implanter/psi name = "psi-null implanter" @@ -18,3 +19,4 @@ ..() imp = new /obj/item/implant/psi_control(src) */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/foundation_weapon.dm b/code/modules/psionics/equipment/foundation_weapon.dm index f259ca3e58c33..3174419e03945 100644 --- a/code/modules/psionics/equipment/foundation_weapon.dm +++ b/code/modules/psionics/equipment/foundation_weapon.dm @@ -1,3 +1,5 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) +/* /obj/item/gun/projectile/revolver/foundation name = "\improper Foundation revolver" icon = 'icons/obj/guns/foundation.dmi' @@ -22,3 +24,5 @@ new /obj/item/ammo_magazine/speedloader/magnum/nullglass(src) new /obj/item/gun/projectile/revolver/foundation(src) make_exact_fit() +*/ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/implant.dm b/code/modules/psionics/equipment/implant.dm index 455e503f1d482..259ea8375f374 100644 --- a/code/modules/psionics/equipment/implant.dm +++ b/code/modules/psionics/equipment/implant.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /obj/item/implant/psi_control name = "psi dampener implant" @@ -108,3 +109,4 @@ else if(use_psi_mode == PSI_IMPLANT_WARN) to_chat(imp_in, SPAN_WARNING("Your psi dampener primly informs you it has reported this violation.")) */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/null_ammo.dm b/code/modules/psionics/equipment/null_ammo.dm index eb7fa46e428e7..a56b82d266817 100644 --- a/code/modules/psionics/equipment/null_ammo.dm +++ b/code/modules/psionics/equipment/null_ammo.dm @@ -1,3 +1,5 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) +/* /obj/item/projectile/bullet/nullglass name = "nullglass bullet" damage = 40 @@ -15,3 +17,5 @@ /obj/item/ammo_magazine/speedloader/magnum/nullglass ammo_type = /obj/item/ammo_casing/pistol/magnum/nullglass +*/ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/psimeter.dm b/code/modules/psionics/equipment/psimeter.dm index e50e3688e6d84..142657757d4f9 100644 --- a/code/modules/psionics/equipment/psimeter.dm +++ b/code/modules/psionics/equipment/psimeter.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /obj/machinery/psi_meter name = "psi-meter" @@ -71,3 +72,4 @@ interact(usr) return TRUE */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/psimonitor.dm b/code/modules/psionics/equipment/psimonitor.dm index 7e4b9b8092f12..b0de11c122f33 100644 --- a/code/modules/psionics/equipment/psimonitor.dm +++ b/code/modules/psionics/equipment/psimonitor.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /obj/machinery/psi_monitor name = "psionic implant monitor" @@ -117,3 +118,4 @@ /obj/machinery/psi_monitor/proc/report_violation(obj/item/implant/psi_control/implant, stress) psi_violations += "Sigma [round(stress/10)] event - [implant.imp_in.name]." */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/psipower.dm b/code/modules/psionics/equipment/psipower.dm index d6ee986c7133b..eb1e2cf44b76c 100644 --- a/code/modules/psionics/equipment/psipower.dm +++ b/code/modules/psionics/equipment/psipower.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /obj/item/psychic_power name = "psychic power" @@ -62,3 +63,4 @@ else qdel(src) */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/psipower_blade.dm b/code/modules/psionics/equipment/psipower_blade.dm index 86864d40b2324..ef0daa9794d7c 100644 --- a/code/modules/psionics/equipment/psipower_blade.dm +++ b/code/modules/psionics/equipment/psipower_blade.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /obj/item/psychic_power/psiblade name = "psychokinetic slash" @@ -21,3 +22,4 @@ maintain_cost = 4 icon_state = "psiblade_long" */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/psipower_tinker.dm b/code/modules/psionics/equipment/psipower_tinker.dm index bb47c300eb672..8b3b6d30634e3 100644 --- a/code/modules/psionics/equipment/psipower_tinker.dm +++ b/code/modules/psionics/equipment/psipower_tinker.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /obj/item/psychic_power/tinker name = "psychokinetic crowbar" @@ -39,3 +40,4 @@ to_chat(owner, SPAN_NOTICE("You begin emulating \a [lowertext(emulating)].")) sound_to(owner, 'sound/effects/psi/power_fabrication.ogg') */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/psipower_tk.dm b/code/modules/psionics/equipment/psipower_tk.dm index b91fc3081d2eb..d8ec663d220e2 100644 --- a/code/modules/psionics/equipment/psipower_tk.dm +++ b/code/modules/psionics/equipment/psipower_tk.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /obj/item/psychic_power/telekinesis name = "telekinetic grip" @@ -105,3 +106,4 @@ sleep(5) qdel(O) */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/events/_psi.dm b/code/modules/psionics/events/_psi.dm index 073f18f7ab639..309ae0a5508a7 100644 --- a/code/modules/psionics/events/_psi.dm +++ b/code/modules/psionics/events/_psi.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /datum/event/psi startWhen = 30 @@ -24,3 +25,4 @@ /datum/event/psi/proc/apply_psi_effect(datum/psi_complexus/psi) return */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/events/mini_spasm.dm b/code/modules/psionics/events/mini_spasm.dm index cad399ef5aae4..e3fb052a20137 100644 --- a/code/modules/psionics/events/mini_spasm.dm +++ b/code/modules/psionics/events/mini_spasm.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /datum/event/minispasm startWhen = 60 @@ -67,3 +68,4 @@ "Cuchulain Sensor Array Automated Message" \ ) */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/events/psi_balm.dm b/code/modules/psionics/events/psi_balm.dm index 0dc0dfad237d4..f16abf7a19a10 100644 --- a/code/modules/psionics/events/psi_balm.dm +++ b/code/modules/psionics/events/psi_balm.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /datum/event/psi/balm var/static/list/balm_messages = list( @@ -20,3 +21,4 @@ if(soothed && prob(10)) to_chat(psi.owner, SPAN_NOTICE("[pick(balm_messages)]")) */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/events/psi_wail.dm b/code/modules/psionics/events/psi_wail.dm index af2c9b46576ca..6e2741cea5d8e 100644 --- a/code/modules/psionics/events/psi_wail.dm +++ b/code/modules/psionics/events/psi_wail.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /datum/event/psi/wail var/static/list/whine_messages = list( @@ -17,3 +18,4 @@ if(annoyed && prob(1)) to_chat(psi.owner, SPAN_NOTICE("[pick(whine_messages)]")) */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/faculties/_faculty.dm b/code/modules/psionics/faculties/_faculty.dm index 6a2f61b383e12..6d0585122bbd7 100644 --- a/code/modules/psionics/faculties/_faculty.dm +++ b/code/modules/psionics/faculties/_faculty.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /singleton/psionic_faculty var/id @@ -11,3 +12,4 @@ for(var/atype in armour_types) SSpsi.armour_faculty_by_type[atype] = id */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/faculties/_power.dm b/code/modules/psionics/faculties/_power.dm index ce170e9f5876c..dd6cd26ba3fff 100644 --- a/code/modules/psionics/faculties/_power.dm +++ b/code/modules/psionics/faculties/_power.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /singleton/psionic_power abstract_type = /singleton/psionic_power @@ -47,3 +48,4 @@ if(use_sound) playsound(user.loc, use_sound, 75) */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/faculties/coercion.dm b/code/modules/psionics/faculties/coercion.dm index 1df8e137d2b4c..4c399ad3c17b6 100644 --- a/code/modules/psionics/faculties/coercion.dm +++ b/code/modules/psionics/faculties/coercion.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /singleton/psionic_faculty/coercion id = PSI_COERCION @@ -224,3 +225,4 @@ M.adjust_hallucination(-30) return TRUE */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/faculties/energistics.dm b/code/modules/psionics/faculties/energistics.dm index 41645b7296a67..71a7486599f0d 100644 --- a/code/modules/psionics/faculties/energistics.dm +++ b/code/modules/psionics/faculties/energistics.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /singleton/psionic_faculty/energistics id = PSI_ENERGISTICS @@ -116,3 +117,4 @@ sparks.start() return TRUE */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/faculties/psychokinesis.dm b/code/modules/psionics/faculties/psychokinesis.dm index e83fa755eb590..3fd1454995d7d 100644 --- a/code/modules/psionics/faculties/psychokinesis.dm +++ b/code/modules/psionics/faculties/psychokinesis.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /singleton/psionic_faculty/psychokinesis id = PSI_PSYCHOKINESIS @@ -93,3 +94,4 @@ return TRUE return FALSE */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/faculties/redaction.dm b/code/modules/psionics/faculties/redaction.dm index 4bf523067e05b..8626bcc4a369d 100644 --- a/code/modules/psionics/faculties/redaction.dm +++ b/code/modules/psionics/faculties/redaction.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /singleton/psionic_faculty/redaction id = PSI_REDACTION @@ -190,3 +191,4 @@ target.basic_revival() return TRUE */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/interface/ui.dm b/code/modules/psionics/interface/ui.dm index 50d7ce7f0ea52..32097a0369973 100644 --- a/code/modules/psionics/interface/ui.dm +++ b/code/modules/psionics/interface/ui.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /obj/screen/psi icon = 'icons/screen/psi.dmi' @@ -21,3 +22,4 @@ else invisibility = 0 */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/interface/ui_hub.dm b/code/modules/psionics/interface/ui_hub.dm index 11b40d068c57b..e5094470cbb41 100644 --- a/code/modules/psionics/interface/ui_hub.dm +++ b/code/modules/psionics/interface/ui_hub.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /obj/screen/psi/hub name = "Psi" @@ -71,3 +72,4 @@ owner.psi.show_auras() update_icon() */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/interface/ui_toggles.dm b/code/modules/psionics/interface/ui_toggles.dm index 67c09c3196cf9..d7180ac1de1a7 100644 --- a/code/modules/psionics/interface/ui_toggles.dm +++ b/code/modules/psionics/interface/ui_toggles.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* // Begin psi armour toggle. /obj/screen/psi/armour @@ -45,3 +46,4 @@ icon_state = "arrow_right" // End menu toggle. */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/mob/mob.dm b/code/modules/psionics/mob/mob.dm index 983bd5402bc90..a8cf12eed587a 100644 --- a/code/modules/psionics/mob/mob.dm +++ b/code/modules/psionics/mob/mob.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /mob/living var/datum/psi_complexus/psi @@ -32,3 +33,4 @@ return TRUE return FALSE */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/mob/mob_assay.dm b/code/modules/psionics/mob/mob_assay.dm index 1806ce47f773f..2d98696a735a2 100644 --- a/code/modules/psionics/mob/mob_assay.dm +++ b/code/modules/psionics/mob/mob_assay.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /mob/living/proc/show_psi_assay(mob/viewer, obj/machinery/psi_meter/machine) @@ -93,3 +94,4 @@ popup.set_content(jointext(dat,null)) popup.open() */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/mob/mob_interactions.dm b/code/modules/psionics/mob/mob_interactions.dm index f7b3907b42ca7..7ac8a0fa4b2b2 100644 --- a/code/modules/psionics/mob/mob_interactions.dm +++ b/code/modules/psionics/mob/mob_interactions.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* #define INVOKE_PSI_POWERS(holder, powers, target, return_on_invocation) \ if(holder && holder.psi && holder.psi.can_use()) { \ @@ -37,3 +38,4 @@ #undef INVOKE_PSI_POWERS */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/_null.dm b/code/modules/psionics/null/_null.dm index 32635a45d05bf..14cdc659c764e 100644 --- a/code/modules/psionics/null/_null.dm +++ b/code/modules/psionics/null/_null.dm @@ -4,6 +4,7 @@ * Returns instance of `/atom/movable` or `FALSE`. Either the atom that can disrupt psionics, or `FALSE` if nothing will * disrupt. */ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /atom/proc/disrupts_psionics() for(var/thing in contents) @@ -30,3 +31,4 @@ if(. <= 0) break */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/chemistry.dm b/code/modules/psionics/null/chemistry.dm index 2f0517bba8b35..dfd66e636eb65 100644 --- a/code/modules/psionics/null/chemistry.dm +++ b/code/modules/psionics/null/chemistry.dm @@ -1,4 +1,5 @@ /* +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /singleton/reaction/nullglass name = "Soulstone" result = null @@ -89,3 +90,4 @@ if(prob(10)) new /obj/item/material/shard(get_turf(M), result_mat) */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/flooring.dm b/code/modules/psionics/null/flooring.dm index a99cf9ba5793b..f1ecbd552a3e1 100644 --- a/code/modules/psionics/null/flooring.dm +++ b/code/modules/psionics/null/flooring.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /singleton/flooring var/psi_null @@ -20,3 +21,4 @@ icon_state = "tile_nullglass" matter = list(MATERIAL_NULLGLASS = 937.5) */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/material.dm b/code/modules/psionics/null/material.dm index 7d988499cca98..f8a1f19530456 100644 --- a/code/modules/psionics/null/material.dm +++ b/code/modules/psionics/null/material.dm @@ -1,3 +1,4 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /* /material var/is_psionic_nullifier @@ -32,3 +33,4 @@ . = ..() . += new /datum/stack_recipe/tile/nullglass(src) */ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/material_sheet.dm b/code/modules/psionics/null/material_sheet.dm index 455cbb258e2e5..1ff679dd0319d 100644 --- a/code/modules/psionics/null/material_sheet.dm +++ b/code/modules/psionics/null/material_sheet.dm @@ -1,3 +1,5 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) +/* /obj/item/stack/material/withstand_psi_stress(stress, atom/source) . = ..(stress, source) if(amount > 0 && . > 0 && disrupts_psionics()) @@ -20,3 +22,5 @@ /obj/item/stack/material/nullglass/fifty amount = 50 +*/ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/material_weapon.dm b/code/modules/psionics/null/material_weapon.dm index 24ef29c6c876b..04f12bbe4d680 100644 --- a/code/modules/psionics/null/material_weapon.dm +++ b/code/modules/psionics/null/material_weapon.dm @@ -1,3 +1,5 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) +/* /obj/item/material/disrupts_psionics() return (material && material.is_psi_null()) ? src : FALSE @@ -9,3 +11,5 @@ /obj/item/material/shard/nullglass/New(newloc) ..(newloc, MATERIAL_NULLGLASS) +*/ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/turf_floor.dm b/code/modules/psionics/null/turf_floor.dm index 0a49c172b8184..8318c3754c966 100644 --- a/code/modules/psionics/null/turf_floor.dm +++ b/code/modules/psionics/null/turf_floor.dm @@ -1,3 +1,5 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) +/* /turf/simulated/floor/disrupts_psionics() return (flooring && flooring.is_psi_null()) ? src : ..() @@ -5,3 +7,5 @@ name = "nullglass floor" icon_state = "nullglass" initial_flooring = /singleton/flooring/tiling/nullglass +*/ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/turf_wall.dm b/code/modules/psionics/null/turf_wall.dm index c047beb0b030b..518d092530c39 100644 --- a/code/modules/psionics/null/turf_wall.dm +++ b/code/modules/psionics/null/turf_wall.dm @@ -1,3 +1,5 @@ +// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) +/* /turf/simulated/wall/disrupts_psionics() return ((material && material.is_psi_null()) || (reinf_material && reinf_material.is_psi_null())) ? src : ..() @@ -16,3 +18,5 @@ /turf/simulated/wall/nullglass/Initialize(ml) color = null ..(ml, MATERIAL_NULLGLASS) +*/ +// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/maps/sierra/job/jobs_medical.dm b/maps/sierra/job/jobs_medical.dm index 0ff6c57d61482..87859bd65e473 100644 --- a/maps/sierra/job/jobs_medical.dm +++ b/maps/sierra/job/jobs_medical.dm @@ -237,18 +237,21 @@ /datum/computer_file/program/camera_monitor ) give_psionic_implant_on_join = FALSE - +// [SIERRA-REMOVE] - PSIONICS +/* /datum/job/psychiatrist/equip(mob/living/carbon/human/H) if(H.mind.role_alt_title == "Counselor") psi_faculties = list("[PSI_REDACTION]" = PSI_RANK_OPERANT) if(H.mind.role_alt_title == "Mentalist") psi_faculties = list("[PSI_CONSCIOUSNESS]" = PSI_RANK_OPERANT) return ..() +*/ +// [/SIERRA-REMOVE] - PSIONICS /datum/job/psychiatrist/get_description_blurb() return "Вы - друг, наставник, священник... Или обычный психотерапевт. Помимо своих прямых обязанностей в обеспечении \ - персонала качественной (насколько это возможно) психологической помощью, у вас имеется особенность - вы псионически \ - одарены. Корпорация хорошо платит вам за то, чтобы вы проводили псионическое обследования членов экипажа на \ + персонала качественной (насколько это возможно) психологической помощью, у вас имеется пси-монитор. \ + Корпорация хорошо платит вам за то, чтобы вы проводили псионическое обследования членов экипажа на \ предмет обладания особыми силами, естественно, с отчетом об этом. Ваша зарплата превышает таковую у \ среднестатистческого менталиста из Фонда, и, вероятно, не просто так.
В то время, как Менталист склонен к \ исправлению психологических недугов, поиску псионики и даже чтению мыслей, Советник может проводить медицинскую \ diff --git a/maps/using.dm b/maps/using.dm index ed1676799a660..365a8a23eccdc 100644 --- a/maps/using.dm +++ b/maps/using.dm @@ -1,5 +1,5 @@ //Easily change which map to build by uncommenting ONE below. -#define DEV_MODE 0 +#define DEV_MODE 1 #if DEV_MODE == 1 #include "../mods/dev_mode/code/dev_map/dev_map.dm" #warn Режим разработчика активен, не забудь выключить! diff --git a/mods/dev_mode/code/dev_map/dev_define.dm b/mods/dev_mode/code/dev_map/dev_define.dm index 3382a9b2b8c3d..cbb976bc6b4d5 100644 --- a/mods/dev_mode/code/dev_map/dev_define.dm +++ b/mods/dev_mode/code/dev_map/dev_define.dm @@ -104,3 +104,19 @@ RELIGION_TAOISM ) ) + +#ifndef PSI_IMPLANT_AUTOMATIC +#define PSI_IMPLANT_AUTOMATIC "Security Level Derived" +#endif +#ifndef PSI_IMPLANT_SHOCK +#define PSI_IMPLANT_SHOCK "Issue Neural Shock" +#endif +#ifndef PSI_IMPLANT_WARN +#define PSI_IMPLANT_WARN "Issue Reprimand" +#endif +#ifndef PSI_IMPLANT_LOG +#define PSI_IMPLANT_LOG "Log Incident" +#endif +#ifndef PSI_IMPLANT_DISABLED +#define PSI_IMPLANT_DISABLED "Disabled" +#endif From 47c59117b0aacc3d0499dd32227b61f14857752b Mon Sep 17 00:00:00 2001 From: Rochehendson <141924632+Rochehendson@users.noreply.github.com> Date: Sun, 12 Jan 2025 10:34:41 +0100 Subject: [PATCH 13/60] Update using.dm MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Забыл что я использую дев карту --- maps/using.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maps/using.dm b/maps/using.dm index 365a8a23eccdc..ed1676799a660 100644 --- a/maps/using.dm +++ b/maps/using.dm @@ -1,5 +1,5 @@ //Easily change which map to build by uncommenting ONE below. -#define DEV_MODE 1 +#define DEV_MODE 0 #if DEV_MODE == 1 #include "../mods/dev_mode/code/dev_map/dev_map.dm" #warn Режим разработчика активен, не забудь выключить! From ef908c86194f4c9676ed9f38543b8bd7e24a1cb6 Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Sun, 12 Jan 2025 10:55:27 +0100 Subject: [PATCH 14/60] Update job.dm Cerf --- code/game/jobs/job/job.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index 85f186481165c..90732276f6419 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -84,7 +84,7 @@ if(psi_latency_chance && prob(psi_latency_chance)) H.set_psi_rank(pick(PSI_COERCION, PSI_REDACTION, PSI_ENERGISTICS, PSI_PSYCHOKINESIS, PSI_CONSCIOUSNESS, PSI_MANIFESTATION, PSI_METAKINESIS), 1, defer_update = TRUE) - if(!whitelist_lookup(SPECIES_PSI, H.client)) + if(!whitelist_lookup(SPECIES_PSI, H.client.ckey)) return var/list/psi_abilities_by_name = H.client.prefs.psi_abilities From 712c945d59c8632c906326230f4346b68bcdba79 Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Sun, 12 Jan 2025 21:27:39 +0100 Subject: [PATCH 15/60] =?UTF-8?q?=D0=9D=D0=B5=D0=B1=D0=BE=D0=BB=D1=8C?= =?UTF-8?q?=D1=88=D0=BE=D0=B9=20=D1=84=D0=B8=D0=BA=D1=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mods/psionics/code/equipment/psipower_gun.dm | 2 +- mods/psionics/code/equipment/psipower_orbs.dm | 2 +- mods/psionics/code/faculties/consciousness.dm | 3 +-- mods/psionics/code/faculties/psychokinesis.dm | 12 ++++++------ mods/psionics/code/faculties/redaction.dm | 2 +- 5 files changed, 10 insertions(+), 11 deletions(-) diff --git a/mods/psionics/code/equipment/psipower_gun.dm b/mods/psionics/code/equipment/psipower_gun.dm index 02a1739e13471..cf6b2d4b08e0b 100644 --- a/mods/psionics/code/equipment/psipower_gun.dm +++ b/mods/psionics/code/equipment/psipower_gun.dm @@ -126,7 +126,7 @@ if(M.psi) var/hilo_rank = M.psi.get_rank(PSI_ENERGISTICS) if(hilo_rank <= PSI_RANK_LATENT) - to_chat(M, "���, �� �������� ������ ��������! ������ ��� �� ������ ������ ��������� �� ���� ����?") + to_chat(M, "Оно не стреляет!") return 0 if((MUTATION_CLUMSY in M.mutations) && prob(40)) //Clumsy handling var/obj/P = consume_next_projectile() diff --git a/mods/psionics/code/equipment/psipower_orbs.dm b/mods/psionics/code/equipment/psipower_orbs.dm index bf96b72284629..7445e9c311190 100644 --- a/mods/psionics/code/equipment/psipower_orbs.dm +++ b/mods/psionics/code/equipment/psipower_orbs.dm @@ -414,7 +414,7 @@ var/obj/temp_visual/decoy/D = new /obj/temp_visual/decoy(T, user.dir, user) D.alpha = min(150 + i*15, 255) animate(D, alpha = 0, time = 2 + i*2) - user.forceMove(target_turf) + user.throw_at(target_turf, range, 1, user, FALSE) user.visible_message("[user] делает рывок, используя свои ноги как двигатели!") flame_turf(line_list) else if(!proximity) diff --git a/mods/psionics/code/faculties/consciousness.dm b/mods/psionics/code/faculties/consciousness.dm index d304353150f30..a98cb55054d82 100644 --- a/mods/psionics/code/faculties/consciousness.dm +++ b/mods/psionics/code/faculties/consciousness.dm @@ -243,13 +243,12 @@ to_chat(target, SPAN_WARNING("Вы ощущаете полную ясность мыслей. Словно стали новым человеком.")) var/coercion_rank = user.psi.get_rank(PSI_COERCION) - if(coercion_rank > PSI_RANK_APPRENTICE) + if(coercion_rank > PSI_RANK_OPERANT) target.AdjustParalysis(-1) target.drowsyness = 0 if(istype(target, /mob/living/carbon)) var/mob/living/carbon/M = target M.adjust_hallucination(-30) - M.adjustBrainLoss(-rand(20,35)) return TRUE /singleton/psionic_power/consciousness/assay diff --git a/mods/psionics/code/faculties/psychokinesis.dm b/mods/psionics/code/faculties/psychokinesis.dm index 3f239a2384c63..b7253dac5a2d2 100644 --- a/mods/psionics/code/faculties/psychokinesis.dm +++ b/mods/psionics/code/faculties/psychokinesis.dm @@ -345,11 +345,11 @@ target.visible_message(SPAN_DANGER("[target] ловит лицом кулак, улетая назад!")) if(!user.skill_check(SKILL_HAULING, SKILL_EXPERIENCED)) - user.apply_damage(rand(5,10),DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) + user.apply_damage(rand(10,20),DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и кожа на вашей руке стирается в кровь!")) for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) - target.apply_damage(rand(5,10),DAMAGE_BRUTE,def_zone=zone) + target.apply_damage(rand(10,20),DAMAGE_BRUTE,def_zone=zone) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 1, 2, user) return TRUE @@ -358,7 +358,7 @@ to_chat(target, SPAN_NOTICE("Ваше силовое поле успешно сдержало удар, пускай на это и ушло приличное количество концентрации.")) target.psi.spend_power(10) for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) - user.apply_damage(rand(5,10),DAMAGE_BRUTE,def_zone=zone) + user.apply_damage(rand(10,20),DAMAGE_BRUTE,def_zone=zone) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") user.throw_at(get_edge_target_turf(user, get_dir(target, user)), 1, 2, target) user.visible_message(SPAN_DANGER("Мощное силовое поле [target] отбрасывает [user] назад, создавая мощную обратную волну!")) @@ -368,13 +368,13 @@ if(!user.skill_check(SKILL_HAULING, SKILL_EXPERIENCED)) - user.apply_damage(rand(5,10),DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) + user.apply_damage(rand(10,20),DAMAGE_BRUTE, user.hand ? BP_L_ARM : BP_R_ARM) to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и кожа на вашей руке стирается в кровь!")) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") target.visible_message(SPAN_DANGER("[target] ловит лицом кулак, улетая назад!")) for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) - target.apply_damage(rand(5,10),DAMAGE_BRUTE,def_zone=zone) + target.apply_damage(rand(10,20),DAMAGE_BRUTE,def_zone=zone) target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 1, 2, user) @@ -420,7 +420,7 @@ to_chat(target, SPAN_NOTICE("Ваше силовое поле успешно сдержало удар, пускай на это и ушло приличное количество концентрации.")) target.psi.spend_power(10) for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) - user.apply_damage(rand(10,15),DAMAGE_BRUTE,def_zone=zone) + user.apply_damage(rand(10,25),DAMAGE_BRUTE,def_zone=zone) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") user.throw_at(get_edge_target_turf(user, get_dir(target, user)), 3, 2, target) diff --git a/mods/psionics/code/faculties/redaction.dm b/mods/psionics/code/faculties/redaction.dm index aacf9a0345ddd..06c954acfe12b 100644 --- a/mods/psionics/code/faculties/redaction.dm +++ b/mods/psionics/code/faculties/redaction.dm @@ -244,7 +244,7 @@ cost = 9 cooldown = 60 use_melee = TRUE - min_rank = PSI_RANK_MASTER + min_rank = PSI_RANK_OPERANT use_description = "Нажмите по цели на зелёном интенте, чтобы очистить его от генетических отклонений и воздействий радиации." /singleton/psionic_power/redaction/cleanse/invoke(mob/living/user, mob/living/carbon/human/target) From cb35cc4dd3cb52e1d448b1d1166c09d7ba9bd08c Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Mon, 13 Jan 2025 10:35:53 +0100 Subject: [PATCH 16/60] Update psionics.dm --- mods/psionics/psionics.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/psionics/psionics.dm b/mods/psionics/psionics.dm index 0ea1b7b746393..1c83d0e14f364 100644 --- a/mods/psionics/psionics.dm +++ b/mods/psionics/psionics.dm @@ -1,4 +1,4 @@ /singleton/modpack/psionics - name = "Писоника" - desc = "Добавляет писонику с Final Destination" + name = "Псионика" + desc = "Добавляет псионику с Final Destination, оригинальные авторы Maximum123, DANILCUS, Воид" author = "Roche Hendson" From d38e64fdbfdfb44f7e7051a12bf51b7f1bf4bd6d Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Mon, 20 Jan 2025 15:18:08 +0100 Subject: [PATCH 17/60] =?UTF-8?q?=D0=9F=D1=81=D0=B8=D0=BF=D0=BE=D0=BC?= =?UTF-8?q?=D0=BF=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit + некоторые правки баланса --- .../code/complexus/complexus_helpers.dm | 2 +- .../psionics/code/equipment/psipower_blade.dm | 20 +++---- .../code/equipment/psipower_cryokinesis.dm | 6 +- .../code/equipment/psipower_electrokinesis.dm | 4 +- mods/psionics/code/equipment/psipower_orbs.dm | 16 +++--- mods/psionics/code/equipment/psipump.dm | 53 ++++++++++++++++++ mods/psionics/code/faculties/energistics.dm | 2 +- mods/psionics/code/faculties/psychokinesis.dm | 16 +++--- mods/psionics/code/mob/mob_assay.dm | 12 ++-- mods/psionics/icons/pump/pump.dmi | Bin 0 -> 585 bytes mods/psionics/icons/pump/pump_on_mob.dmi | Bin 0 -> 1044 bytes mods/psionics/psionics.dme | 10 +--- 12 files changed, 93 insertions(+), 48 deletions(-) create mode 100644 mods/psionics/code/equipment/psipump.dm create mode 100644 mods/psionics/icons/pump/pump.dmi create mode 100644 mods/psionics/icons/pump/pump_on_mob.dmi diff --git a/mods/psionics/code/complexus/complexus_helpers.dm b/mods/psionics/code/complexus/complexus_helpers.dm index b5919a30757d3..32229c283062c 100644 --- a/mods/psionics/code/complexus/complexus_helpers.dm +++ b/mods/psionics/code/complexus/complexus_helpers.dm @@ -82,7 +82,7 @@ stunned(value * 2) set_cooldown(value * 100) - if(prob(value*10)) owner.emote("scream") + if(prob(value*10)) owner.seizure() // Your head asplode. owner.adjustBrainLoss(value) diff --git a/mods/psionics/code/equipment/psipower_blade.dm b/mods/psionics/code/equipment/psipower_blade.dm index e48db11d301f2..921d033f24476 100644 --- a/mods/psionics/code/equipment/psipower_blade.dm +++ b/mods/psionics/code/equipment/psipower_blade.dm @@ -15,8 +15,8 @@ maintain_cost = 6 item_icons = list( - slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', - slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + slot_l_hand_str = 'mods/psionics/icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'mods/psionics/icons/psi_fd/righthand.dmi', ) icon_state = "psiblade_short" @@ -38,8 +38,8 @@ maintain_cost = 4 item_icons = list( - slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', - slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + slot_l_hand_str = 'mods/psionics/icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'mods/psionics/icons/psi_fd/righthand.dmi', ) icon_state = "psiblade_long" @@ -83,8 +83,8 @@ maintain_cost = 8 item_icons = list( - slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', - slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + slot_l_hand_str = 'mods/psionics/icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'mods/psionics/icons/psi_fd/righthand.dmi', ) icon_state = "psiaxe" @@ -119,8 +119,8 @@ maintain_cost = 5 item_icons = list( - slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', - slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + slot_l_hand_str = 'mods/psionics/icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'mods/psionics/icons/psi_fd/righthand.dmi', ) icon_state = "psiclub" @@ -155,8 +155,8 @@ maintain_cost = 6 item_icons = list( - slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', - slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + slot_l_hand_str = 'mods/psionics/icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'mods/psionics/icons/psi_fd/righthand.dmi', ) icon_state = "psispear" diff --git a/mods/psionics/code/equipment/psipower_cryokinesis.dm b/mods/psionics/code/equipment/psipower_cryokinesis.dm index 6d5920827e3bc..44aec35d0b381 100644 --- a/mods/psionics/code/equipment/psipower_cryokinesis.dm +++ b/mods/psionics/code/equipment/psipower_cryokinesis.dm @@ -1,10 +1,10 @@ /obj/item/cryokinesis name = "ice" - icon = 'icons/obj/psychic_powers.dmi' + icon = 'mods/psionics/icons/psychic_powers.dmi' item_icons = list( - slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', - slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + slot_l_hand_str = 'mods/psionics/icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'mods/psionics/icons/psi_fd/righthand.dmi', ) icon_state = "cryo" diff --git a/mods/psionics/code/equipment/psipower_electrokinesis.dm b/mods/psionics/code/equipment/psipower_electrokinesis.dm index 0d792ed455761..7349d040c3777 100644 --- a/mods/psionics/code/equipment/psipower_electrokinesis.dm +++ b/mods/psionics/code/equipment/psipower_electrokinesis.dm @@ -4,8 +4,8 @@ maintain_cost = 4 item_icons = list( - slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', - slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + slot_l_hand_str = 'mods/psionics/icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'mods/psionics/icons/psi_fd/righthand.dmi', ) icon_state = "electrowhip" diff --git a/mods/psionics/code/equipment/psipower_orbs.dm b/mods/psionics/code/equipment/psipower_orbs.dm index 7445e9c311190..4acee6edccbe8 100644 --- a/mods/psionics/code/equipment/psipower_orbs.dm +++ b/mods/psionics/code/equipment/psipower_orbs.dm @@ -101,8 +101,8 @@ maintain_cost = 10 item_icons = list( - slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', - slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + slot_l_hand_str = 'mods/psionics/icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'mods/psionics/icons/psi_fd/righthand.dmi', ) icon_state = "electro" @@ -311,8 +311,8 @@ maintain_cost = 10 item_icons = list( - slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', - slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + slot_l_hand_str = 'mods/psionics/icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'mods/psionics/icons/psi_fd/righthand.dmi', ) icon_state = "pyro" @@ -497,7 +497,7 @@ range_step = 1 spread_step = 50 armor_penetration = 20 - icon = 'icons/psi_fd/projectiles.dmi' + icon = 'mods/psionics/icons/psi_fd/projectiles.dmi' icon_state = "ice_spikes" color = "#9ee0dd" @@ -508,7 +508,7 @@ layer = ABOVE_HUMAN_LAYER w_class = ITEM_SIZE_NO_CONTAINER health_max = 200 - icon = 'icons/psi_fd/freeze.dmi' + icon = 'mods/psionics/icons/psi_fd/freeze.dmi' icon_state = "ice_cube" var/timer = 30 @@ -577,8 +577,8 @@ maintain_cost = 10 item_icons = list( - slot_l_hand_str = 'icons/psi_fd/lefthand.dmi', - slot_r_hand_str = 'icons/psi_fd/righthand.dmi', + slot_l_hand_str = 'mods/psionics/icons/psi_fd/lefthand.dmi', + slot_r_hand_str = 'mods/psionics/icons/psi_fd/righthand.dmi', ) icon_state = "cryo" diff --git a/mods/psionics/code/equipment/psipump.dm b/mods/psionics/code/equipment/psipump.dm new file mode 100644 index 0000000000000..9d860b499aa59 --- /dev/null +++ b/mods/psionics/code/equipment/psipump.dm @@ -0,0 +1,53 @@ +// WITHOUT CRYSTAL +/obj/item/clothing/head/helmet/psipump + name = "Psi-pump" + desc = "It's a bulky design with lots of sensors and looks more like a huge makeshift helmet than a device. Something's missing" + icon = 'mods/psionics/icons/pump/pump.dmi' + icon_state = "psipump" + item_icons = list(slot_head_str = 'mods/psionics/icons/pump/pump_on_mob.dmi') + matter = list(MATERIAL_STEEL = 20000) + + item_state_slots = list( + slot_l_hand_str = "helmet", + slot_r_hand_str = "helmet" + ) + w_class = ITEM_SIZE_LARGE + +/obj/item/clothing/head/helmet/psipump/attack_hand(mob/living/carbon/human/H) + if(src == H.head) + to_chat(H, SPAN_NOTICE("You need help taking this off!")) + return + ..() + +/obj/item/clothing/head/helmet/psipump/MouseDrop(obj/over_object) + return + +/obj/item/clothing/head/helmet/psipump/use_tool(obj/item/tool, mob/user) + if (istype(tool, /obj/item/device/soulstone)) + qdel(tool) + new /obj/item/clothing/head/helmet/psipump/active(get_turf(src)) + qdel(src) + return ..() + +/datum/fabricator_recipe/psipump + name = "Psi-pump assembly" + path = /obj/item/clothing/head/helmet/psipump + +// WITH CRYSTAL +/obj/item/clothing/head/helmet/psipump/active + name = "Psi-pump" + desc = "It's a bulky design with lots of sensors and looks more like a huge makeshift helmet than a device." + icon_state = "psipump" + + item_state_slots = list( + slot_l_hand_str = "helmet", + slot_r_hand_str = "helmet" + ) + w_class = ITEM_SIZE_LARGE + +/obj/item/clothing/head/helmet/psipump/active/disrupts_psionics() + return src + +/datum/codex_entry/psipump + associated_paths = list(/obj/item/clothing/head/helmet/psipump, /obj/item/clothing/head/helmet/psipump/active) + lore_text = "The psi-pump is a device developed by an exonet psychopath, which was subsequently posted online as a template for lathes. The device is securely fixed on the head and without outside help, it is almost impossible to remove. The 'soul' crystal inside disrupts the functioning of psionics." diff --git a/mods/psionics/code/faculties/energistics.dm b/mods/psionics/code/faculties/energistics.dm index 1e4e7d21837a4..926fa61e7f598 100644 --- a/mods/psionics/code/faculties/energistics.dm +++ b/mods/psionics/code/faculties/energistics.dm @@ -351,7 +351,7 @@ anchored = TRUE opacity = FALSE layer = ABOVE_HUMAN_LAYER - icon = 'icons/effects/smoke.dmi' + icon = 'icons/effects/96x96.dmi' icon_state = "smoke" pixel_x = -9 pixel_y = -6 diff --git a/mods/psionics/code/faculties/psychokinesis.dm b/mods/psionics/code/faculties/psychokinesis.dm index b7253dac5a2d2..a77be6cbd07e0 100644 --- a/mods/psionics/code/faculties/psychokinesis.dm +++ b/mods/psionics/code/faculties/psychokinesis.dm @@ -412,7 +412,7 @@ for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) target.apply_damage(rand(10,15),DAMAGE_BRUTE,def_zone=zone) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") - new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") + new /obj/temporary(get_turf(target),6, 'mods/psionics/icons/effects/heavyimpact.dmi', "heavyimpact") target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 3, 2, user) return TRUE @@ -422,7 +422,7 @@ for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) user.apply_damage(rand(10,25),DAMAGE_BRUTE,def_zone=zone) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") - new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") + new /obj/temporary(get_turf(target),6, 'mods/psionics/icons/effects/heavyimpact.dmi', "heavyimpact") user.throw_at(get_edge_target_turf(user, get_dir(target, user)), 3, 2, target) user.visible_message(SPAN_DANGER("Мощное силовое поле [target] отбрасывает [user] назад, создавая мощную обратную волну!")) return TRUE @@ -435,7 +435,7 @@ to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и вашу руку выворачивает наизнанку!")) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") - new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") + new /obj/temporary(get_turf(target),6, 'mods/psionics/icons/effects/heavyimpact.dmi', "heavyimpact") target.visible_message(SPAN_DANGER("[target] ловит лицом кулак, улетая назад!")) for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) target.apply_damage(rand(25,40),DAMAGE_BRUTE,def_zone=zone) @@ -487,7 +487,7 @@ for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) target.apply_damage(rand(20,60),DAMAGE_BRUTE,def_zone=zone) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") - new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") + new /obj/temporary(get_turf(target),6, 'mods/psionics/icons/effects/heavyimpact.dmi', "heavyimpact") target.throw_at(get_edge_target_turf(target, get_dir(user, target)), 6, 2, user) return TRUE @@ -497,7 +497,7 @@ for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) user.apply_damage(rand(20,60),DAMAGE_BRUTE,def_zone=zone) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") - new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") + new /obj/temporary(get_turf(target),6, 'mods/psionics/icons/effects/heavyimpact.dmi', "heavyimpact") user.throw_at(get_edge_target_turf(user, get_dir(target, user)), 6, 2, target) user.visible_message(SPAN_DANGER("Мощное силовое поле [target] отбрасывает [user] назад, создавая мощную обратную волну!")) return TRUE @@ -510,7 +510,7 @@ to_chat(user, SPAN_WARNING("Ваше неподготовленное тело не выдерживает отдачи от удара, и вашу руку выворачивает наизнанку!")) new /obj/temporary(get_turf(target),3, 'icons/effects/effects.dmi', "smash") - new /obj/temporary(get_turf(target),6, 'icons/effects/heavyimpact.dmi', "heavyimpact") + new /obj/temporary(get_turf(target),6, 'mods/psionics/icons/effects/heavyimpact.dmi', "heavyimpact") target.visible_message(SPAN_DANGER("[target] ловит лицом кулак, улетая назад!")) for(var/zone in list(BP_CHEST, BP_GROIN, BP_HEAD)) target.apply_damage(rand(20,60),DAMAGE_BRUTE,def_zone=zone) @@ -526,7 +526,7 @@ layer = ABOVE_HUMAN_LAYER w_class = ITEM_SIZE_NO_CONTAINER health_max = 200 - icon = 'icons/effects/psi_effects.dmi' + icon = 'mods/psionics/icons/effects/psi_effects.dmi' icon_state = "earth_pillar_2" /obj/structure/girder/rock/use_tool(obj/item/W, mob/user) @@ -570,7 +570,7 @@ var/turf/A = target if(do_after(user, 10)) user.visible_message("[user] возводит каменную стену!") - new /obj/temporary(A, 9, 'icons/effects/psi_effects.dmi', "earth_pillar_0") + new /obj/temporary(A, 9, 'mods/psionics/icons/effects/psi_effects.dmi', "earth_pillar_0") spawn(1 SECONDS) new /obj/structure/girder/rock(get_turf(A)) return TRUE diff --git a/mods/psionics/code/mob/mob_assay.dm b/mods/psionics/code/mob/mob_assay.dm index 65d5c8dc3a5df..11ffd4900c920 100644 --- a/mods/psionics/code/mob/mob_assay.dm +++ b/mods/psionics/code/mob/mob_assay.dm @@ -36,22 +36,22 @@ if(!use_rating) switch(effective_rating) if(1) - use_rating = "[effective_rating-1]-Epsilon" + use_rating = "[effective_rating-1]-Omicron" rating_descriptor = "This indicates the presence of minor latent psi potential with little or no appentice capabilities." if(2) - use_rating = "[effective_rating-1]-Gamma" + use_rating = "[effective_rating]-Omega" rating_descriptor = "This indicates the presence of minor psi capabilities of the Appentice rank or higher." if(3) - use_rating = SPAN_COLOR("#f4f441", "[effective_rating-1]-Delta") + use_rating = SPAN_COLOR("#f4f441", "[effective_rating]-Lamed") rating_descriptor = "This indicates the presence of minor psi capabilities of the Operant rank or higher." if(4) - use_rating = SPAN_COLOR("#f4bc42", "[effective_rating-1]-Beta") + use_rating = SPAN_COLOR("#f4bc42", "[effective_rating]-Gimmel") rating_descriptor = "This indicates the presence of significant psi capabilities of the Master rank or higher." if(5) - use_rating = SPAN_COLOR("#ff0000", "[effective_rating-1]-Alpha") + use_rating = SPAN_COLOR("#ff0000", "[effective_rating]-Aleph") rating_descriptor = "This indicates the presence of significant psi capabilities of the Grandmaster rank or higher." else - use_rating = "[effective_rating]-Lambda" + use_rating = "[effective_rating]-Omicron" rating_descriptor = "This indicates the presence of trace latent psi capabilities." dat += "[use_He_has] an overall psi rating of [use_rating].
[rating_descriptor]
" diff --git a/mods/psionics/icons/pump/pump.dmi b/mods/psionics/icons/pump/pump.dmi new file mode 100644 index 0000000000000000000000000000000000000000..11258510d50b167bb529d010502b20db3def6de0 GIT binary patch literal 585 zcmV-P0=E5$P)V=-0C=2JR&a84_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex6#a*U0*I5Sc+ z(=$pSoZ^zil2jm5sh~KspftBYiHkEOv#1y-V#vjrR+N~V3SlcNxca$(4F&*zLmL^t z|GGZ_00EgvL_t(|ob6OQZo)tmTt{gV3V*sFBVlS%APP4rB65Oo0T(`nPrw;)#}!Cz zlp>7_iyPobSV(lHAnk@(v6hqg^AzGH@<=PM->%<`XWv`KTC`}<5DZ=Clzms!gpT8I zjK3ChO(lO>F0=V!u~0C7noM}#vP9grZ5D4~HD&MSCF#Yqy<_c;D~$mAOlm<>7fA-|cpSe7#;%J`sS3BuOecNDj*n_9p>s96^37F64OjFe# zagfNm_+FfF0OW8WJse7Nlez#vKSKnP#hXp-eh7eDz{U4~Op+&;eO`t;{ic@uBABKr z>H^nne#o`ANA*|NHW^g}SfdIcA3;-SOu)nIL7}+te;oiQE;Q}{L^L9Rdd4kUw5Y=; Xcyq4+52++^00000NkvXXu0mjfemMV0 literal 0 HcmV?d00001 diff --git a/mods/psionics/icons/pump/pump_on_mob.dmi b/mods/psionics/icons/pump/pump_on_mob.dmi new file mode 100644 index 0000000000000000000000000000000000000000..60a55f6495beffd386033c1463a35e4069a08d82 GIT binary patch literal 1044 zcmV+v1nc{WP)V=-0C=2JR&a84_w-Y6@%7{?OD!tS%+FJ>RWQ*r;NmRLOex6#a*U0*I5Sc+ z(=$pSoZ^zil2jm5sh~KspftBYiHkEOv#1!Pjf*p_C^0t`#5UwoR&e!m0UHbee~TL& zWN^Wc000AHNklc>QKxej&-zygQNWi z{0r1S!rfA_po1VpI@D2gaHv*H2N7Iq94y_^el9)o`pom)o4jW#o)28!ubX?$`QCe9 zLe4S9fr*KUT2D_;O|A=tLaj7BY}@4IWR2@!|L}FQ)Egh$9BDz{@Mn5@Iyw6c_MofF z8hn|{+4HC-jszV_0vQh*5>T*&{zcm#Q`qa(5p&#;Z3__MaQ<}`M!qYV1*ew9TmyiVcy;8AlV`IZ!2Swqf>FR(B zY%>A_0+v-UGBRTQkwza@=IqRjv;Ei=0J&Vw9$9Lryt%n~L19@TvvYIjq9h4{AvpG# zc?8(r-nP%U7J=Z~{=W0LP6B|4fUzi^XCK+%cXoE19dLm_2^bOB0;~Y`zW5^BfP2#4 z73aOevL-N$)_cqIvV8pTzWLR5x9$pQ7N6f1Y1lt^BI-N-%bU*H>sK!l-TPtW_lEDY zL|GonL<&Gl-GPL0`WA3y=<{jYbrT^`0d53QTOi1FTLp@uD2k#eilQirq9}?I133cu zpI*|_N!J8iM%d=N@$rUjdnXVGzFaPwQmJHCmX~c>Jjg+%l1@_MFZ}l(wmCRBXuj_5 zHk1(Y{s5{E3=Ei0OG`E(Nxo3(2S{SV{QP_>B2W~;5!+%@7#$sLNCfY{#Yv4x@F256 z@K5{te24Qw#uuTnE%sMeS1-+5M&TuZq@KvoGV{U01Vp(ig0`yF>UqTqNmAeRn3n(; zc|SE}v$ImJf&*l2nH8V3bR)?4*utg+58^|;;*HDj+Ap#PS&APQ7wtW%8A!S=C=Myz zVJq@Z0x8$=sSt6l4*>G+Vk}&q(khq$DVd>wqVlJuiloRT9qp1TO9SlEf+c#r+3eN( z(rN)(VfzAC?TFY*!tRYvkE;N!c0g%@|K=sAD2k#eilQirq9}@To%jv29k^KPLuU5? O0000 Date: Mon, 20 Jan 2025 15:30:05 +0100 Subject: [PATCH 18/60] =?UTF-8?q?=D0=9F=D1=81=D0=B8=D0=BF=D0=BE=D0=BC?= =?UTF-8?q?=D0=BF=D1=83=20=D0=B2=20=D0=A1=D0=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- maps/sierra/z1-z5_sierra.dmm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/maps/sierra/z1-z5_sierra.dmm b/maps/sierra/z1-z5_sierra.dmm index e7b9b6f5c59f8..403bf94594759 100644 --- a/maps/sierra/z1-z5_sierra.dmm +++ b/maps/sierra/z1-z5_sierra.dmm @@ -123181,6 +123181,14 @@ /obj/item/clothing/accessory/armband, /obj/item/clothing/accessory/armband, /obj/item/clothing/accessory/armband, +/obj/item/clothing/head/helmet/psipump/active{ + pixel_y = 9; + pixel_x = -8 + }, +/obj/item/clothing/head/helmet/psipump/active{ + pixel_x = 5; + pixel_y = 8 + }, /turf/simulated/floor/tiled/techfloor, /area/security/sierra/armory/lobby) "seu" = ( From bc8655df16d72a3084183a405a7cbbbc043f3553 Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Mon, 20 Jan 2025 19:18:44 +0100 Subject: [PATCH 19/60] =?UTF-8?q?=D0=9D=D0=B5=D0=BE=D0=B1=D1=8F=D0=B7?= =?UTF-8?q?=D0=B0=D1=82=D0=B5=D0=BB=D1=8C=D0=BD=D1=8B=D0=B9=20=D0=B8=D0=BC?= =?UTF-8?q?=D0=BF=D0=BB=D0=B0=D0=BD=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/game/jobs/job/job.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index 90732276f6419..2a9df7da90b5c 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -50,7 +50,7 @@ var/list/species_branch_rank_cache_ = list() var/list/psi_faculties // Starting psi faculties, if any. var/psi_latency_chance = 0 // Chance of an additional psi latency, if any. - var/give_psionic_implant_on_join = TRUE // If psionic, will be implanted for control. + var/give_psionic_implant_on_join = FALSE // If psionic, will be implanted for control. var/use_species_whitelist // If set, restricts the job to players with the given species whitelist. This does NOT restrict characters joining as the job to the species itself. @@ -104,7 +104,7 @@ H.psi.update() - give_psionic_implant_on_join ||= (H.client.prefs.psi_threat_level > 0) + give_psionic_implant_on_join ||= (H.client.prefs.psi_openness && H.client.prefs.psi_threat_level > 0) if(!give_psionic_implant_on_join) return From 710040b0b022bd31a046cf2809042603aa2f231c Mon Sep 17 00:00:00 2001 From: Rochehendson <141924632+Rochehendson@users.noreply.github.com> Date: Sun, 26 Jan 2025 14:08:39 +0100 Subject: [PATCH 20/60] Rename psionics.dme to psionics_includes.dm --- mods/psionics/{psionics.dme => psionics_includes.dm} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename mods/psionics/{psionics.dme => psionics_includes.dm} (100%) diff --git a/mods/psionics/psionics.dme b/mods/psionics/psionics_includes.dm similarity index 100% rename from mods/psionics/psionics.dme rename to mods/psionics/psionics_includes.dm From 5b941cf973cafd4c1edc7ea7be23e996e780ca28 Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Fri, 21 Feb 2025 13:27:58 +0100 Subject: [PATCH 21/60] =?UTF-8?q?5=D1=8530?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Вернул менталистам писонику --- maps/sierra/job/jobs_medical.dm | 12 +++++------- mods/psionics/code/equipment/cerebro_enhancers.dm | 2 +- mods/psionics/code/faculties/redaction.dm | 4 ++-- 3 files changed, 8 insertions(+), 10 deletions(-) diff --git a/maps/sierra/job/jobs_medical.dm b/maps/sierra/job/jobs_medical.dm index 87859bd65e473..e216045cf6a6d 100644 --- a/maps/sierra/job/jobs_medical.dm +++ b/maps/sierra/job/jobs_medical.dm @@ -236,17 +236,15 @@ /datum/computer_file/program/suit_sensors, /datum/computer_file/program/camera_monitor ) - give_psionic_implant_on_join = FALSE -// [SIERRA-REMOVE] - PSIONICS -/* + give_psionic_implant_on_join = TRUE // [/SIERRA-EDIT] - PSIONICS + /datum/job/psychiatrist/equip(mob/living/carbon/human/H) if(H.mind.role_alt_title == "Counselor") - psi_faculties = list("[PSI_REDACTION]" = PSI_RANK_OPERANT) + psi_faculties = list("[PSI_REDACTION]" = PSI_RANK_OPERANT) // [/SIERRA-EDIT] - PSIONICS if(H.mind.role_alt_title == "Mentalist") - psi_faculties = list("[PSI_CONSCIOUSNESS]" = PSI_RANK_OPERANT) + psi_faculties = list("[PSI_CONSCIOUSNESS]" = PSI_RANK_OPERANT) // [/SIERRA-EDIT] - PSIONICS return ..() -*/ -// [/SIERRA-REMOVE] - PSIONICS + /datum/job/psychiatrist/get_description_blurb() return "Вы - друг, наставник, священник... Или обычный психотерапевт. Помимо своих прямых обязанностей в обеспечении \ diff --git a/mods/psionics/code/equipment/cerebro_enhancers.dm b/mods/psionics/code/equipment/cerebro_enhancers.dm index e27db04f3262a..f6d0b4507e103 100644 --- a/mods/psionics/code/equipment/cerebro_enhancers.dm +++ b/mods/psionics/code/equipment/cerebro_enhancers.dm @@ -26,7 +26,7 @@ max_boosted_faculties = 1 boosted_rank = PSI_RANK_MASTER - unboosted_rank = PSI_RANK_OPERANT + unboosted_rank = PSI_RANK_APPRENTICE boosted_psipower = 50 /obj/item/clothing/head/helmet/space/psi_amp/Initialize() diff --git a/mods/psionics/code/faculties/redaction.dm b/mods/psionics/code/faculties/redaction.dm index 06c954acfe12b..35d41ee451896 100644 --- a/mods/psionics/code/faculties/redaction.dm +++ b/mods/psionics/code/faculties/redaction.dm @@ -27,7 +27,7 @@ cooldown = 30 use_grab = TRUE min_rank = PSI_RANK_APPRENTICE - use_description = "Схватите цель, выберите верхнюю часть тела и зелёный интент, затем нажав по нему захватом ещё раз, чтобы проверить его физическое состояние." + use_description = "Схватите цель, выберите верхнюю часть тела и переключитесь на зелёный интент, затем нажмите по цели захватом ещё раз, чтобы проверить физическое состояние цели." /singleton/psionic_power/redaction/skinsight/invoke(mob/living/user, mob/living/target) if(user.zone_sel.selecting != BP_CHEST) @@ -35,7 +35,7 @@ . = ..() if(.) user.visible_message(SPAN_NOTICE("[user] кладёт руку на [target].")) - to_chat(user, medical_scan_results(target, TRUE, SKILL_MAX)) + to_chat(user, medical_scan_results(target, TRUE, user.get_skill_value(SKILL_MEDICAL))) return TRUE /singleton/psionic_power/redaction/mend From 440e6255bda127205370e5510fd72db73e1b618e Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Tue, 25 Feb 2025 13:13:38 +0100 Subject: [PATCH 22/60] Create README.md --- mods/psionics/README.md | 75 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 mods/psionics/README.md diff --git a/mods/psionics/README.md b/mods/psionics/README.md new file mode 100644 index 0000000000000..fccaf682ab85a --- /dev/null +++ b/mods/psionics/README.md @@ -0,0 +1,75 @@ + +#### Список PRов: + +- https://github.com/SierraBay/SierraBay12/pull/2780 + + + +## Псионика + +ID мода: PSIONICS + + +### Описание мода + +Порт псионики с Final Destination, добавляет ВЛьный выбор псионики из лодаута и ограничивает псионику под вайтлист + + +### Изменения *кор кода* + +- `code/controllers/subsystems/processing/psi.dm`: `Закомменчено` +- `baystation12.dme`: `#include "code\modules\client\preference_setup\psionics\01_basic.dm"`, `#include "code\modules\client\preference_setup\psionics\02_abilities.dm"` +- `code/__defines/psi.dm`: `Закомменчено` +- `code/game/jobs/job/job.dm`: `proc/give_psi`, `equip` +- `code/modules/client/preference_setup/preference_setup.dm`: `/datum/category_group/player_setup_category/psionics_preferences` +- `code/modules/psionics/` : `Перенесено в мод, закомменчено` +- `test/check-paths.sh` : `+1 к uses of examine()` + + +### Оверрайды + +- `Отсутствуют` + + +### Дефайны + +- `code/__defines/mobs.dm`: `SPECIES_PSI` +- `code/__defines/psi.dm` : `PSI_COERCION`, `PSI_CONSCIOUSNESS`, `PSI_PSYCHOKINESIS`, `PSI_MANIFESTATION`, `PSI_METAKINESIS`, `PSI_ENERGISTICS`, `PSI_REDACTION`, `PSI_RANK_APPRENTICE`, `PSI_RANK_OPERANT`, `PSI_RANK_MASTER`, `PSI_RANK_GRANDMASTER` + + +### Авторы: + +Roche Hendson +[final-destination.space](https://github.com/RepoStash/FD-NewBay) - источник + From fb66f44f83ef15f6bb579bb9d9171681c998fc83 Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Sat, 1 Mar 2025 17:04:56 +0100 Subject: [PATCH 23/60] Update redaction.dm --- mods/psionics/code/faculties/redaction.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/psionics/code/faculties/redaction.dm b/mods/psionics/code/faculties/redaction.dm index 35d41ee451896..63bb4fdd109b5 100644 --- a/mods/psionics/code/faculties/redaction.dm +++ b/mods/psionics/code/faculties/redaction.dm @@ -304,7 +304,7 @@ if(G.mind && G.mind.current == target && G.client) to_chat(G, SPAN_NOTICE("Your body has been revived, Re-Enter Corpse to return to it.")) break - to_chat(target, SPAN_NOTICE("Жизненные силы снова наполняют ваше тело.")) + to_chat(target, SPAN_NOTICE("Вы просыпаетесь от вечного сна, вместе с ужасающими воспоминаниями с того света.")) target.visible_message(SPAN_NOTICE("[target] трясётся в ужасе!")) new /obj/temporary(get_turf(target),8, 'icons/effects/effects.dmi', "rune_convert") target.adjustOxyLoss(-rand(30,45)) From ac563a9cb128157a1bf17f726234060f4403e20b Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Sun, 9 Mar 2025 15:52:12 +0100 Subject: [PATCH 24/60] resolve map conflict --- maps/sierra/{ => _references}/z1-z5_sierra.dmm | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename maps/sierra/{ => _references}/z1-z5_sierra.dmm (100%) diff --git a/maps/sierra/z1-z5_sierra.dmm b/maps/sierra/_references/z1-z5_sierra.dmm similarity index 100% rename from maps/sierra/z1-z5_sierra.dmm rename to maps/sierra/_references/z1-z5_sierra.dmm From 7db872afe8d535de0b48d0aff1afcce582b82cb0 Mon Sep 17 00:00:00 2001 From: Rochehendson <141924632+Rochehendson@users.noreply.github.com> Date: Sun, 9 Mar 2025 15:54:52 +0100 Subject: [PATCH 25/60] Delete maps/sierra/_references/z1-z5_sierra.dmm --- maps/sierra/_references/z1-z5_sierra.dmm | 366795 -------------------- 1 file changed, 366795 deletions(-) delete mode 100644 maps/sierra/_references/z1-z5_sierra.dmm diff --git a/maps/sierra/_references/z1-z5_sierra.dmm b/maps/sierra/_references/z1-z5_sierra.dmm deleted file mode 100644 index 74698ca72c08a..0000000000000 --- a/maps/sierra/_references/z1-z5_sierra.dmm +++ /dev/null @@ -1,366795 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aag" = ( -/obj/wallframe_spawn/reinforced_phoron/titanium, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell2) -"aap" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/flora/pottedplant/fern, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"aaq" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/machinery/computer/air_control{ - dir = 1; - input_tag = "co2_in"; - name = "Carbon Dioxide Supply Control"; - output_tag = "co2_out"; - sensor_name = "Tank"; - sensor_tag = "co2_sensor" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/corner/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"aau" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"aaB" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/sleeper{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/maintenance_equipstorage) -"aaG" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/port) -"aaI" = ( -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"aaJ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod1/station) -"aaR" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sign/warning/airlock{ - color = "#ff9900"; - name = "\improper WAY TO SPACE"; - pixel_y = 26 - }, -/obj/floor_decal/corner/red/diagonal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/floor_decal/spline/fancy/black{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"aaU" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = 28 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs) -"abj" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"abk" = ( -/obj/structure/handrail, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"abq" = ( -/obj/floor_decal/corner/darkblue/full, -/obj/floor_decal/corner/black/half{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"abs" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/holoplant, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"abt" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/machinery/vending/wallmed2{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"abu" = ( -/obj/machinery/barrier, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"aby" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for the AI core maintenance door."; - id_tag = "AICore"; - name = "AI Core Shutter Control"; - pixel_x = 24; - pixel_y = 36 - }, -/obj/machinery/turretid/stun{ - check_synth = 1; - name = "AI Chamber turret control"; - pixel_x = -28; - pixel_y = 38 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 1; - pixel_y = -29 - }, -/obj/item/modular_computer/telescreen/preset/ai{ - pixel_y = 24 - }, -/obj/machinery/power/apc/super/critical{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/landmark/start{ - name = "AI" - }, -/turf/simulated/floor/greengrid, -/area/turret_protected/ai) -"abB" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"abI" = ( -/obj/floor_decal/corner/purple/three_quarters{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"abK" = ( -/obj/structure/sign/warning/radioactive{ - dir = 1; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/bombcloset, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"abM" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftstarboard) -"abP" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - target_pressure = 200 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/tele_beacon, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/turret_protected/ai_teleport) -"abW" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/bed/sofa/l/brown{ - dir = 4 - }, -/obj/floor_decal/corner/black/full, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"abX" = ( -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"ace" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"acf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/heads/captain/secret_room/level_one) -"act" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"acw" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"acE" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - id_tag = "nuke_shuttle_dock_airlock_pump" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"acJ" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/cell/high, -/obj/item/cell/high, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"acN" = ( -/obj/structure/table/woodentable/walnut, -/obj/machinery/recharger, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"acO" = ( -/obj/machinery/power/smes/buildable/preset/sierra/shuttle{ - RCon_tag = "Shuttle - Guppy" - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/light/small, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/guppy_hangar/start) -"acP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"acR" = ( -/obj/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/greengrid, -/area/engineering/gravitaional_generator) -"acV" = ( -/obj/floor_decal/floordetail/edgedrain{ - dir = 1 - }, -/obj/floor_decal/corner/red{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"adh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"adp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"adw" = ( -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"adx" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/canister) -"adA" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - frequency = 1441; - id = "toxin_in"; - use_power = 1 - }, -/obj/machinery/sparker{ - pixel_x = 21; - id_tag = "ToxLab" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/rnd/toxins) -"adB" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/window/boron_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"adC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"adI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"adK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft) -"adM" = ( -/obj/floor_decal/corner/purple{ - pixel_y = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"adO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - id_tag = "eng_lockdown"; - name = "Engineering Lockdown" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance{ - name = "Chief Engineer Maintenance"; - secured_wires = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/heads/office/ce) -"adU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/turret_protected/ai_maint) -"adZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/central_stairwell) -"aec" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"aee" = ( -/obj/random/obstruction, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"aeq" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aex" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"aeI" = ( -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d1starboard) -"aeO" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/space, -/area/space) -"aeS" = ( -/obj/structure/table/standard, -/obj/item/trash/cigbutt, -/obj/machinery/light/small, -/obj/structure/sign/warning/smoking{ - dir = 1; - pixel_y = -40; - pixel_x = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"aeU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ - id_tag = "engine_atmos_airlock"; - name = "Engine Room Airlock Controlls"; - pixel_y = 24; - req_access = list("ACCESS_ENGINE_EQUIP"); - tag_interior_door = "engine_atmos_airlock_inner"; - tag_exterior_door = "engine_atmos_airlock_outer"; - tag_airpump = "engine_atmos_airlock_vent"; - tag_exterior_sensor = "engine_atmos_airlock_sensor_out"; - tag_chamber_sensor = "engine_atmos_airlock_chamber"; - tag_interior_sensor = "engine_atmos_airlock_sensor_in" - }, -/obj/structure/catwalk, -/obj/structure/hygiene/drain, -/obj/structure/hygiene/shower{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aeW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "hop_road_shutters"; - name = "HoP Line's Shutters"; - opacity = 0 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/hop) -"afc" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"afj" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"afk" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/small/sugar{ - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"afn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/laundry) -"afq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"afz" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"afD" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 8 - }, -/obj/structure/flora/pottedplant/minitree, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/suplocker_room) -"afE" = ( -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/green/bordercorner2, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"afQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/item/sticky_pad/random, -/obj/item/modular_computer/tablet/lease/preset/command, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"afT" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"afU" = ( -/obj/structure/catwalk, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/space) -"aga" = ( -/obj/structure/table/marble, -/obj/structure/window/reinforced, -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/floor_decal/corner/red/diagonal, -/obj/floor_decal/spline/fancy/black, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"age" = ( -/obj/floor_decal/industrial/warning, -/obj/machinery/keycard_auth/sierra{ - pixel_x = -24 - }, -/turf/simulated/floor/selfestructgrid, -/area/security/nuke_storage) -"agA" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"agF" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/device/geiger, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood/walnut, -/area/vacant/gambling) -"agG" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"agI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"agK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"agL" = ( -/obj/structure/closet/crate/present, -/obj/item/stack/tile/carpet/fifty, -/obj/item/stack/tile/carpetblue/fifty, -/obj/item/stack/tile/carpetblue2/fifty, -/obj/item/stack/tile/carpetblue3/fifty, -/obj/item/stack/tile/carpetgreen/fifty, -/obj/item/stack/tile/carpetmagenta/fifty, -/obj/item/stack/tile/carpetorange/fifty, -/obj/item/stack/tile/carpetpurple/fifty, -/obj/item/stack/tile/carpetred/fifty, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/spline/plain/yellow{ - dir = 6 - }, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"agO" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/seconddeck/port) -"agR" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/wood/walnut, -/area/maintenance/firstdeck/foreport) -"ahe" = ( -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/starboard) -"ahf" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"ahn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"ahx" = ( -/obj/structure/closet/walllocker{ - pixel_y = 28 - }, -/obj/item/stack/material/glass/reinforced/fifty, -/obj/item/stack/material/glass/reinforced/fifty, -/obj/item/stack/material/glass/reinforced/fifty, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"ahy" = ( -/obj/machinery/computer/air_control{ - dir = 1; - input_tag = "fuel_in"; - name = "Fuel Supply Control"; - output_tag = "fuel_out"; - sensor_name = "Fuel Tank"; - sensor_tag = "fuel_sensor" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/fuelbay) -"ahA" = ( -/obj/structure/hygiene/shower{ - dir = 4; - pixel_x = -9 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology) -"ahQ" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/bed/chair/pew/left, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"ahU" = ( -/obj/structure/railing/mapped{ - dir = 8; - init_color = "#46698c"; - color = "#46698c" - }, -/turf/simulated/open, -/area/hallway/primary/bridgedeck/central_stairwell) -"aif" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "firingspace"; - name = "Firing Range Shields" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"aim" = ( -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/cockpit) -"ait" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"aiu" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"aiw" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 8; - pixel_x = 14 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"aiA" = ( -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe) -"aiB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"aiP" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/open, -/area/medical/staging) -"aiQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"aiS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"ajb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"ajd" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/cell3) -"ajj" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ajl" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"ajo" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"ajp" = ( -/obj/machinery/air_sensor{ - id_tag = "calypso_out" - }, -/obj/floor_decal/industrial/warning/full, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - dir = 1; - id_tag = "calypso_shuttle_pump_out_external" - }, -/obj/structure/catwalk, -/turf/simulated/floor/reinforced, -/area/exploration_shuttle/airlock) -"ajs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"aju" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = list(list("ACCESS_SECURITY","ACCESS_FORENSICS")); - secured_wires = 1; - autoset_access = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor/grid, -/area/security/sierra/dockcheck) -"ajw" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"ajF" = ( -/obj/structure/table/rack, -/obj/item/stack/material/wood/walnut/twentyfive, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftport) -"ajL" = ( -/obj/machinery/door/airlock/vault/bolted{ - autoset_access = 0; - id_tag = "medsafe"; - name = "Medical Safe Room" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"ajO" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"ajS" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"ajY" = ( -/obj/structure/ladder/up, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/forestarboard) -"akd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"akf" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id_tag = "hangar_atmos_storage"; - name = "Storage Shutters" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar_atmos) -"akj" = ( -/obj/floor_decal/corner/green/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"akl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"akm" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 4; - id_tag = "escape_pod_4_pump" - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - dir = 4; - id_tag = "escape_pod_4"; - name = "escape pod four controller"; - pixel_x = -20; - tag_door = "escape_pod_4_hatch"; - frequency = 1380 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/grey/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod4/station) -"akp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/bed/sofa/l/red, -/obj/machinery/button/alternate/door/bolts{ - dir = 4; - id_tag = "bar_private_room_2"; - name = "Lock"; - pixel_x = -24; - pixel_y = -7 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/carpet/magenta, -/area/crew_quarters/cafe) -"aks" = ( -/obj/machinery/light, -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"akx" = ( -/obj/structure/closet/secure_closet/guncabinet/sierra_armory/stun, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"akz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"akC" = ( -/obj/structure/closet/coffin, -/obj/floor_decal/corner/black/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"akE" = ( -/obj/structure/table/woodentable/walnut, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/floor_decal/carpet/green{ - dir = 4 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{ - pixel_y = 7; - pixel_x = -6 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{ - pixel_y = 7; - pixel_x = 5 - }, -/obj/item/reagent_containers/food/drinks/teapot, -/turf/simulated/floor/carpet/green, -/area/medical/mentalhealth/therapyroom) -"akR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/actor) -"akZ" = ( -/obj/floor_decal/industrial/traffic{ - dir = 6; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/office) -"alw" = ( -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/medical/office) -"alA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"alE" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/heads/office/cmo/cobed) -"alH" = ( -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/crucian_hangar/start) -"alI" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/green, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"alJ" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/firstdeck/center) -"alL" = ( -/obj/machinery/air_sensor/nacelle/fourth/plasma, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d1port) -"alN" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"alS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/crate/bin, -/obj/floor_decal/industrial/hatch/yellow, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -24; - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/scan) -"alU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/center) -"alX" = ( -/obj/machinery/disperser/front{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/command/bsa) -"alY" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - id_tag = "petrov_shuttle_inner"; - name = "Petrov Interior Access"; - req_access = list("ACCESS_PETROV_HELM"); - autoset_access = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/petrov/airlock) -"alZ" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/atmos) -"amf" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/window/boron_reinforced{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"amj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"ams" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"amt" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"amx" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"amy" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe) -"amA" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/steel_grid, -/area/security/range) -"amK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"amQ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - dir = 4; - name = "Adjutants Dorm" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"amR" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger/wallcharger{ - dir = 4; - pixel_x = -22 - }, -/obj/item/folder/red, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"amS" = ( -/obj/floor_decal/chapel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"and" = ( -/obj/structure/bed/chair/rounded/beige{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"anf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor/orange, -/obj/structure/table/rack, -/obj/random/tech_supply, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"ang" = ( -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"ani" = ( -/obj/wallframe_spawn/reinforced_phoron/titanium, -/obj/paint/nt_white, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell2) -"ano" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/computer/shuttle_control/lift/medical, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"anr" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft_stairwell) -"anu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"anv" = ( -/obj/structure/flora/pottedplant/orientaltree, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"anD" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs) -"anF" = ( -/turf/simulated/floor/plating, -/area/space) -"anQ" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"anW" = ( -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"anX" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"aoe" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "bsa_space"; - name = "Unknown Compartament Hatch" - }, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/command/bsa) -"aoh" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"aoj" = ( -/obj/floor_decal/corner/blue/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"aoq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/item/material/ashtray/glass, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"aoB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"aoC" = ( -/obj/floor_decal/corner/black/border, -/turf/simulated/floor/tiled, -/area/hydroponics/third_deck_storage) -"aoE" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/bed/padded, -/obj/item/bedsheet/blue, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/south) -"aoG" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"aoH" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"aoN" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft_stairwell) -"aoX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"apa" = ( -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"apf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/fore) -"api" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"apl" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/foreport) -"apm" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"apu" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/command/chief_steward) -"apv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"apA" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"apB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"apD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/guppy_hangar/start) -"apE" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/airlock) -"apQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/paint_stripe/red, -/obj/wallframe_spawn/reinforced/polarized{ - id = "hos_windows" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/hos) -"apU" = ( -/obj/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1; - target_pressure = 80 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"aqb" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/shieldgen, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"aqc" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/flasher{ - dir = 8; - id_tag = "ai_core"; - pixel_x = 24 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"aql" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"aqr" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/structure/flora/pottedplant/floorleaf, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"aqz" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/port) -"aqA" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_s"; - dir = 1 - }, -/obj/paint/red, -/obj/paint_stripe/red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod11/station) -"aqC" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 9; - pixel_y = -21 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"aqF" = ( -/obj/machinery/air_sensor/nacelle/first/oxygen, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d3starboard) -"aqH" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"aqI" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/teleporter) -"aqJ" = ( -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d1port) -"aqL" = ( -/obj/structure/janitorialcart, -/obj/item/mop, -/obj/machinery/light/small, -/obj/floor_decal/corner/purple{ - pixel_y = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"aqT" = ( -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"aqW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"arb" = ( -/obj/structure/cable/green, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/turf/simulated/floor/plating, -/area/rnd/development) -"are" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"arm" = ( -/obj/floor_decal/corner/paleblue, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/white, -/area/medical/virology/ward) -"arq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow, -/obj/machinery/status_display{ - pixel_y = 32; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"arC" = ( -/obj/structure/hygiene/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology) -"arG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"arM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"arN" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - id_tag = "xenobio2_vent"; - name = "Chamber Vent" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"arO" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"arQ" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"arU" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/hos) -"asc" = ( -/obj/machinery/door/airlock/atmos{ - name = "Safe Room Atmospherics" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/seconddeck) -"asm" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"aso" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"asr" = ( -/obj/machinery/disposal, -/obj/floor_decal/corner/lime/half{ - dir = 4 - }, -/obj/floor_decal/corner/lime{ - dir = 9 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/central_stairwell) -"ast" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/recharge_station, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"asI" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/obj/machinery/camera/network/command{ - c_tag = "Command - Starboard Hallway" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"atf" = ( -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/medical/virology/lab) -"atj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/entry) -"atl" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"ato" = ( -/obj/floor_decal/borderfloorblack, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/bunk) -"atp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"atq" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"atr" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/corner/green/three_quarters{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Hydroponics - Aft"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"att" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id_tag = "med_main_reg"; - name = "Infirmary Entry Shutters" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"atw" = ( -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"atx" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/open, -/area/space) -"atC" = ( -/obj/structure/closet/firecloset, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "virology_access"; - name = "Virology Lab Access Console"; - req_access = list("ACCESS_VIRO"); - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology) -"atF" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/power/emitter{ - desc = "A massive, heavy-duty industrial laser. This design is a fixed installation, capable of shooting in only one direction. It has a label on it reading 'SRV Petrov Analysis Lab.'"; - name = "emitter (Petrov)"; - req_lock_access = list("ACCESS_TORCH_PETROV_ANALYSIS"); - anchored = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/scan) -"atH" = ( -/obj/floor_decal/industrial/warning, -/obj/machinery/camera/network/petrov{ - c_tag = "Petrov - Isolation Cell Three"; - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell3) -"atJ" = ( -/turf/simulated/floor/wood/walnut{ - icon_state = "walnut_broken5" - }, -/area/vacant/bar) -"atK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"atR" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 1; - id_tag = "solar_port_pump" - }, -/obj/machinery/light/small, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"atV" = ( -/obj/structure/table/marble, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/closet/shipping_wall/filled{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"atW" = ( -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"auk" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"aul" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/psi_monitor, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"aun" = ( -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/head) -"aus" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"aut" = ( -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"auv" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"aux" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/binary/pump/high_power{ - target_pressure = 10000 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"auE" = ( -/obj/structure/iv_stand, -/obj/structure/roller_bed, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"auH" = ( -/obj/machinery/atmospherics/unary/vent_pump/tank{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "h2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/hydrogen, -/area/engineering/atmos) -"auN" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"auU" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "hangar_checkpoint_shutters"; - name = "Hangar Deck Checkpoint Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/sierra/dockcheck) -"auV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/lime/border{ - dir = 6 - }, -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"auZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"avg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"avh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/door/window/brigdoor/northleft{ - dir = 2 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"avi" = ( -/turf/unsimulated/mask, -/area/hallway/primary/seconddeck/center) -"avj" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"avo" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/engine_smes) -"avt" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "robotics_surgery" - }, -/turf/simulated/floor/plating, -/area/assembly/robotics) -"avJ" = ( -/obj/structure/sign/warning/hot_exhaust{ - dir = 1 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3starboard) -"avL" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"avN" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"avQ" = ( -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"awb" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/structure/bookcase/manuals/security, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"awc" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"awl" = ( -/obj/floor_decal/corner/black/full, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/gym) -"awr" = ( -/obj/structure/table/glass, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/random/clipboard, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"awD" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/camera/network/fourth_deck{ - c_tag = "Fourth Deck - Dock Bay - Main Dock"; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"awH" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/item/device/toner{ - pixel_y = 12 - }, -/obj/item/device/toner{ - pixel_y = 12 - }, -/obj/item/device/toner{ - pixel_y = 12 - }, -/obj/floor_decal/corner/yellow/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"awJ" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"awP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Chemistry"; - sort_type = "Chemistry" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"awQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "eng2_outer"; - name = "Third Deck Port Nacelle Access" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/thruster/d3port) -"awR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"awT" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/disposalpipe/down{ - dir = 4 - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/bridgedeck/aft) -"awW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"awX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/floor_decal/corner/grey{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"axe" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"axm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/space_heater{ - pixel_y = 32 - }, -/turf/simulated/floor/bluegrid, -/area/engineering/bluespace/chamber) -"axn" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/tool, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"axq" = ( -/obj/structure/table/standard, -/obj/item/device/scanner/health, -/obj/item/device/geiger, -/obj/floor_decal/corner/black/three_quarters, -/obj/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/floor_decal/corner/purple/bordercorner2, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/ship) -"axt" = ( -/obj/machinery/suit_cycler/science, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"axy" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"axC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/thirddeck/fore) -"axL" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"axO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"axP" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"axW" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/foreport) -"axY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft) -"axZ" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"ayj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"ayl" = ( -/obj/structure/table/standard, -/obj/floor_decal/carpet/blue2{ - dir = 1 - }, -/obj/floor_decal/carpet/blue2{ - dir = 8 - }, -/obj/floor_decal/carpet/blue2{ - dir = 9 - }, -/obj/item/paper_bin, -/obj/item/pen/multi/cmd/hop, -/obj/item/folder/blue, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/hop) -"ayu" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Central Hallway Two" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"ayw" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"ayy" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"ayB" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"ayD" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/machinery/body_scan_display{ - pixel_y = 24 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"ayJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated/dark, -/turf/simulated/floor/plating, -/area/bridge/hallway) -"ayY" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"azd" = ( -/obj/floor_decal/industrial/warning/fulltile, -/obj/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"azi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"azj" = ( -/obj/structure/table/rack, -/obj/random/junkfood, -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/thirddeck/starboard) -"azk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"azA" = ( -/obj/machinery/light/small, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hardstorage) -"azH" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"azQ" = ( -/obj/machinery/optable, -/obj/decal/cleanable/blood, -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"azU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs/upper) -"azX" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"aAf" = ( -/turf/simulated/open, -/area/rnd/xenobiology/water_cell) -"aAi" = ( -/obj/floor_decal/carpet/blue2, -/obj/structure/bed/padded, -/obj/item/bedsheet/hop, -/obj/landmark/start{ - name = "Head of Personnel" - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/hop/cobed) -"aAp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/half, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"aAt" = ( -/obj/machinery/disposal, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"aAw" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"aAz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"aAB" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"aAD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/center) -"aAE" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cargo_r) -"aAJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/radiation, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/prototype/engine) -"aAO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 6 - }, -/obj/wallframe_spawn/reinforced_phoron/hull, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"aAP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"aAU" = ( -/obj/structure/hygiene/shower{ - dir = 4; - pixel_x = 5 - }, -/obj/floor_decal/steeldecal/steel_decals10, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/structure/curtain/open/shower, -/obj/item/bikehorn/rubberducky, -/obj/structure/closet/walllocker{ - pixel_x = -28 - }, -/obj/structure/hygiene/drain, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/prison) -"aAY" = ( -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"aBc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"aBe" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/space, -/area/space) -"aBi" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"aBk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 1; - display_name = "Port Dock A"; - frequency = 1380; - id_tag = "skipjack_shuttle_dock_airlock"; - pixel_x = 32; - req_access = list("ACCESS_EXTERNAL"); - pixel_y = -29 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"aBp" = ( -/obj/machinery/door/airlock/multi_tile/maintenance{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/starboard) -"aBy" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"aBA" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"aBC" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"aBD" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"aBE" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"aBJ" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/range) -"aBK" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/structure/sign/deck/fourth{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"aBL" = ( -/obj/machinery/suit_storage_unit/atmos/alt, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - EVA" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"aBN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft) -"aBP" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"aBR" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"aCb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 6 - }, -/obj/structure/holoplant, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"aCc" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"aCf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -23; - pixel_y = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/catwalk_plated, -/obj/machinery/camera/network/hangar{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"aCl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"aCo" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"aCp" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/table/standard, -/obj/floor_decal/corner/grey/diagonal, -/obj/random/clipboard, -/obj/random/clipboard{ - pixel_y = 3; - pixel_x = 3 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"aCs" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/maintenance/firstdeck/centralstarboard) -"aCu" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/cell1) -"aCw" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"aCD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet/orange, -/area/security/range) -"aCE" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/door/blast/regular/open{ - id_tag = "eng_lockdown_emg1"; - name = "Emergency Exit" - }, -/turf/simulated/floor/plating, -/area/engineering/engineering_monitoring) -"aCF" = ( -/obj/shuttle_landmark/skipjack/deck3, -/turf/space, -/area/space) -"aCG" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"aCL" = ( -/obj/structure/table/standard, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"aCM" = ( -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"aCR" = ( -/obj/machinery/button/blast_door{ - id_tag = "vir_blast_window"; - name = "Virology windows"; - pixel_y = -24 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"aCX" = ( -/obj/machinery/flasher{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"aDa" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/center) -"aDg" = ( -/obj/landmark{ - name = "lightsout" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"aDp" = ( -/obj/machinery/computer/modular/preset/civilian{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/camera/network/fourth_deck{ - dir = 4; - c_tag = "Fourth Deck - Central Stairwell" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/central_stairwell) -"aDt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"aDv" = ( -/obj/machinery/camera/network/second_deck{ - c_tag = "Chapel - Mass Driver" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"aDB" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"aDF" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"aDI" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 1; - id_tag = "nuke_shuttle_dock_airlock_pump" - }, -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"aDL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"aDM" = ( -/obj/structure/flora/seaweed, -/obj/fluid_mapped, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/beach/sand, -/area/rnd/xenobiology/level2) -"aDN" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/waterstore) -"aDT" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"aDY" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"aEa" = ( -/obj/structure/flora/pottedplant/minitree, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"aEe" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/door/airlock/external/escapepod{ - dir = 4; - id_tag = "escape_pod_3_berth_hatch"; - name = "Escape Pod Three" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/center) -"aEf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/corner/white{ - dir = 10 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"aEv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/storage) -"aEy" = ( -/obj/machinery/door/airlock/maintenance{ - autoset_access = 0; - name = "Security Maintenance"; - req_access = list("ACCESS_SECURITY") - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/security/range) -"aEz" = ( -/obj/machinery/button/blast_door{ - dir = 8; - id_tag = "bsa_door2"; - name = "Obstruction Field Disperser Blast Door"; - pixel_x = 24; - req_access = list("ACCESS_GUN") - }, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel_grid, -/area/command/bsa) -"aEI" = ( -/obj/decal/cleanable/blood/oil, -/obj/machinery/atmospherics/pipe/cap/visible/fuel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/cap/visible/fuel, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"aEL" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/structure/bed/chair/padded/red, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/fore) -"aEM" = ( -/obj/structure/bed/chair/office/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"aFa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"aFg" = ( -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"aFi" = ( -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Power Storage"; - req_access = newlist(); - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/auxpower) -"aFq" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"aFs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/standard, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"aFz" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/item/sticky_pad/random, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"aFE" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"aFM" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"aFO" = ( -/obj/structure/girder, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/curtain/bed, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"aFR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/civilian{ - dir = 4; - name = "Restroom" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/head) -"aFT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"aFW" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/device/camera, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"aGc" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/machinery/button/ignition{ - id_tag = "Incinerator"; - pixel_x = 24; - pixel_y = 6; - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "incinerator_access_control"; - name = "Incinerator Access Console"; - pixel_x = 24; - pixel_y = -6; - tag_exterior_door = "incinerator_airlock_exterior"; - tag_interior_door = "incinerator_airlock_interior"; - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"aGh" = ( -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/closet/l3closet/scientist, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"aGi" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"aGj" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/glass/civilian{ - dir = 4 - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown1_1" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/center) -"aGk" = ( -/obj/floor_decal/corner/purple{ - pixel_y = 1 - }, -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"aGs" = ( -/obj/machinery/jukebox/custom_tape/old, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"aGt" = ( -/turf/simulated/floor/reinforced, -/area/rnd/toxins) -"aGH" = ( -/obj/structure/table/woodentable/walnut, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/storage/fancy/crayons, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor) -"aGI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"aGJ" = ( -/obj/machinery/disposal, -/obj/floor_decal/corner/yellow/three_quarters{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 22; - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"aGP" = ( -/obj/structure/lattice, -/obj/structure/closet/crate, -/turf/simulated/open, -/area/maintenance/firstdeck/aftstarboard) -"aGQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/fore) -"aGT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/civilian{ - name = "Lounge" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge/upper) -"aHg" = ( -/obj/structure/rubble, -/obj/decal/cleanable/dirt, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"aHo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/roller_bed, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"aHE" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"aHK" = ( -/obj/machinery/atmospherics/unary/tank/air, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"aHL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/computer/telecomms/traffic{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"aHM" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/tcommsat/chamber) -"aHV" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/pump, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"aIe" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"aIi" = ( -/obj/machinery/door/airlock/research{ - autoset_access = 0; - frequency = 1379; - id_tag = "xeno_airlock_outer"; - name = "Xenobiology Access"; - req_access = list("ACCESS_RESEARCH") - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"aIl" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = 28 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/wood/yew, -/area/crew_quarters/heads/office/ce/cobed) -"aIp" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"aIq" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/foreport) -"aIC" = ( -/obj/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"aIH" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"aIL" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"aIM" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"aIO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"aIS" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/dogbed, -/mob/living/simple_animal/passive/corgi/puppy, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"aIT" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/civilian{ - name = "Toilet"; - id_tag = "old_maintaince_privatedorm_toilet" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/dormintories) -"aIU" = ( -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"aIY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/wall/r_wall/hull, -/area/space) -"aJb" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/seconddeck/forestarboard) -"aJd" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"aJi" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"aJv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"aJA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"aJD" = ( -/obj/structure/table/steel, -/obj/machinery/button/blast_door{ - id_tag = "concheckwindow"; - name = "Checkpoint Shutter Control"; - pixel_x = 5; - pixel_y = 6 - }, -/obj/machinery/button/blast_door{ - id_tag = "outercheckwindow"; - name = "Outer Checkpoint Shutter Control"; - pixel_x = 5; - pixel_y = -3 - }, -/obj/structure/cable/green, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"aJG" = ( -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"aJI" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"aJJ" = ( -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"aJL" = ( -/obj/machinery/space_heater, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23 - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"aKa" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/civilian{ - name = "Cryo Storage" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/sleep/cryo) -"aKe" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"aKh" = ( -/obj/machinery/door/window/westright{ - name = "Xenoflora Environment"; - req_access = newlist(); - dir = 4 - }, -/obj/machinery/door/window/westleft{ - name = "Xenoflora Environment" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/xenobiology/xenoflora) -"aKj" = ( -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp/lava/cyan, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/ward) -"aKm" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "PetrovBiohazard"; - name = "Petrov Biohazard Shutters" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/airlock) -"aKn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"aKq" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"aKt" = ( -/obj/structure/iv_stand, -/obj/machinery/body_scan_display{ - pixel_y = 24 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery) -"aKy" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"aKG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"aKQ" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 8 - }, -/obj/machinery/papershredder, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"aKX" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"aLa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod1/station) -"aLc" = ( -/obj/structure/bed/chair/office/comfy/purple{ - dir = 1 - }, -/obj/landmark/start{ - name = "Research Director" - }, -/obj/structure/curtain/bed{ - pixel_y = 32 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/heads/office/rd/cobed) -"aLi" = ( -/obj/machinery/cooker/oven, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"aLo" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/light_construct{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/abandoned_hydroponics) -"aLw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"aLA" = ( -/obj/structure/table/standard, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_cyborg_upload) -"aLB" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Armory"; - req_access = newlist(); - dir = 4 - }, -/obj/floor_decal/industrial/hatch/grey, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/sierra/armory) -"aLI" = ( -/obj/structure/railing/mapped, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"aLQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"aLS" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"aMo" = ( -/turf/simulated/floor/carpet/purple, -/area/chapel/office) -"aMp" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"aMq" = ( -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/orange/corner, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 8 - }, -/obj/structure/sign/thera{ - pixel_y = -32; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"aMC" = ( -/obj/structure/railing/mapped, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"aMG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"aMI" = ( -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"aML" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"aMS" = ( -/obj/paint/dark_gunmetal, -/obj/paint_stripe/yellow, -/turf/simulated/wall/r_titanium, -/area/guppy_hangar/start) -"aNn" = ( -/obj/structure/bed/chair/office/comfy/blue, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"aNp" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/head_big) -"aNs" = ( -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"aNt" = ( -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/cargo_l) -"aNv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"aND" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"aNM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/paint/black, -/turf/simulated/wall/ocp_wall, -/area/maintenance/incinerator) -"aNR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"aNW" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/rnd/xenobiology/xenoflora) -"aOa" = ( -/obj/floor_decal/industrial/hatch/red, -/turf/simulated/floor/reinforced, -/area/command/bsa) -"aOd" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"aOg" = ( -/obj/machinery/constructable_frame/machine_frame, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"aOj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"aOn" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular{ - id_tag = "BSD_windows"; - name = "Bluespace Chamber Lockdown" - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace/chamber) -"aOo" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"aOq" = ( -/turf/simulated/wall/r_wall/hull, -/area/storage/tech/high_risk) -"aOt" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/machinery/power/apc/high{ - name = "north bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"aOu" = ( -/obj/structure/catwalk, -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#6a97b0" - }, -/area/quartermaster/hangar/upper) -"aOx" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/lime/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"aOA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/catwalk_plated/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/hallway) -"aOH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/gym) -"aPn" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/spline/fancy/black, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"aPv" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"aPw" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sleep/bunk) -"aPH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering{ - name = "First Deck Substation"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/substation/firstdeck) -"aPJ" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/titanium, -/area/shuttle/petrov/eva) -"aPS" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/uniform_vendor{ - icon_state = "robotics"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/firstdeck) -"aPV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/obj/machinery/status_light{ - id_tag = "ReacEng3"; - name = "Deck One Starboard status indicator"; - pixel_y = -32 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"aPW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"aPY" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"aQb" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/central_stairwell) -"aQd" = ( -/obj/structure/railing/mapped, -/obj/machinery/space_heater, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"aQi" = ( -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled, -/area/rnd/locker) -"aQn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"aQp" = ( -/obj/machinery/atmospherics/unary/tank/air, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"aQq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"aQt" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"aQu" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"aQw" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod4/station) -"aQC" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"aQF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"aQS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad/longrange, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/door/window/brigdoor/westleft{ - autoset_access = 0; - dir = 2; - req_access = list("ACCESS_EXPEDITION_SHUTTLE_HELM") - }, -/obj/overmap/visitable/ship/landable/exploration_shuttle, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cockpit) -"aRa" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"aRb" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"aRe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"aRf" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/random/action_figure, -/obj/random/action_figure, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"aRn" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/emergency) -"aRo" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/turret_protected/ai_upload) -"aRp" = ( -/obj/floor_decal/corner/blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"aRr" = ( -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/hydroponics) -"aRt" = ( -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/galley/backroom) -"aRv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf{ - dir = 4 - }, -/obj/machinery/door/window/southright{ - dir = 4; - name = "Research and Development Desk"; - req_access = newlist() - }, -/obj/machinery/door/window/northleft{ - autoset_access = 0; - dir = 8; - name = "Research and Development Desk" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/plating, -/area/rnd/development) -"aRx" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1; - icon_state = "railing0-1" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"aRB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/material/utensil/knife/plastic, -/obj/item/material/utensil/knife/plastic, -/obj/item/material/utensil/knife/plastic, -/obj/item/material/utensil/fork/plastic, -/obj/item/material/utensil/fork/plastic, -/obj/item/material/utensil/fork/plastic, -/obj/item/material/utensil/spoon/plastic, -/obj/item/material/utensil/spoon/plastic, -/obj/item/material/utensil/spoon/plastic, -/obj/item/material/utensil/foon/plastic, -/obj/item/material/utensil/foon/plastic, -/obj/item/material/utensil/foon/plastic, -/obj/item/material/rollingpin, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/closet/walllocker/secure_closet{ - pixel_y = -24; - req_access = list("ACCESS_SECURITY") - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"aRD" = ( -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/floor_decal/corner/green/border, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"aRE" = ( -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/orange/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"aRF" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"aRH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"aRR" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/closet/crate, -/obj/random/tank, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"aSf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"aSg" = ( -/obj/structure/closet/firecloset, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/storage/briefcase/inflatable, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"aSj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Chief Medical Officer"; - sort_type = "Chief Medical Officer" - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"aSu" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"aSx" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"aSG" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/sierra/hallway) -"aSH" = ( -/turf/simulated/wall/prepainted, -/area/assembly/robotics) -"aSV" = ( -/obj/random/trash, -/obj/random/toolbox, -/obj/item/beartrap, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"aSX" = ( -/turf/simulated/wall/r_wall/hull, -/area/vacant/prototype/engine) -"aSY" = ( -/obj/structure/towel/fitness, -/obj/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"aTa" = ( -/obj/machinery/atmospherics/unary/vent_pump/tank{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "co2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"aTd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/navbeacon/sierra/TD_fore3, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/blue/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/blue/bordercorner2, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"aTf" = ( -/obj/item/storage/secure/safe{ - pixel_y = 32 - }, -/turf/simulated/floor/wood/yew, -/area/crew_quarters/heads/office/ce/cobed) -"aTh" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/open, -/area/space) -"aTm" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"aTn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"aTp" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"aTq" = ( -/obj/floor_decal/corner/grey{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"aTv" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/adherent_pylon, -/turf/simulated/floor/crystal, -/area/crew_quarters/adherent) -"aTE" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"aTI" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_crit1"; - name = "Infirmary Staging Shutters" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"aTK" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/locker) -"aTL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/rack, -/obj/structure/railing/mapped, -/obj/item/bodybag, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"aTM" = ( -/obj/floor_decal/industrial/warning/cee, -/obj/machinery/airlock_sensor{ - id_tag = "sd_starboard_sensor"; - master_tag = "sd_starboard"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "sd_starboard_pump" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"aUd" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/shuttlefuel) -"aUf" = ( -/obj/structure/railing/mapped, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"aUh" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"aUj" = ( -/obj/paint_stripe/turquoise, -/obj/paint/black, -/turf/simulated/wall/r_wall/prepainted, -/area/turret_protected/ai_maint) -"aUm" = ( -/obj/structure/table/woodentable_reinforced/mahogany/walnut, -/obj/floor_decal/spline/fancy/black, -/obj/item/flame/candle, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"aUp" = ( -/obj/machinery/button/blast_door{ - id_tag = "ai_upload_blast"; - name = "Cyborg Upload Blast Doors"; - pixel_y = 24; - req_access = list("ACCESS_AI_UPLOAD") - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"aUt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"aUy" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/yellow, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"aUF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hydroponics) -"aUN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"aUP" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/fourthdeck/central_stairwell) -"aUU" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/airlock) -"aUX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/button/alternate/door/bolts{ - dir = 1; - id_tag = "toilet_eng_1"; - name = "Lock"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head/deck3) -"aVb" = ( -/obj/item/inflatable_duck{ - name = "Chief of Astronavigation" - }, -/obj/item/device/radio/off, -/obj/item/clothing/head/soft/solgov/fleet{ - pixel_x = -8; - pixel_y = 5 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"aVe" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"aVf" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/random_multi/single_item/space_rabbit, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/port) -"aVj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"aVn" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/sign/warning/fire{ - pixel_y = 32 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "incinerator_access_control"; - name = "Incinerator airlock control"; - pixel_x = -24; - pixel_y = -8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/incinerator) -"aVq" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"aVs" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"aVI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"aVL" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/port) -"aVO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"aVQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"aVS" = ( -/obj/structure/table/rack, -/obj/item/aiModule/asimov, -/obj/item/aiModule/paladin, -/obj/item/aiModule/robocop, -/obj/item/aiModule/solgov_aggressive, -/obj/item/aiModule/solgov, -/obj/item/aiModule/freeformcore, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - autoset_access = 0; - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Core Modules"; - req_access = list("ACCESS_CAPTAIN") - }, -/obj/floor_decal/industrial/outline/green, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"aVZ" = ( -/obj/machinery/space_heater, -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"aWb" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/nano) -"aWk" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/sleep/cryo/firstdeck) -"aWr" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"aWu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"aWD" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"aWI" = ( -/obj/structure/stairs/west, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"aWQ" = ( -/obj/machinery/atmospherics/unary/engine{ - dir = 8 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1starboard) -"aWS" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "bsa" - }, -/obj/floor_decal/corner/black/full, -/turf/simulated/floor/tiled/dark, -/area/command/bsa) -"aWX" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/tech_loot, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"aXc" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/red/bordercorner2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"aXe" = ( -/obj/floor_decal/corner/paleblue/full, -/obj/structure/flora/pottedplant/minitree, -/obj/machinery/light_switch{ - dir = 4; - on = 1; - pixel_x = -25 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/cmo/cobed) -"aXh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/random/single/color/cable_coil, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"aXj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"aXo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"aXq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftport) -"aXz" = ( -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/abandoned_hydroponics) -"aXB" = ( -/obj/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/floor_decal/corner/lime/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"aXK" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/obj/structure/closet/hydrant{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"aXM" = ( -/obj/structure/table/rack/dark, -/obj/item/stack/medical/splint, -/obj/item/stack/medical/splint, -/obj/item/stack/medical/splint, -/obj/item/stack/medical/splint, -/obj/item/stack/medical/advanced/bruise_pack{ - pixel_x = -7; - pixel_y = -6 - }, -/obj/item/stack/medical/advanced/bruise_pack{ - pixel_x = -7 - }, -/obj/item/stack/medical/advanced/bruise_pack{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/stack/medical/advanced/ointment{ - pixel_x = 7; - pixel_y = -6 - }, -/obj/item/stack/medical/advanced/ointment{ - pixel_x = 7 - }, -/obj/item/stack/medical/advanced/ointment{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/storage/firstaid/surgery, -/obj/item/bodybag/rescue/loaded, -/obj/item/bodybag/rescue/loaded, -/obj/item/defibrillator, -/obj/floor_decal/spline/plain/paleblue{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"aXS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"aXW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"aYb" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/sign/deck/second{ - dir = 8; - pixel_x = 32; - pixel_y = 32 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/emcloset/anchored, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/aft_stairwell) -"aYe" = ( -/obj/shuttle_landmark/skipjack/deck2, -/turf/space, -/area/space) -"aYp" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/galley) -"aYv" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"aYw" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/table/woodentable/maple, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{ - pixel_y = 7; - pixel_x = -4 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{ - pixel_x = 5 - }, -/obj/item/reagent_containers/food/condiment/small/packet/sugar{ - pixel_y = 2; - pixel_x = -12 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"aYx" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"aYy" = ( -/obj/structure/bed/chair/padded/purple{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercee{ - dir = 4 - }, -/obj/floor_decal/industrial/traffic/corner{ - detail_color = "#a2819e"; - color = "#a2819e"; - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/office) -"aYz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"aYA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/airlock_sensor/airlock_interior{ - frequency = 1331; - id_tag = "guppy_shuttle_interior_sensor"; - master_tag = "guppy_shuttle"; - name = "interior access button"; - pixel_x = -22; - pixel_y = 32; - req_access = list("ACCESS_GUPPY") - }, -/turf/simulated/floor/tiled, -/area/guppy_hangar/start) -"aYE" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"aYH" = ( -/obj/structure/closet/secure_closet/chemical_sierra, -/obj/item/hand_labeler{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/clothing/glasses/science, -/obj/item/reagent_containers/dropper{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/stack/material/phoron{ - amount = 5 - }, -/obj/floor_decal/corner/beige/three_quarters, -/obj/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"aYJ" = ( -/obj/machinery/computer/rdconsole/core{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/development) -"aYR" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/center) -"aYW" = ( -/obj/machinery/computer/modular/preset/civilian{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/quartermaster/hangar/upper) -"aYX" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"aZj" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"aZC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"aZJ" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"aZX" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"bal" = ( -/obj/structure/bed/chair/office/comfy/teal{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/half{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"baB" = ( -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/industrial/danger/corner, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"baE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"baF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/undies_wardrobe, -/obj/floor_decal/carpet/red{ - dir = 8 - }, -/obj/floor_decal/carpet/red, -/obj/floor_decal/carpet/red{ - dir = 10 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/iaa/cobed) -"baI" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/flora/pottedplant/decorative, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -9; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"baK" = ( -/obj/structure/bed/chair/office/comfy/red, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"baT" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/corner/black/mono, -/obj/item/storage/box/cola/sodawater, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"baW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/machinery/meter, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"bbd" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d1starboard) -"bbg" = ( -/obj/machinery/vending/cigarette, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/office) -"bbh" = ( -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar) -"bbq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 9 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"bby" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"bbD" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/space_heater, -/obj/machinery/camera/network/mining{ - dir = 1; - c_tag = "Mining - Warehouse" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition/storage) -"bbI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"bbO" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch{ - id_tag = "tox_airlock_interior" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/rnd/toxins) -"bbV" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/cobed) -"bbX" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_east = 1; - tag_north = 8; - tag_south = 2 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"bbZ" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/woodentable/walnut, -/obj/item/towel/random, -/obj/item/towel/random, -/obj/item/towel/random, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"bca" = ( -/obj/structure/bed/chair/wood/maple{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"bce" = ( -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/office) -"bci" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"bck" = ( -/obj/structure/table/rack, -/obj/item/stock_parts/power/apc/buildable, -/obj/item/stock_parts/power/apc/buildable, -/obj/item/stock_parts/power/apc/buildable, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/keyboard, -/obj/item/stock_parts/keyboard, -/obj/item/stock_parts/keyboard, -/turf/simulated/floor/tiled/steel_ridged, -/area/tcommsat/storage) -"bcs" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/full, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/iaa) -"bcu" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"bcv" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"bcy" = ( -/obj/structure/window/basic, -/obj/machinery/door/window{ - autoset_access = 0; - dir = 8 - }, -/obj/structure/curtain/open/privacy, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/item/stool/padded, -/obj/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"bcI" = ( -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"bcJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/actor/stage) -"bcK" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/cell/high, -/obj/item/device/multitool, -/obj/item/stack/cable_coil, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"bcL" = ( -/turf/simulated/open, -/area/rnd/research) -"bcP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/space_heater, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/hangar_atmos) -"bcV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/ce/cobed) -"bcY" = ( -/obj/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"bda" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"bdj" = ( -/obj/floor_decal/carpet/blue{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/carpet/blue{ - dir = 10 - }, -/obj/floor_decal/carpet/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/floor_decal/carpet/blue{ - dir = 10 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/captain) -"bdv" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/floor_decal/techfloor/corner, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/docking) -"bdw" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/vacant/monitoring) -"bdy" = ( -/obj/machinery/mass_driver{ - id_tag = "chapel"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/chapel/main) -"bdz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"bdA" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod3/station) -"bdI" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/assembly/office) -"bdQ" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"bdT" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/abandoned_hydroponics) -"beb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"bed" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"bek" = ( -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/random/obstruction, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"bel" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"beq" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"bes" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"beu" = ( -/obj/structure/hygiene/drain/bath, -/obj/structure/hygiene/shower{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head) -"bev" = ( -/obj/machinery/vending/medical/sierra{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/staging) -"beA" = ( -/obj/structure/bed/chair/office/comfy/brown{ - dir = 1 - }, -/obj/landmark/start{ - name = "Councelor" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"beC" = ( -/obj/machinery/door/airlock/hatch/maintenance{ - autoset_access = 0; - dir = 4; - name = "Third Deck Port Nacelle"; - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"beJ" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/item/reagent_containers/glass/beaker/vial, -/obj/item/clothing/glasses/science, -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"beN" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"beQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/storage/airlock_canisters) -"beV" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"bfp" = ( -/obj/structure/closet/l3closet/scientist, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry2) -"bfq" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"bfG" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"bfH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"bfI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"bfL" = ( -/obj/structure/cable, -/obj/machinery/power/apc/critical{ - name = "south bump"; - pixel_y = -21 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/solar/bridge_port) -"bfR" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"bfS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"bfT" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"bgh" = ( -/obj/structure/table/rack, -/obj/random/tech_supply, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"bgl" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"bgn" = ( -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"bgp" = ( -/obj/structure/bed/sofa/r/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"bgw" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"bgx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3port) -"bgD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"bgG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"bgK" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/docking) -"bgP" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"bgZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/sleep/bunk) -"bhb" = ( -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"bhg" = ( -/obj/machinery/atmospherics/tvalve{ - dir = 1; - icon_state = "map_tvalve1"; - state = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/atmos) -"bhi" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"bhA" = ( -/obj/structure/table/steel, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"bhB" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/table/woodentable/walnut, -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"bhO" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id_tag = "hangar_ts_shutters"; - name = "Hangar Deck Hallway Shutters"; - opacity = 0 - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown3_4" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"bhT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"bia" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"bib" = ( -/obj/structure/railing/mapped, -/obj/floor_decal/corner/green/three_quarters{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bie" = ( -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/maintenance/bridgedeck/starboard) -"bih" = ( -/obj/machinery/disposal, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/development) -"bii" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"bij" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/equipment) -"bin" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/filingcabinet, -/obj/item/folder/white, -/obj/item/folder/blue, -/obj/item/folder/red, -/obj/item/folder/yellow, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"biw" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/obj/structure/catwalk, -/turf/simulated/open, -/area/space) -"biE" = ( -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"biG" = ( -/obj/structure/bed/chair/padded/purple{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/entry) -"biJ" = ( -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/corner/black/three_quarters, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"biK" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/bordercorner2, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"biR" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"biZ" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"bjd" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/junkfood, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"bje" = ( -/obj/structure/bookcase/manuals/xenoarchaeology, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"bjf" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/item/hand_labeler, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"bjg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"bjo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"bjq" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/engineering{ - name = "Quick Access Warehouse" - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "eng_lockdown"; - name = "Engineering Lockdown" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"bjs" = ( -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/hydroponics) -"bjB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lightgrey/border, -/obj/machinery/button/blast_door{ - dir = 1; - id_tag = "portaux_warehouse"; - name = "Warehouse Shutters Control"; - pixel_y = -25; - req_access = list("ACCESS_CARGO") - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lightgrey/bordercorner2, -/obj/machinery/camera/network/fourth_deck{ - dir = 1; - c_tag = "Fourth Deck - Fore Hallway Port" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"bjD" = ( -/obj/floor_decal/corner/black/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/black/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"bjG" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d3starboard) -"bjI" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch{ - frequency = 1379; - id_tag = "engine_airlock_outer"; - name = "Engine Airlock Exterior" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_monitoring) -"bjJ" = ( -/obj/floor_decal/corner/red, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"bjR" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d1port) -"bjU" = ( -/obj/machinery/light/spot, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft_stairwell) -"bjY" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/decal/cleanable/cobweb2, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"bka" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"bkg" = ( -/obj/floor_decal/industrial/warning, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"bkh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/catwalk_plated/dark, -/obj/structure/disposalpipe/junction/mirrored{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/hallway) -"bkj" = ( -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/fuelbay) -"bkz" = ( -/obj/floor_decal/corner/black/full, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"bkN" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/black/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/bed/chair/office/comfy/blue{ - dir = 1 - }, -/obj/landmark/start{ - name = "Internal Affairs Agent" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/iaa/cobed) -"bkO" = ( -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/dungeon_master_lounge) -"bkQ" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"bkT" = ( -/obj/floor_decal/carpet/blue, -/obj/floor_decal/carpet/blue{ - dir = 4 - }, -/obj/floor_decal/carpet/blue{ - dir = 6 - }, -/obj/structure/window/reinforced, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/modular_computer/laptop/preset/custom_loadout/advanced{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa) -"bkU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"bld" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tcommsat/storage) -"bli" = ( -/obj/machinery/computer/ship/helm, -/obj/machinery/button/blast_door{ - id_tag = "calypso_shutters"; - name = "Protective Shutters Control"; - pixel_x = 7; - pixel_y = 34 - }, -/obj/machinery/button/blast_door{ - id_tag = "sensor_shutters"; - name = "Protective Sensor Control"; - pixel_x = -6; - pixel_y = 34 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/blast_door{ - id_tag = "cockpit_shutters"; - name = "Protective Cockpit Control"; - pixel_x = -6; - pixel_y = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cockpit) -"blw" = ( -/obj/structure/largecrate, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"blA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"blD" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/turf/simulated/floor, -/area/quartermaster/hangar) -"blG" = ( -/obj/structure/bed/chair/padded/teal{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/maintenance_equipstorage) -"blM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 - }, -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"bmc" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -21; - pixel_y = -10 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/light, -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/heads/office/rd) -"bmi" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/office) -"bmk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/monitoring) -"bml" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/item/tank/oxygen_emergency_double, -/obj/item/tank/oxygen_yellow, -/obj/item/tank/oxygen_yellow, -/obj/item/tank/jetpack, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"bmr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"bmB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"bmG" = ( -/obj/structure/bed/chair/padded/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"bmK" = ( -/obj/paint_stripe/red, -/obj/paint/red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod1/station) -"bne" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/space, -/area/space) -"bnf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"bni" = ( -/obj/machinery/disposal, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"bnr" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "fd_starboard_pump" - }, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"bnt" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"bny" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"bnz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"bnI" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"bnQ" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/office) -"boa" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"bon" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/machinery/washing_machine, -/obj/machinery/light_switch{ - pixel_x = -21; - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/breakroom) -"boo" = ( -/obj/structure/railing/mapped, -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"bop" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/machinery/vending/coffee{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"boz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft) -"boM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"boN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/floor_decal/corner/purple, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/storage2) -"boO" = ( -/obj/structure/inflatable/wall, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"boS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"boT" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"bpD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"bpK" = ( -/obj/structure/table/standard, -/obj/item/towel/random, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/random/soap, -/obj/item/lipstick/random{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/breakroom) -"bpR" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ - id_tag = "engine_airlock"; - name = "Engine Room Airlock Controlls"; - pixel_y = 24; - req_access = list("ACCESS_ENGINE_EQUIP"); - tag_exterior_door = "engine_airlock_outer"; - tag_chamber_sensor = "engine_airlock_sensor"; - tag_interior_door = "engine_airlock_inner"; - tag_interior_sensor = "engine_airlock_sensor_in"; - tag_exterior_sensor = "engine_airlock_sensor_out"; - tag_airpump = "engine_airlock_pump" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/airlock_sensor/airlock_interior{ - id_tag = "engine_airlock_sensor_in"; - pixel_y = 26; - pixel_x = 11 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"bpU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/highsecurity{ - name = "Obstruction Field Disperser" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/command/bsa) -"bpY" = ( -/obj/structure/table/rack, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/item/stack/material/plasteel/fifty, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"bqj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/command/chief_steward) -"bqn" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/r_wall, -/area/maintenance/compactor) -"bqo" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/civilian{ - name = "Central Stairwell" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/central_stairwell) -"bqr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown3_3" - }, -/obj/machinery/door/airlock/glass/civilian{ - dir = 4; - autoset_access = 0 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/center) -"bqs" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"bqv" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/corner/blue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/account_database{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/heads/office/hop) -"bqA" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bqD" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/heads/office/hos/cobed) -"bqG" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "firing_range_outer"; - name = "Firing Range Airlock" - }, -/obj/machinery/access_button/airlock_exterior{ - desc = "Security access required."; - dir = 4; - master_tag = "firing_range"; - name = "exterior access button"; - pixel_x = -10; - pixel_y = 24; - req_access = list("ACCESS_EXTERNAL","ACCESS_SECURITY") - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"bqI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"bqJ" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp/green, -/obj/decal/cleanable/dirt, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"bqL" = ( -/obj/machinery/radio_beacon, -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/guppy_hangar/start) -"bqN" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/obj/machinery/power/apc/super/critical{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"bqO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"bqS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"bqW" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"bqX" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/corner/green, -/turf/simulated/floor/tiled, -/area/hydroponics) -"brh" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light/spot, -/obj/machinery/portable_atmospherics/canister/hydrogen{ - start_pressure = 14999 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"brq" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"brx" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/item/folder/blue, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"brA" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"brB" = ( -/obj/floor_decal/corner/darkblue, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"brE" = ( -/obj/random/trash, -/turf/simulated/floor/wood/walnut, -/area/maintenance/firstdeck/aftstarboard) -"brF" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod2/station) -"brG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"brI" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/material/ashtray/bronze, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"brU" = ( -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d3port) -"brW" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"bso" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"bsB" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "toxin_lab_access"; - name = "Toxin Lab Access Console"; - pixel_y = 24; - req_access = list("ACCESS_TOX_STORAGE") - }, -/obj/machinery/vending/phoronresearch, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"bsH" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"bsO" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - target_pressure = 200 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"bsQ" = ( -/obj/structure/morgue{ - dir = 2 - }, -/obj/floor_decal/industrial/outline/blue, -/obj/structure/closet/walllocker{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"bsR" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"bsS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs) -"bsU" = ( -/obj/machinery/shieldwallgen, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"bsV" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 4; - id_tag = "td_fore_starboard_pump" - }, -/obj/floor_decal/industrial/warning/cee, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"bsZ" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/firstdeck/forestarboard) -"btb" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped, -/obj/random/maintenance, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"btc" = ( -/obj/paint/red, -/obj/paint_stripe/red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod5/station) -"btf" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"btn" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs) -"bts" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Fore Hallway Port"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"btB" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/bed/chair/office/comfy/blue{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/hop/cobed) -"btE" = ( -/obj/floor_decal/corner/purple/three_quarters{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"btF" = ( -/obj/structure/closet/cabinet, -/obj/item/book/manual/engineering_singularity_safety, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/ce/cobed) -"btP" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"btR" = ( -/obj/structure/catwalk, -/obj/machinery/shieldwallgen, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"btU" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"btX" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/titanium, -/area/guppy_hangar/start) -"bua" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - name = "Third Deck Port Airlock Access"; - id_tag = "td_port_outer" - }, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"buf" = ( -/obj/structure/window/basic{ - dir = 8 - }, -/obj/machinery/vending/fitness, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/corner/black/three_quarters{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"buq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external/bolted/cycling{ - frequency = 1380; - id_tag = "specops_dock_inner"; - name = "Docking Port Airlock" - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"buC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"buM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"buN" = ( -/obj/structure/hygiene/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/item/storage/mirror{ - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"buO" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs) -"buQ" = ( -/obj/machinery/power/smes/buildable/preset/sierra/hangar{ - RCon_tag = "Substation - Hangar" - }, -/obj/structure/cable/cyan, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/fourthdeck) -"buV" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"buY" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 8; - pixel_x = 14 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"buZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/rotating_alarm/supermatter{ - dir = 8; - pixel_x = 14 - }, -/obj/machinery/airlock_sensor/airlock_exterior{ - id_tag = "engine_airlock_sensor_out"; - pixel_y = 8; - pixel_x = 25 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"bva" = ( -/obj/floor_decal/corner/yellow/three_quarters{ - dir = 8 - }, -/obj/structure/closet/secure_closet/quartermaster_sierra, -/obj/item/device/eftpos{ - eftpos_name = "Quartermaster EFTPOS scanner" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"bvn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"bvp" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"bvt" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"bvw" = ( -/obj/decal/cleanable/blood, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/foreport) -"bvA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/canister) -"bvC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals_central6, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"bvK" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green, -/obj/machinery/power/terminal, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/servers) -"bvN" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/constructable_frame/computerframe, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"bvW" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/machinery/atm{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"bwb" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "solar_starboard_outer"; - name = "Engineering External Access" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar/starboard) -"bwe" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"bwg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"bwn" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/item/cell/high, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Materials Storage"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"bwo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/aftport) -"bwp" = ( -/obj/structure/closet/crate, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/spline/plain/black{ - dir = 9 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"bwr" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/brig) -"bwv" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/thirddeck/fore) -"bwx" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod4/station) -"bwJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"bwM" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/simulated/open, -/area/crew_quarters/lounge/upper) -"bwQ" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/corner/green/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/blast/regular/open{ - id_tag = "vir_blast_enter"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology) -"bwS" = ( -/obj/machinery/atmospherics/unary/tank/air{ - dir = 8 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"bwW" = ( -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"bxa" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_1_berth_hatch"; - name = "Escape Pod One" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/center) -"bxb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"bxd" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 8 - }, -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"bxl" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/bridge_deck{ - dir = 8; - c_tag = "Bridge Deck - Central Stairwell" - }, -/obj/machinery/atm{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"bxn" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"bxo" = ( -/turf/simulated/wall/prepainted, -/area/vacant/sauna) -"bxp" = ( -/obj/floor_decal/corner/grey/full, -/obj/machinery/media/music_writer{ - pixel_x = -32 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"bxy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"bxD" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green, -/obj/machinery/meter, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"bxG" = ( -/obj/structure/table/standard, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/scanner/spectrometer/adv, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/bodybag/cryobag, -/turf/simulated/floor/tiled/white, -/area/medical/staging) -"bxH" = ( -/obj/decal/cleanable/dirt, -/obj/item/ore/iron, -/obj/structure/cable/cyan, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"bxO" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/valve/digital{ - name = "Internal connector to thrusters" - }, -/turf/simulated/floor/plating, -/area/exploration_shuttle/power) -"bxP" = ( -/obj/structure/table/rack, -/obj/item/storage/box/lights/mixed, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"bxQ" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/head) -"bxS" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/hangar_atmos) -"bxZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"byc" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"byf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"byi" = ( -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - dir = 1; - color = "#8c911d" - }, -/obj/structure/railing/mapped{ - dir = 8; - init_color = "#8c911d"; - color = "#8c911d" - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"byr" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/monotile, -/area/security/brig) -"byA" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"byK" = ( -/obj/structure/dispenser/oxygen, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"byL" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"byQ" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 10 - }, -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_x = -24; - dir = 4 - }, -/obj/structure/table/steel, -/obj/item/storage/firstaid/regular, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/roller_bed, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"byW" = ( -/turf/simulated/wall/prepainted, -/area/rnd/xenobiology/level1) -"byY" = ( -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"bzb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"bzg" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/vacant/gambling) -"bzi" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/paint_stripe/red, -/obj/wallframe_spawn/reinforced/polarized{ - id = "hos_windows" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/hos) -"bzm" = ( -/obj/floor_decal/corner/darkblue/full, -/obj/floor_decal/corner/black/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"bzt" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"bzw" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"bzA" = ( -/obj/paint/black, -/obj/paint{ - color = "#353a42" - }, -/turf/simulated/wall/ocp_wall, -/area/rnd/toxins) -"bzD" = ( -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"bzE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 9 - }, -/obj/floor_decal/industrial/danger{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/command/bsa) -"bzF" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"bzH" = ( -/obj/machinery/power/apc/super/critical{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/cyan, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"bzN" = ( -/obj/structure/lattice, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"bzP" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/floor_decal/industrial/outline/grey, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit/miniature, -/obj/item/device/suit_cooling_unit/miniature, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"bAm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"bAr" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"bAs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"bAt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access = list("ACCESS_SEC_DOORS"); - autoset_access = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"bAu" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation) -"bAw" = ( -/obj/structure/catwalk, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/open, -/area/space) -"bAx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Chief Engineer"; - sort_type = "Chief Engineer" - }, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"bAz" = ( -/obj/floor_decal/industrial/danger{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"bAC" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/foreport) -"bAD" = ( -/obj/structure/catwalk, -/obj/structure/ladder/up, -/turf/simulated/open, -/area/space) -"bAE" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/corner/green/half, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"bAL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/wall/r_wall/prepainted, -/area/vacant/gambling) -"bAO" = ( -/obj/structure/closet/crate/freezer, -/obj/item/bodybag/rescue/loaded, -/obj/item/bodybag/rescue/loaded, -/obj/random/firstaid, -/obj/random/firstaid, -/obj/random/medical, -/obj/random/medical, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"bAX" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table/rack, -/obj/item/rig/command/captain/equipped, -/obj/item/clothing/mask/gas/half, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"bAZ" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/machinery/camera/network/research{ - c_tag = "Research - Toxins Chamber Control"; - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/rnd/toxins) -"bBa" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/obj/machinery/camera/network/command{ - c_tag = "Command - Port Bridge Entry"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"bBf" = ( -/obj/structure/railing/mapped, -/obj/floor_decal/spline/plain/black{ - dir = 10 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"bBp" = ( -/obj/structure/closet/secure_closet/medical_sierrasenior, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"bBr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"bBv" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"bBL" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/rnd/entry) -"bBQ" = ( -/obj/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"bBS" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"bBT" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/glass/security{ - name = "Suits Storage" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/suits) -"bBU" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/floor_decal/corner/green/half{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"bCj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"bCk" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/open, -/area/solar/port) -"bCl" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"bCq" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/no_grille, -/turf/simulated/floor/plating, -/area/quartermaster/hangar/upper) -"bCu" = ( -/obj/paint/hull, -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/turf/simulated/wall/ocp_wall, -/area/vacant/prototype/engine) -"bCN" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"bCP" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/structure/cable{ - d1 = 32; - d2 = 2; - icon_state = "32-2" - }, -/obj/structure/lattice, -/obj/structure/disposalpipe/down{ - dir = 2 - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/bridgedeck/port) -"bCU" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/expedition/eva) -"bCV" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/space, -/area/space) -"bDc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"bDm" = ( -/obj/structure/table/woodentable_reinforced/ebony, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/corner/black/mono, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/hos/cobed) -"bDn" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/waterstore) -"bDp" = ( -/obj/floor_decal/corner/grey{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/computer/air_control{ - input_tag = "CO24p_in"; - name = "Propellent Supply Control"; - output_tag = "CO24p_out"; - sensor_name = "Tank"; - sensor_tag = "ReacEngCO24" - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"bDs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"bDA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"bDC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"bDH" = ( -/obj/machinery/stasis_cage, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"bDI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft_stairwell) -"bDK" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"bDU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/button/blast_door{ - id_tag = "xenobioa1"; - name = "Containment Blast Doors"; - pixel_x = -6; - pixel_y = 21; - req_access = list("ACCESS_RESEARCH") - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"bDX" = ( -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"bEf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"bEl" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/spline/fancy/black/corner, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/spline/fancy/black, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bEn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"bEp" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"bEx" = ( -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/armory/lobby) -"bEB" = ( -/obj/random/closet, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftport) -"bEG" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = list(list("ACCESS_SECURITY","ACCESS_FORENSICS")); - secured_wires = 1; - autoset_access = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/security/sierra/dockcheck) -"bEM" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/wall/prepainted, -/area/crew_quarters/galley) -"bEP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"bEV" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_north = 1; - tag_south = 2; - tag_west = 3 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"bEX" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/material/ashtray/bronze, -/obj/random/smokes, -/obj/machinery/camera/network/second_deck{ - c_tag = "Actors - Stage"; - dir = 1 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor/stage) -"bFd" = ( -/obj/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/vacant/sauna) -"bFf" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 1; - id_tag = "petrov_shuttle_pump" - }, -/obj/floor_decal/techfloor, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/petrov/airlock) -"bFk" = ( -/obj/structure/bed/chair/office/green{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"bFm" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/item/device/flashlight/lamp{ - pixel_y = 14; - pixel_x = -5 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"bFp" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/dress, -/obj/item/clothing/shoes/dress, -/obj/item/clothing/shoes/dress, -/obj/item/clothing/shoes/dress, -/obj/item/clothing/under/suit_jacket/charcoal, -/obj/item/clothing/under/suit_jacket/charcoal, -/obj/item/clothing/under/suit_jacket/charcoal, -/obj/item/clothing/under/suit_jacket/charcoal, -/obj/item/clothing/gloves/white, -/obj/item/clothing/gloves/white, -/obj/item/clothing/gloves/white, -/obj/item/clothing/gloves/white, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"bFr" = ( -/obj/floor_decal/spline/plain/black{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"bFt" = ( -/obj/floor_decal/chapel{ - dir = 8 - }, -/obj/structure/bed/chair/pew/mahogany, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"bFA" = ( -/obj/machinery/status_display, -/turf/simulated/wall/prepainted, -/area/hallway/primary/fourthdeck/central_stairwell) -"bFE" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"bFP" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"bFR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"bFT" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"bFX" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/green/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics/third_deck_storage) -"bFZ" = ( -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/rd/cobed) -"bGa" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4; - target_pressure = 200 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/solar/bridge_port) -"bGt" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"bGu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft) -"bGv" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/bed/chair/padded/red{ - dir = 4 - }, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"bGx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"bGC" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"bGK" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"bGO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/item/stack/material/steel/ten, -/obj/item/stack/material/steel/ten, -/obj/item/device/science_tool, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"bGP" = ( -/obj/floor_decal/borderfloor, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"bGR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d1starboard) -"bGS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"bGZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"bHa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/floor_decal/corner/blue/border{ - dir = 6 - }, -/obj/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/obj/structure/closet/secure_closet/white_sierra{ - name = "secure evidence locker" - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/forensic/lab) -"bHf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/catwalk_plated/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/hallway) -"bHl" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"bHq" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/waterstore) -"bHs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 9 - }, -/turf/simulated/wall/r_wall/hull, -/area/space) -"bHt" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"bHJ" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"bHS" = ( -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"bIg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod3/station) -"bIo" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"bIy" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/decal/cleanable/dirt, -/obj/machinery/status_light{ - id_tag = "ReacEng2"; - name = "Fourth Deck Port status indicator"; - pixel_x = -8; - pixel_y = 25 - }, -/obj/machinery/status_light{ - id_tag = "ReacEng4"; - name = "First Deck Port status indicator"; - pixel_x = -8; - pixel_y = 34 - }, -/obj/machinery/status_light{ - id_tag = "ReacEng3"; - name = "First Deck Starboard status indicator"; - pixel_x = 8; - pixel_y = 34 - }, -/obj/machinery/status_light{ - id_tag = "ReacEng1"; - name = "Fourth Deck Starboard status indicator"; - pixel_x = 8; - pixel_y = 25 - }, -/turf/simulated/floor/plating, -/area/engineering/fuelbay) -"bIO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/starboard) -"bIP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloorblack, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"bIS" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"bIT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/maintenance/abandoned_hydroponics) -"bIW" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"bJb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"bJf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/hangar) -"bJj" = ( -/obj/machinery/atmospherics/unary/tank/air, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"bJm" = ( -/obj/floor_decal/corner/darkblue{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/half{ - dir = 4 - }, -/obj/random/vendor{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"bJw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"bJA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external/glass/bolted/cycling{ - frequency = 1380; - id_tag = "skipjack_shuttle_dock_airlock_inner"; - name = "Docking Port Airlock" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"bJB" = ( -/obj/structure/table/standard, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/recharger, -/obj/machinery/camera/network/command{ - c_tag = "Command - Cyborg Upload"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_cyborg_upload) -"bJC" = ( -/obj/floor_decal/techfloor, -/obj/machinery/light, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/machine/jukebox_custom, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"bJI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"bJJ" = ( -/obj/structure/table/standard, -/obj/item/clothing/shoes/swimmingfins, -/obj/item/clothing/shoes/swimmingfins, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level2) -"bJM" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar/upper) -"bJP" = ( -/obj/machinery/constructable_frame/machine_frame, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"bJT" = ( -/obj/structure/catwalk, -/turf/simulated/open, -/area/rnd/xenobiology/water_cell) -"bKc" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"bKi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"bKj" = ( -/obj/machinery/light, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"bKp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/forensic/lab) -"bKt" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/item/tank/oxygen_yellow, -/turf/simulated/floor/plating, -/area/vacant/cargo) -"bKy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "solar_port"; - name = "interior access button"; - pixel_x = 12; - pixel_y = -19; - req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"bKC" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bKF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/compactor) -"bKH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/table/standard, -/obj/item/book/manual/hydroponics_pod_people, -/obj/item/material/minihoe, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bKK" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/storage/box/donut, -/obj/machinery/recharger, -/obj/machinery/button/windowtint{ - dir = 4; - id = "forensicswindow"; - pixel_x = -22 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Detectives - Office"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"bKP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/random/soap, -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"bKT" = ( -/obj/floor_decal/borderfloorwhite, -/obj/floor_decal/corner/blue/border, -/obj/machinery/light, -/obj/machinery/computer/modular/preset/security{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/forensic/lab) -"bKY" = ( -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/closet/walllocker{ - pixel_x = 28 - }, -/obj/item/storage/box/latexgloves, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/armory) -"bLk" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/industrial/danger{ - dir = 6 - }, -/obj/machinery/vending/sol, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"bLn" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"bLr" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 10 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/storage2) -"bLw" = ( -/obj/floor_decal/carpet, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/crew_quarters/cafe/upper) -"bLy" = ( -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"bLB" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/reinforced, -/area/turret_protected/ai_teleport) -"bLD" = ( -/obj/machinery/photocopier, -/obj/floor_decal/corner/research/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/office) -"bLR" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/folder/blue, -/obj/item/stamp/captain, -/obj/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"bLS" = ( -/obj/structure/bed/chair/comfy/purple{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sleep/bunk) -"bLT" = ( -/obj/machinery/atmospherics/unary/vent_pump/tank{ - external_pressure_bound = 0; - external_pressure_bound_default = 0; - id_tag = "test_xenoflora_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/xenoflora) -"bLU" = ( -/obj/item/beach_ball, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"bLZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red, -/obj/structure/railing/mapped, -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"bMl" = ( -/obj/structure/closet/secure_closet/security/sierra, -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"bMA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/navbeacon/sierra/FD_forehallway2, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/fore) -"bMC" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Third Deck Subgrid"; - name_tag = "Third Deck Subgrid" - }, -/obj/machinery/power/apc/critical{ - name = "north bump"; - pixel_y = 21; - dir = 1 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/substation/thirddeck) -"bMD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/machinery/keycard_auth/sierra{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/folder/blue, -/obj/floor_decal/spline/fancy/wood, -/obj/item/toy/sierramodel{ - pixel_x = 5; - pixel_y = 10 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"bMH" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"bMJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"bMV" = ( -/obj/machinery/power/smes/buildable{ - charge = 5e+006; - input_attempt = 1; - input_level = 250000; - output_attempt = 1; - output_level = 250000 - }, -/obj/structure/cable/cyan, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai) -"bMX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"bMY" = ( -/obj/structure/bed/sofa/r/brown{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/actor/stage) -"bNd" = ( -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/heads/captain/secret_room) -"bNj" = ( -/obj/structure/sign/warning/docking_area, -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/docking) -"bNl" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/closet/secure_closet/security/sierra/cadet, -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Equipment"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"bNq" = ( -/obj/machinery/portable_atmospherics/canister/helium, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins/storage) -"bNu" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"bNz" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/escape_pod/escape_pod7/station) -"bNB" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/paper_bin, -/obj/item/sticky_pad/random, -/obj/item/pen, -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"bNC" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/accessory/toggleable/hawaii/random, -/obj/random/clothing, -/obj/random/gloves, -/obj/random/glasses, -/obj/random/action_figure, -/obj/random/plushie, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/under/harness, -/obj/item/clothing/under/swimsuit/black, -/obj/item/clothing/under/shorts/black, -/obj/item/clothing/under/shorts/jeans/female, -/obj/item/clothing/under/hazard, -/obj/item/clothing/under/frontier, -/obj/item/clothing/under/blazer, -/turf/simulated/floor/wood/walnut, -/area/vacant/cargo) -"bNE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/navbeacon/sierra/TD_fore91, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Commissary"; - sort_type = "Commissary" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"bNH" = ( -/obj/structure/barricade, -/obj/machinery/door/airlock{ - name = "Abandoned Room" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/sauna) -"bNJ" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"bOd" = ( -/obj/structure/table/steel, -/obj/item/clothing/gloves/thick, -/obj/item/clothing/mask/gas/budget, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/compactor) -"bOf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"bOh" = ( -/obj/structure/table/glass, -/obj/item/storage/box/fingerprints, -/obj/item/storage/box/fingerprints, -/obj/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/floor_decal/corner/blue/border{ - dir = 10 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Detectives - Lab"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/forensic/lab) -"bOr" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/range) -"bOt" = ( -/obj/floor_decal/ntlogo{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/entry) -"bOx" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/hallway) -"bOy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall/hull, -/area/engineering/atmos/bridge) -"bOD" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/compactor) -"bOL" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"bON" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"bOZ" = ( -/obj/machinery/airlock_sensor/airlock_exterior{ - id_tag = "xenohight_airlock_exterior_sensor"; - master_tag = "xenohight_airlock"; - pixel_x = 1; - pixel_y = -24; - req_access = list("ACCESS_XENOBIO") - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/purple/border, -/obj/machinery/camera/network/research{ - c_tag = "Xenobiology - Entry"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/storage2) -"bPa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"bPb" = ( -/obj/structure/table/standard, -/obj/machinery/light/small, -/obj/item/paper/travelvisa{ - desc = "A flimsy piece of laminated cardboard issued by the Sol Central Government. It's look's damaged" - }, -/turf/simulated/floor/tiled/monotile, -/area/vacant/cargo) -"bPd" = ( -/obj/structure/ladder/up, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"bPm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"bPp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/northleft{ - dir = 2; - name = "Security Checkpoint" - }, -/obj/machinery/door/window/southleft{ - autoset_access = 0; - dir = 1; - name = "Security Checkpoint" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "hangar_checkpoint_shutters"; - name = "Hangar Deck Checkpoint Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf/steel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/sierra/dockcheck) -"bPt" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d3starboard) -"bPu" = ( -/obj/structure/closet/coffin/wooden, -/obj/floor_decal/corner/black/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"bPB" = ( -/obj/floor_decal/carpet/blue{ - dir = 8 - }, -/obj/floor_decal/carpet/blue, -/obj/floor_decal/carpet/blue{ - dir = 10 - }, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/sticky_pad/random{ - pixel_x = -6; - pixel_y = 9 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa) -"bPC" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"bPD" = ( -/obj/item/stool/padded, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"bPF" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/galley) -"bPH" = ( -/obj/structure/bookcase, -/obj/item/book/manual/military_law, -/obj/item/book/manual/nt_sop, -/obj/item/book/manual/nt_tc, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"bPX" = ( -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/floor_decal/industrial/traffic/corner{ - dir = 4 - }, -/obj/structure/cable/green, -/obj/floor_decal/corner/black/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"bQa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 - }, -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d1port) -"bQc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"bQg" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"bQm" = ( -/turf/simulated/floor/reinforced, -/area/space) -"bQn" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/wallframe_spawn/reinforced/polarized{ - id = "cap_windows" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/captain) -"bQo" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/box/cups, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"bQq" = ( -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/maintenance/firstdeck/forestarboard) -"bQy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"bQA" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"bQH" = ( -/obj/structure/closet/secure_closet/engineering_senior, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/gps, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"bQM" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft_stairwell) -"bQU" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/bridgedeck/port) -"bQW" = ( -/obj/structure/table/woodentable/mahogany, -/obj/item/storage/bible/tanakh, -/obj/item/storage/bible/aqdas, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"bQZ" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "xenobotany_access_maintaince"; - name = "Xenobotany Lab Access Console"; - req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH"); - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/xenoflora) -"bRb" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"bRc" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"bRd" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 4; - display_name = "First Deck Auxillary Dock"; - id_tag = "fd_starboard"; - name = "First Deck Starboard Airlock Controller"; - pixel_x = -20; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 4; - id_tag = "fd_starboard_pump" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"bRg" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"bRh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"bRk" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"bRm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"bRx" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bRI" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/mining, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition) -"bRN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"bRQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"bRV" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/thirddeck/starboard) -"bSd" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe) -"bSo" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"bSx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"bSE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"bSH" = ( -/obj/machinery/biogenerator, -/obj/floor_decal/corner/green/three_quarters{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "xenobotany_access"; - name = "Xenobotany Lab Access Console"; - req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH"); - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"bSJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"bST" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/alarm/warm{ - dir = 4; - pixel_x = -24; - req_access = list(); - target_temperature = 398.15; - temperature = 343.15 - }, -/obj/structure/bed/sauna_bench/middle, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sauna) -"bSU" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"bTg" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"bTs" = ( -/obj/floor_decal/industrial/traffic{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"bTH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"bTJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"bTK" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"bTN" = ( -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/hygiene/drain, -/obj/structure/hygiene/shower{ - dir = 4 - }, -/obj/machinery/door/window/eastright, -/obj/structure/curtain/open/shower, -/obj/structure/closet/walllocker{ - pixel_x = -28 - }, -/obj/item/bikehorn/rubberducky, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/breakroom) -"bTO" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/substation/seconddeck) -"bUb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"bUc" = ( -/obj/machinery/power/apc/super/critical{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"bUe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"bUh" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"bUE" = ( -/obj/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"bUM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/turret_protected/ai_teleport) -"bUO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"bUP" = ( -/obj/machinery/shieldgen, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"bUQ" = ( -/obj/floor_decal/corner/darkblue/mono, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"bUR" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 4; - id_tag = "escape_pod_1_pump" - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/grey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod1/station) -"bUX" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "xenobio4"; - name = "Containment Blast Doors" - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level1) -"bUY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/carpet/green, -/area/crew_quarters/cafe) -"bVg" = ( -/obj/floor_decal/techfloor/corner, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_upload) -"bVl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/actor) -"bVu" = ( -/obj/floor_decal/corner/black/bordercorner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"bVv" = ( -/obj/structure/closet/emcloset/anchored, -/obj/floor_decal/corner/lightgrey/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/docking) -"bVw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_cyborg_upload) -"bVA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/seconddeck/aft_stairwell) -"bVF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/sierra/evidence) -"bVO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"bVP" = ( -/obj/structure/dispenser/oxygen, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/port) -"bVR" = ( -/obj/item/contraband/poster, -/obj/item/contraband/poster, -/obj/item/contraband/poster, -/obj/item/contraband/poster, -/obj/item/device/paicard, -/obj/item/device/paicard, -/obj/random/ironing_board_item, -/obj/item/ironing_iron, -/obj/item/device/toner, -/obj/structure/closet/crate, -/obj/item/storage/box/donkpocket_mixed, -/obj/floor_decal/spline/plain/yellow, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"bWa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod4/station) -"bWf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"bWn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"bWo" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"bWr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/breakroom) -"bWy" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"bWz" = ( -/obj/item/stool/padded/red, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"bWJ" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"bWL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/padded/red{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"bWQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light/spot, -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_containers/spray/plantbgone, -/obj/floor_decal/corner/green/three_quarters, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"bWT" = ( -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bWY" = ( -/obj/floor_decal/corner/darkblue/full, -/obj/floor_decal/corner/black/half{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/slide_projector, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"bXa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"bXc" = ( -/obj/structure/railing/mapped, -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"bXg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"bXn" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/equipstorage) -"bXq" = ( -/obj/machinery/light, -/turf/simulated/floor/carpet, -/area/chapel/main) -"bXs" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood/walnut, -/area/vacant/dormintories) -"bXv" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"bXB" = ( -/turf/simulated/floor/plating, -/area/exploration_shuttle/power) -"bXC" = ( -/obj/machinery/light, -/obj/machinery/suit_cycler/medical/alt, -/obj/floor_decal/industrial/outline/green, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"bXI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/aft) -"bXJ" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/obj/structure/sign/directions/med{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"bXN" = ( -/obj/paint/hull, -/turf/simulated/wall/ocp_wall, -/area/vacant/prototype/engine) -"bXT" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/seconddeck/aftport) -"bXW" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/structure/table/woodentable/walnut, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"bXZ" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/plating, -/area/shuttle/petrov/scan) -"bYb" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "firingspace"; - name = "Firing Range Shields" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"bYl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/machinery/rotating_alarm/security_alarm{ - pixel_y = 13 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"bYu" = ( -/obj/floor_decal/corner/green/border, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"bYy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"bYC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"bYQ" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/space) -"bYU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/barrier, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"bYX" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"bZf" = ( -/obj/structure/largecrate, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"bZp" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/full{ - id = "rd_windows" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/rd) -"bZF" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/open, -/area/space) -"bZH" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/structure/sign/warning/nosmoking_1{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/canister) -"bZL" = ( -/obj/structure/sign/nanotrasen, -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/docking) -"bZR" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"bZT" = ( -/obj/machinery/button/mass_driver{ - dir = 1; - id_tag = "enginecore"; - name = "Emergency Core Eject"; - pixel_x = 4; - pixel_y = -20 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northleft{ - autoset_access = 0; - name = "emergency core eject"; - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for engine core."; - dir = 1; - id_tag = "EngineVent"; - name = "Engine Ventillatory Control"; - pixel_x = -8; - pixel_y = -20; - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/obj/machinery/button/alternate/door/bolts{ - desc = "A remote control-switch for the engine core airlock hatch bolts."; - dir = 4; - id_tag = "engine_access_hatch"; - name = "Engine Hatch Bolt Control"; - pixel_x = -22; - pixel_y = -8; - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/button/blast_door{ - desc = "A switch designed to vent all gasses from the engine room into space. Press it if there is a fire in the engine room."; - dir = 4; - id_tag = "engineroomvent"; - name = "Emergency Engine Room Vents"; - pixel_x = -22; - pixel_y = 4; - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/obj/machinery/button/blast_door{ - desc = "WARNING! Opening blast doors while reactor is operating, may cause meltdown."; - id_tag = "SupermatterDoor"; - name = "Supermatter Access Blast Doors"; - pixel_y = -8; - req_access = list("ACCESS_ENGINEERING"); - pixel_x = -32; - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"bZU" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/window/boron_reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d1port) -"bZW" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"bZZ" = ( -/obj/floor_decal/carpet/purple{ - dir = 4 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/office) -"cac" = ( -/obj/structure/bed/sofa/l/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"cae" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/fore) -"caf" = ( -/turf/simulated/floor/tiled/techmaint, -/area/storage/tech) -"cag" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"cam" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"cas" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/constructable_frame/computerframe, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"cau" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/sign/warning/pods/west{ - pixel_x = 32; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"cav" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod2/station) -"caC" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "guppy_shield_left"; - name = "Window Shield" - }, -/obj/paint_stripe/yellow, -/turf/simulated/floor/plating, -/area/guppy_hangar/start) -"caJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"caR" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "toxin_lab_access_outer"; - name = "Toxin Lab Access" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"caZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"cbd" = ( -/obj/floor_decal/corner/purple/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"cbm" = ( -/obj/structure/railing/mapped, -/obj/machinery/shieldgen, -/obj/structure/sign/warning/pods/south{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"cbr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"cbu" = ( -/obj/structure/bed/chair/shuttle/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/cockpit) -"cbw" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/closet/secure_closet/hydroponics_sierra, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/green/border{ - dir = 9 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics/third_deck_storage) -"cbC" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/substation/firstdeck) -"cbF" = ( -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"cbL" = ( -/obj/structure/bed/chair/padded/purple{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"cbO" = ( -/obj/item/clothing/suit/storage/hooded/wintercoat/engineering, -/obj/item/clothing/suit/storage/hooded/wintercoat/engineering, -/obj/structure/table/rack{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"cbR" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/structure/sign/deck/first{ - pixel_y = 35 - }, -/obj/structure/sign/directions/security{ - pixel_y = 24; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"cbV" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"ccc" = ( -/obj/structure/bed/chair/padded/purple, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"ccj" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"ccq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"ccI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"ccL" = ( -/obj/shuttle_landmark/admin/out, -/turf/space, -/area/space) -"ccN" = ( -/obj/structure/table/rack{ - pixel_x = 2 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/gun/launcher/syringe, -/obj/item/storage/box/syringegun, -/obj/item/storage/box/syringegun, -/obj/item/storage/box/syringes, -/obj/item/storage/box/syringes, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"ccO" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"ccQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"ccR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"ccS" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"cde" = ( -/obj/structure/closet/cabinet, -/obj/floor_decal/corner/red/diagonal, -/obj/decal/cleanable/flour, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"cdg" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - target_pressure = 200 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"cdk" = ( -/obj/machinery/vitals_monitor, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/structure/sign/warning/nosmoking_1{ - desc = "A warning sign which reads 'NO SMOKING'. Someone has scratched a variety of crude words in gutter across the entire sign."; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery) -"cdn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/prison) -"cdt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/hallway) -"cdw" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"cdz" = ( -/obj/floor_decal/industrial/traffic{ - dir = 8; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/office) -"cdG" = ( -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Port Hallway"; - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"cdH" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/fore) -"cdM" = ( -/obj/structure/closet/secure_closet/guncabinet/sierra_armory/egun, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory) -"cdP" = ( -/obj/floor_decal/corner/red, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"cdQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"cdU" = ( -/obj/landmark/start, -/obj/structure/bed/chair/rounded/beige{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"cem" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lantern, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftport) -"ceo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"cep" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"cex" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/cmo) -"ceA" = ( -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3starboard) -"ceF" = ( -/obj/structure/flora/ausbushes/palebush, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/grass/cut, -/area/hallway/primary/bridgedeck/center) -"ceI" = ( -/obj/floor_decal/corner/darkblue/half{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue{ - dir = 6 - }, -/obj/machinery/vending/sol{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"ceN" = ( -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#ff0000" - }, -/area/quartermaster/hangar/upper) -"ceS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 5 - }, -/obj/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/computer/air_control{ - input_tag = "fuel3p_in"; - name = "Fuel Supply Control"; - output_tag = "fuel3p_out"; - sensor_name = "Tank"; - sensor_tag = "ReacEngPlasma3" - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"ceT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - autoset_access = 0; - name = "Petrov Access"; - req_access = list("ACCESS_HANGAR") - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"ceU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"ceX" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"ceZ" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/vacant/infirmary) -"cfi" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/engine_room) -"cfk" = ( -/obj/machinery/computer/rdconsole/core{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/camera/network/command{ - c_tag = "Command - Research Director"; - dir = 1 - }, -/obj/item/storage/secure/safe{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/heads/office/rd) -"cfl" = ( -/obj/machinery/light/spot, -/obj/floor_decal/industrial/warning/fulltile, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar) -"cfm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bed/chair/office/light, -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"cfn" = ( -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"cfp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"cfs" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/floor_decal/carpet/blue{ - dir = 8 - }, -/obj/item/paper_bin, -/obj/item/pen/multi, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa) -"cfx" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/exploration/storage) -"cfK" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/floor_decal/techfloor/corner, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"cfL" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/green/border, -/obj/structure/sign/directions/engineering{ - dir = 1; - pixel_y = -8; - pixel_x = 32 - }, -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = -1; - pixel_x = 32 - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Aft Stairwell"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft_stairwell) -"cfM" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/wardhallway) -"cfP" = ( -/obj/machinery/mech_recharger, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"cfQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"cfU" = ( -/obj/machinery/power/fusion_core/mapped{ - initial_id_tag = "aux_fusion_plant" - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"cge" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/multi_tile/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftport) -"cgh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"cgj" = ( -/obj/structure/table/woodentable/maple, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"cgl" = ( -/obj/machinery/light/spot, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"cgp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"cgu" = ( -/obj/structure/closet/cabinet, -/obj/item/device/synthesized_instrument/trumpet, -/obj/item/clothing/mask/gas/sexyclown, -/obj/item/clothing/mask/gas/sexymime, -/obj/item/clothing/mask/gas/clown_hat, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor) -"cgD" = ( -/obj/structure/bed/chair/padded/teal{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/sleeper) -"cgE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/assembly/robotics) -"cgH" = ( -/obj/paint{ - color = "#353a42" - }, -/turf/simulated/wall/ocp_wall, -/area/rnd/toxins) -"cgK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/civilian{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown3_2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/aft) -"cgR" = ( -/obj/floor_decal/corner/green/half{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"chc" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/maintenance{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/thirddeck/fore) -"chf" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_y = 11; - pixel_x = 8 - }, -/obj/item/pen, -/obj/item/material/utensil/fork{ - pixel_y = 7; - pixel_x = -6 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"chg" = ( -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"chi" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"cho" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/corner/green/half{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"chs" = ( -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/canister) -"chu" = ( -/obj/structure/holoplant, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"chE" = ( -/obj/floor_decal/corner/darkblue{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/half{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/bed/chair/padded/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"chU" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/tank/air{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod2/station) -"cii" = ( -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/hallway/primary/thirddeck/fore) -"cij" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow, -/obj/machinery/status_display{ - pixel_y = 32; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"cio" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"cis" = ( -/obj/fluid_mapped, -/obj/random/soap, -/mob/living/simple_animal/aquatic/fish/judge, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"ciu" = ( -/obj/floor_decal/corner/black/three_quarters{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/purple/bordercorner, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/ship) -"ciz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ciB" = ( -/obj/machinery/atmospherics/unary/tank/air, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"ciF" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"ciI" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"ciL" = ( -/obj/structure/closet/crate/freezer, -/obj/structure/railing/mapped, -/obj/floor_decal/spline/plain/black{ - dir = 6 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/decal/cleanable/dirt, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"ciM" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d1starboard) -"cjb" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/airlock) -"cjc" = ( -/obj/structure/table/rack, -/obj/item/modular_computer/pda/wrist, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tank, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/random/tech_supply, -/obj/item/storage/box/lights/led_neon, -/obj/machinery/camera/network/supply{ - c_tag = "Fourth Deck - Supply - Auxillary Warehouse"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"cjk" = ( -/obj/structure/table/woodentable/walnut, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ - pixel_y = -6; - pixel_x = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"cjl" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/secure_closet{ - name = "long term chamber locker"; - req_access = list("ACCESS_SECURITY") - }, -/obj/floor_decal/borderfloor/full, -/obj/floor_decal/industrial/hatch/orange, -/obj/machinery/button/blast_door{ - id_tag = "visiting_room_windows_shutters"; - name = "Brig's visiting room shutters"; - req_access = list("ACCESS_SECURITY"); - pixel_y = -6; - pixel_x = 21; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/brig) -"cjn" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"cjp" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/chemistry) -"cjz" = ( -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner, -/obj/floor_decal/spline/fancy/black/corner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"cjH" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"cjX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"cki" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"ckl" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/nt, -/obj/item/folder/nt, -/obj/item/folder/red, -/obj/item/folder/yellow, -/obj/item/folder, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/blue/border, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"ckm" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"ckn" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"ckp" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"ckA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"ckB" = ( -/obj/structure/table/standard, -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_x = -24; - dir = 4 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/device/robotanalyzer, -/obj/floor_decal/corner/grey_alt/three_quarters{ - dir = 8 - }, -/obj/item/storage/box/freezer, -/obj/item/autopsy_scanner, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"ckL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"ckU" = ( -/obj/structure/catwalk, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ckW" = ( -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"cla" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"cld" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/valve/shutoff/supply, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"clg" = ( -/turf/simulated/wall/r_wall/hull, -/area/quartermaster/expedition) -"cll" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"clp" = ( -/obj/floor_decal/corner/lime/bordercorner{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"clw" = ( -/obj/item/stool/padded, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"clD" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/rotating_alarm/security_alarm{ - pixel_y = 13 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"clF" = ( -/obj/structure/lattice, -/obj/floor_decal/industrial/traffic{ - dir = 4 - }, -/obj/floor_decal/corner/black/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"clH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/crystal, -/area/crew_quarters/adherent) -"clM" = ( -/obj/structure/closet, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"clR" = ( -/obj/structure/bed/chair/armchair/black{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"clT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor/stage) -"clW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/substation/bridgedeck) -"clZ" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"cma" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/red/bordercorner2, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 2 - }, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/forensic/lab) -"cmb" = ( -/obj/machinery/atmospherics/valve/digital, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"cmh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"cmk" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/floodlight{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"cmm" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"cmr" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/exploration/eva) -"cmw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"cmA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"cmJ" = ( -/obj/floor_decal/corner/blue{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"cmR" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"cnh" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/aft) -"cnj" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head) -"cno" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"cnp" = ( -/obj/floor_decal/corner/black/border, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics/third_deck_storage) -"cnr" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"cns" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"coc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"con" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"cos" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"cow" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"coB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"coD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/holocontrol) -"coE" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"coG" = ( -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/deckofficer) -"coH" = ( -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"coM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"coP" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/equipstorage) -"coY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"cpa" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/item/folder/blue, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"cpb" = ( -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"cpk" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/stock_parts/circuitboard/holodeckcontrol, -/obj/item/stock_parts/circuitboard/mech_recharger, -/obj/item/stock_parts/circuitboard/solar_control, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech) -"cpu" = ( -/turf/simulated/wall/walnut, -/area/crew_quarters/sauna) -"cpv" = ( -/obj/structure/table/standard, -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/office) -"cpw" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"cpO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"cpQ" = ( -/obj/fluid_mapped, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/cistern) -"cpR" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/mineral/processing_unit, -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/turf/simulated/floor, -/area/quartermaster/hangar) -"cpS" = ( -/obj/machinery/button/blast_door{ - id_tag = "borg"; - name = "Cyborg Upload Blast Doors"; - pixel_x = -26; - pixel_y = -6; - req_access = list("ACCESS_AI_UPLOAD") - }, -/obj/machinery/computer/drone_control{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"cpT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/wall/r_wall/hull, -/area/chapel/mortuary) -"cpV" = ( -/obj/floor_decal/industrial/danger{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"cqk" = ( -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"cqt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Fore Hallway - Airlock" - }, -/obj/machinery/navbeacon/sierra/SD_fore4, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"cqv" = ( -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"cqB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"cqC" = ( -/obj/item/stool/padded, -/obj/floor_decal/corner/green/half{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"cqD" = ( -/obj/machinery/camera/network/command{ - c_tag = "Command - Chief Steward"; - dir = 8 - }, -/turf/simulated/floor/wood, -/area/command/chief_steward) -"cqT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"cqV" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/computer/shuttle_control/lift/rndmaint, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"cqW" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"crm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/corner/darkblue/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"cro" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"crr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"crs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - dir = 4; - name = "Bridge Access"; - id_tag = "bridge_hallway_doors_starboadr" - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lob_bridge_lock" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/hallway) -"crB" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/equipment) -"crD" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/pizzabox/meat{ - pixel_y = 10 - }, -/obj/machinery/light/small, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/cafe/upper) -"crE" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/structure/bed/chair/padded/red, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/fore) -"crG" = ( -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/exploration) -"crJ" = ( -/obj/machinery/computer/modular/preset/security{ - dir = 8 - }, -/obj/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"crU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"crZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - target_pressure = 80 - }, -/obj/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"csp" = ( -/obj/machinery/cryopod/robot{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"csw" = ( -/obj/machinery/washing_machine, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/laundry) -"csC" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Janitor Closet" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/storage) -"csD" = ( -/turf/simulated/open, -/area/assembly/office) -"csP" = ( -/obj/paint_stripe/blue, -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/airlock) -"csX" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"csZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"ctg" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"cto" = ( -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/green/border{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 10 - }, -/obj/structure/sign/botany{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"ctu" = ( -/obj/structure/table/rack, -/obj/item/material/hatchet/machete, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/material/hatchet/machete, -/obj/item/material/hatchet/machete, -/obj/item/material/hatchet/machete, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"ctB" = ( -/obj/structure/catwalk, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"ctC" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"ctD" = ( -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"ctF" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - dir = 1; - id_tag = "guppy_shuttle_pump_out_internal" - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"ctI" = ( -/obj/structure/rubble, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"ctJ" = ( -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"ctW" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/obj/floor_decal/corner/black/three_quarters{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/ship) -"ctX" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/obj/floor_decal/snow, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/galley/freezer) -"cua" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"cub" = ( -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/machinery/hologram/holopad{ - pixel_x = 16 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"cuf" = ( -/obj/machinery/floodlight{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"cug" = ( -/obj/machinery/vending/robotics/sierra{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Robotics Lab"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"cul" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/sign/warning/airlock{ - dir = 8; - pixel_x = 32 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"cur" = ( -/turf/simulated/open, -/area/hallway/primary/thirddeck/aft_stairwell) -"cus" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"cuD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/rubble, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"cuI" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"cuP" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition/storage) -"cuW" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Starboard Solar Access"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar/starboard) -"cuX" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort1" - }, -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"cuY" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/vacant/dormintories) -"cvh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"cvk" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - dir = 1; - id_tag = "calypso_shuttle_pump" - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/exploration_shuttle/airlock) -"cvy" = ( -/obj/machinery/door/window/westright{ - name = "Xenoflora Environment"; - req_access = newlist() - }, -/obj/machinery/door/window/southright{ - dir = 4; - name = "Xenoflora Environment"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/xenoflora) -"cvC" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/xenoflora) -"cvM" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"cvN" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/firstdeck/centralstarboard) -"cvV" = ( -/obj/structure/bed/chair/padded/purple{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/entry) -"cvX" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen{ - pixel_x = -1 - }, -/obj/item/folder/red, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation/second) -"cvZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"cwe" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/no_grille, -/turf/simulated/floor/plating, -/area/quartermaster/shuttlefuel) -"cwf" = ( -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/explorer, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/storage/bolt_bag/full_of_beacons, -/obj/item/clothing/gloves/anomaly_detector, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration) -"cwp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/turf/simulated/wall/r_wall/hull, -/area/engineering/engine_room) -"cwq" = ( -/obj/structure/ladder/up, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"cwr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"cwu" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"cwv" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"cwy" = ( -/obj/machinery/seed_extractor, -/obj/floor_decal/corner/green/three_quarters{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"cwA" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"cwE" = ( -/obj/structure/table/standard, -/obj/random/firstaid, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod4/station) -"cwJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/wall/prepainted, -/area/maintenance/fourthdeck/aft) -"cwO" = ( -/obj/structure/closet/secure_closet/medical_sierra, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"cwT" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/porta_turret{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"cwY" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway) -"cxd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 6; - pixel_y = -21 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"cxi" = ( -/obj/machinery/radiocarbon_spectrometer, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/ship) -"cxm" = ( -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"cxp" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/structure/shuttle/engine/heater{ - pixel_y = 32 - }, -/turf/simulated/floor/airless, -/area/shuttle/escape_pod/escape_pod2/station) -"cxr" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"cxs" = ( -/obj/structure/disposalpipe/sortjunction/untagged/flipped{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2, -/obj/machinery/light, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"cxt" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/constructable_frame, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"cxv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"cxy" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"cxA" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/sign/emergonly{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"cxF" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"cxG" = ( -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/exploration) -"cxH" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/largecrate, -/obj/random/trash, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"cxL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/atmos) -"cxM" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/seconddeck) -"cxQ" = ( -/obj/floor_decal/borderfloorblack, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/bunk) -"cxR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"cxT" = ( -/obj/item/storage/lunchbox/picnic/filled, -/obj/floor_decal/carpet/blue2, -/obj/floor_decal/carpet/blue2{ - dir = 4 - }, -/obj/floor_decal/carpet/blue2{ - dir = 6 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/garden_room) -"cxW" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/urm, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"cxX" = ( -/obj/structure/catwalk, -/obj/structure/closet, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/mre/dessert, -/obj/random/plushie, -/obj/random/junk, -/obj/random/firstaid, -/obj/random/action_figure, -/obj/random/cash, -/obj/random/drinkbottle, -/obj/random/hat, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"cyb" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"cyc" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/blast_door{ - id_tag = "xenobio1"; - name = "Containment Blast Doors"; - pixel_x = -6; - req_access = list("ACCESS_RESEARCH") - }, -/obj/machinery/button/blast_door{ - id_tag = "xenobio1_vent"; - name = "Cell 1 Vent"; - pixel_x = 6; - req_access = list("ACCESS_RESEARCH") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/storage/box/syringes{ - pixel_y = 15 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"cym" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"cyn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/carpet/green, -/turf/simulated/floor/carpet/green, -/area/medical/mentalhealth/therapyroom) -"cyr" = ( -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/obj/floor_decal/corner/black/bordercorner, -/turf/simulated/floor/tiled, -/area/hydroponics/third_deck_storage) -"cyM" = ( -/obj/structure/flora/pottedplant/fern, -/obj/floor_decal/carpet, -/obj/floor_decal/carpet{ - dir = 4 - }, -/obj/floor_decal/carpet{ - dir = 6 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/cafe/upper) -"cyP" = ( -/obj/structure/closet/crate/secure/phoron{ - req_access = list(list("ACCESS_ENGINE_EQUIP","ACCESS_TELECOMS")); - name = "Emergency backup phoron crate" - }, -/obj/item/stack/material/phoron/ten, -/obj/item/stack/material/phoron/ten, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"cyU" = ( -/obj/random_multi/single_item/space_rabbit, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"cyV" = ( -/obj/floor_decal/corner/blue{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"czb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/fore) -"czd" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/floor_decal/corner/purple, -/obj/item/disk/tech_disk, -/obj/item/disk/tech_disk, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"czn" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/mess) -"czD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/green, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/dungeon_master_lounge) -"czE" = ( -/obj/machinery/atmospherics/tvalve{ - dir = 1 - }, -/obj/decal/cleanable/dirt, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/medical/virology/atmos) -"czG" = ( -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"czH" = ( -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"czJ" = ( -/obj/structure/closet/l3closet/general, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"czN" = ( -/obj/structure/closet/crate, -/obj/item/stock_parts/circuitboard/smes, -/obj/item/stock_parts/circuitboard/smes, -/obj/item/stock_parts/smes_coil/super_io, -/obj/item/stock_parts/smes_coil/super_io, -/obj/item/stock_parts/smes_coil/super_capacity, -/obj/item/stock_parts/smes_coil/super_capacity, -/obj/item/stock_parts/smes_coil, -/obj/item/stock_parts/smes_coil, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shield/thirddeck) -"czQ" = ( -/obj/structure/hygiene/sink{ - pixel_y = -12 - }, -/obj/floor_decal/corner/beige{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"czV" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/green{ - dir = 6 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"czY" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass/science{ - name = "Expedition Prep"; - req_access = newlist() - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/exploration/briefing_room) -"cAa" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"cAd" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"cAf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/catwalk, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"cAg" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/floor_decal/corner/yellow/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"cAl" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/clothing/gloves/latex, -/obj/item/clothing/mask/surgical, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/xenobiology/level1) -"cAm" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/decal/cleanable/cobweb{ - dir = 1 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"cAu" = ( -/obj/machinery/computer/modular/preset/medical{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"cAC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/substation/thirddeck) -"cAJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/suits) -"cAK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/lime/bordercorner, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"cAO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"cBf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Central Hallway" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"cBg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"cBk" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/airlock_sensor{ - frequency = 1331; - id_tag = "rescue_shuttle_dock_airlock_sensor"; - master_tag = "rescue_shuttle_dock_airlock"; - pixel_x = -24; - pixel_y = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"cBm" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/rotating_alarm/supermatter{ - pixel_y = 14 - }, -/obj/machinery/airlock_sensor/airlock_interior{ - id_tag = "engine_atmos_airlock_sensor_in"; - pixel_y = 32; - pixel_x = -9 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"cBq" = ( -/obj/structure/catwalk, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"cBt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external/bolted/cycling{ - dir = 4; - frequency = 1380; - id_tag = "nuke_shuttle_dock_airlock_inner"; - name = "Docking Port Airlock" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"cBv" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/machinery/door/airlock/civilian{ - dir = 4; - name = "Security General Cabin"; - req_access = list("ACCESS_SEC_DOORS"); - autoset_access = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"cBw" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 9 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/box/donut{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/hand_labeler{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/machinery/computer/guestpass{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"cBz" = ( -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/techfloor/hole{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"cBD" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Captain's reserve fax"; - destination = "NanoTrasen Central Command" - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/heads/captain/secret_room) -"cBG" = ( -/obj/structure/table/steel, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"cBH" = ( -/obj/machinery/button/blast_door{ - id_tag = "chapel_shutters_md"; - name = "Last Way Shutter"; - pixel_x = 20; - pixel_y = 6; - req_access = list("ACCESS_CHAPEL_STORAGE"); - dir = 8 - }, -/obj/machinery/button/mass_driver{ - dir = 8; - id_tag = "chapel"; - name = "Last Way"; - pixel_y = -7; - pixel_x = 20 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"cBI" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"cBL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"cBM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"cBP" = ( -/obj/machinery/photocopier, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/infirmreception) -"cBU" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/space) -"cCj" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins/storage) -"cCk" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/coin, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"cCu" = ( -/obj/machinery/power/apc/high{ - name = "north bump"; - pixel_y = -24 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dormintories) -"cCx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ - id_tag = "engine_atmos_airlock"; - name = "Engine Room Airlock Controlls"; - pixel_y = 24; - req_access = list("ACCESS_ENGINE_EQUIP"); - tag_interior_door = "engine_atmos_airlock_inner"; - tag_exterior_door = "engine_atmos_airlock_outer"; - tag_airpump = "engine_atmos_airlock_vent"; - tag_exterior_sensor = "engine_atmos_airlock_sensor_out"; - tag_interior_sensor = "engine_atmos_airlock_sensor_in"; - tag_chamber_sensor = "engine_atmos_airlock_chamber" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"cCy" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Fourth Deck Substation Bypass" - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/fourthdeck) -"cCA" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dormintories) -"cCC" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger{ - pixel_y = 10; - pixel_x = 6 - }, -/obj/machinery/cell_charger{ - pixel_y = 1; - pixel_x = -2 - }, -/obj/structure/panic_button{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/guppy_hangar/start) -"cCD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - target_pressure = 80 - }, -/obj/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"cCF" = ( -/turf/simulated/open, -/area/maintenance/seconddeck/aftport) -"cCT" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/camera/network/command{ - c_tag = "Telecommunications - Server Room"; - network = list("Command","Engineering") - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"cDf" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/constructable_frame, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"cDm" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod3/station) -"cDo" = ( -/obj/structure/holoplant, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"cDr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"cDv" = ( -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"cDy" = ( -/obj/machinery/atmospherics/unary/tank/air{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"cDA" = ( -/obj/item/device/radio/intercom/department/medbay{ - dir = 1; - pixel_y = -28 - }, -/obj/floor_decal/corner/paleblue/bordercee{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"cDB" = ( -/obj/structure/flora/seaweed/glow, -/obj/fluid_mapped, -/turf/simulated/floor/beach/sand, -/area/rnd/xenobiology/level2) -"cDC" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/substation/bridgedeck) -"cDD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"cDE" = ( -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"cDJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastleft{ - name = "engineering front desk"; - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "eng_lockdown_emg1"; - name = "Emergency Exit" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf/steel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engineering_monitoring) -"cDS" = ( -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery) -"cDX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"cEa" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/yellow, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/solar/bridge_starboard) -"cEb" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"cEd" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/corner/green/half, -/obj/machinery/button/blast_door{ - dir = 1; - id_tag = "hydroponics_space"; - name = "Space Shields"; - pixel_y = -21 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"cEt" = ( -/obj/machinery/door/airlock/hatch/maintenance/bolted{ - frequency = 1379; - id_tag = "prototype_exterior"; - name = "Fusion Maintenance" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/prototype/control) -"cEu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"cEw" = ( -/obj/floor_decal/industrial/warning/corner, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"cEx" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Treatment Center"; - dir = 4; - pixel_y = 20 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"cEy" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ - RCon_tag = "Substation - Atmospherics" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_smes) -"cEB" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"cEL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"cEN" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/seconddeck/central_stairwell) -"cEW" = ( -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/seconddeck/aftport) -"cFe" = ( -/obj/machinery/door/blast/regular/open{ - id_tag = "PetrovShield"; - name = "Petrov Blast Shutters" - }, -/obj/wallframe_spawn/reinforced/polarized{ - id = "rcheckinner_windows" - }, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/plating, -/area/shuttle/petrov/security) -"cFg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"cFh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"cFi" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/green/border{ - dir = 10 - }, -/obj/structure/closet/emcloset, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics/third_deck_storage) -"cFl" = ( -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"cFo" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/cafe) -"cFs" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/blue/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"cFx" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/fore) -"cFA" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"cFG" = ( -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/cockpit) -"cFI" = ( -/obj/floor_decal/techfloor/corner, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"cFR" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"cFT" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1379; - id_tag = "engine_airlock_inner"; - name = "Engine Airlock Interior" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"cFV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1port) -"cGc" = ( -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"cGe" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/helium{ - start_pressure = 14999 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"cGg" = ( -/obj/structure/bed/chair/office/purple{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/development) -"cGi" = ( -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"cGn" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/landmark/start{ - name = "Captain" - }, -/obj/structure/bed/chair/rounded/blue{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"cGp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/fourthdeck/central_stairwell) -"cGs" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"cGv" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"cGw" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/purple, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"cGE" = ( -/obj/floor_decal/corner/blue{ - dir = 10 - }, -/obj/machinery/computer/air_control{ - dir = 1; - input_tag = "o22p_in"; - name = "Oxygen Supply Control"; - output_tag = "o22p_out"; - sensor_name = "Tank"; - sensor_tag = "ReacEngOxygen2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"cGF" = ( -/obj/structure/table/standard, -/obj/item/storage/box/detergent, -/obj/item/storage/box/detergent, -/obj/item/ironing_iron, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/item/ironing_iron, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/laundry) -"cGH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"cGN" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 4; - id_tag = "skipjack_shuttle_pump" - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/grey/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod3/station) -"cGV" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"cGY" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"cHg" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"cHi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/railing/mapped, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"cHq" = ( -/obj/structure/table/woodentable/maple, -/obj/item/device/flashlight/lamp/green, -/obj/floor_decal/carpet/purple{ - dir = 1 - }, -/obj/floor_decal/carpet/purple{ - dir = 4 - }, -/obj/floor_decal/carpet/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Chapel - Office" - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/office) -"cHz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 8 - }, -/obj/machinery/meter, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"cHE" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"cHJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"cHK" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"cHN" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id_tag = "med_main_reg"; - name = "Infirmary Entry Shutters" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/glass/medical{ - dir = 8; - id_tag = "MedbayInf"; - name = "Treatment Center" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"cHP" = ( -/obj/structure/table/woodentable, -/obj/item/airalarm_electronics, -/obj/item/airlock_electronics, -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/dirt, -/obj/random/maintenance, -/turf/simulated/floor/wood, -/area/maintenance/firstdeck/forestarboard) -"cHR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"cHZ" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/floor_decal/steeldecal/steel_decals6, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"cIe" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"cIi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"cIj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"cIz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"cIH" = ( -/obj/machinery/computer/modular/preset/medical{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/infirmreception) -"cIM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"cIZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/orange, -/area/security/range) -"cJa" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/industrial/warning, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry2) -"cJb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/forestarboard) -"cJc" = ( -/obj/structure/lattice, -/turf/simulated/wall/r_wall/hull, -/area/engineering/atmos) -"cJp" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Solar - Port" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"cJs" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"cJv" = ( -/turf/simulated/wall/prepainted, -/area/storage/auxillary/port) -"cJD" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - dir = 4; - id_tag = "escape_pod_6"; - name = "escape pod six controller"; - pixel_x = -20; - tag_door = "escape_pod_6_hatch"; - frequency = 1380 - }, -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/escape_pod/escape_pod6/station) -"cJH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - color = null; - dir = 4 - }, -/obj/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/machinery/optable, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"cJI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/northleft{ - name = "Quartermaster"; - req_access = newlist() - }, -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf{ - dir = 4 - }, -/obj/machinery/door/blast/shutters/open{ - name = "QM Office Shutters"; - id_tag = "qm_office" - }, -/turf/simulated/floor/plating, -/area/quartermaster/deckofficer) -"cJL" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Research Maintenance Access"; - req_access = newlist() - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"cJQ" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"cJV" = ( -/obj/floor_decal/corner/darkblue/full, -/obj/floor_decal/corner/black/three_quarters{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"cJX" = ( -/obj/structure/disposaloutlet, -/obj/machinery/shield_diffuser, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"cKb" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"cKg" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"cKo" = ( -/obj/structure/roller_bed, -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/camera/network/medbay{ - c_tag = "Critical Wing - EMT Compartment"; - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/maintenance_equipstorage) -"cKr" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"cKt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/prepainted, -/area/maintenance/fourthdeck/aft) -"cKy" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/item/reagent_containers/chem_disp_cartridge/coffee, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup, -/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ - id_tag = "engine_airlock"; - name = "Engine Room Airlock Controlls"; - pixel_y = 24; - req_access = list("ACCESS_ENGINE_EQUIP"); - tag_exterior_door = "engine_airlock_outer"; - tag_chamber_sensor = "engine_airlock_sensor"; - tag_interior_door = "engine_airlock_inner"; - tag_interior_sensor = "engine_airlock_sensor_in"; - tag_exterior_sensor = "engine_airlock_sensor_out"; - tag_airpump = "engine_airlock_pump"; - pixel_x = 7 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -7; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"cKE" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/red, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"cKF" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"cKH" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/item/folder/blue, -/obj/item/folder/red, -/obj/item/folder, -/obj/item/folder/nt, -/obj/item/folder/yellow, -/obj/item/folder/white, -/obj/item/folder/nt, -/obj/item/folder/nt, -/obj/floor_decal/corner/research/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/office) -"cKJ" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition/storage) -"cKK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"cKL" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/lounge) -"cKO" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"cKS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"cKU" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralport) -"cKZ" = ( -/obj/shuttle_landmark/escape_pod/start/pod6, -/obj/wallframe_spawn/reinforced/titanium, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/escape_pod6/station) -"cLf" = ( -/obj/structure/bookcase/manuals/medical, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"cLi" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"cLl" = ( -/obj/floor_decal/steeldecal/steel_decals6, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry2) -"cLp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/firstdeck/foreport) -"cLq" = ( -/obj/structure/table/standard, -/obj/item/anobattery{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/anobattery{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/anobattery{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/anobattery{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"cLv" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/northleft{ - dir = 2 - }, -/obj/structure/table/rack{ - dir = 8 - }, -/obj/item/aiModule/solgov, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_cyborg_upload) -"cLx" = ( -/obj/structure/table/steel, -/obj/item/stack/material/wood/walnut{ - amount = 2 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftport) -"cLE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"cLG" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/floor_decal/industrial/hatch/yellow, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/utility) -"cLH" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/tele_beacon, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"cLI" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2, -/obj/structure/holoplant, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"cLQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"cLT" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/machinery/papershredder, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"cLV" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/pen/blue{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/pen/crayon/yellow{ - desc = "A colourful crayon. Please refrain from eating it or putting it in your nose. This one is labeled 'Canary Yellow.'" - }, -/obj/floor_decal/corner/research/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/research{ - c_tag = "Research - Office"; - dir = 1 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/office) -"cMb" = ( -/obj/machinery/uniform_vendor, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo/bridge) -"cMe" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/wood/corner, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"cMf" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/landmark/start, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"cMo" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "sd_starboard_pump" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"cMI" = ( -/obj/floor_decal/corner/darkblue, -/obj/structure/hygiene/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge/storage) -"cMM" = ( -/obj/machinery/air_sensor/nacelle/fourth/co2, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d1port) -"cMN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"cMY" = ( -/obj/machinery/computer/modular/preset/dock{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/quartermaster/hangar/upper) -"cNc" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/wallframe_spawn/reinforced/polarized/full{ - id = "hop_windows" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/hop) -"cNg" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"cNo" = ( -/obj/floor_decal/industrial/traffic{ - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/floor_decal/industrial/traffic{ - dir = 1; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/shuttle_landmark/lift/rndmaint_top, -/turf/simulated/floor/tiled/techfloor, -/area/turbolift/rndmaint_lift) -"cNp" = ( -/obj/machinery/computer/modular/preset/engineering{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"cNv" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"cNA" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"cNF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/floor_decal/corner/grey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"cNK" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"cNO" = ( -/obj/floor_decal/industrial/warning, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"cNP" = ( -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/floor_decal/techfloor/hole, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/foreport) -"cOd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/access_button/airlock_interior{ - master_tag = "sd_port"; - name = "interior access button"; - pixel_x = 24; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/machinery/door/airlock/external/glass/bolted/cycling{ - id_tag = "sd_port_inner"; - name = "Second Deck Port Airlock" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/foreport) -"cOj" = ( -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/medical) -"cOl" = ( -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue/half{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/infirmary) -"cOm" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"cOn" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - id_tag = "ai_bridge_pump"; - dir = 1 - }, -/obj/machinery/light/small, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"cOt" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/cockpit) -"cOz" = ( -/obj/machinery/space_heater, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"cOC" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"cOG" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/bridgedeck/port) -"cOK" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"cOL" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/r_titanium, -/area/guppy_hangar/start) -"cON" = ( -/obj/structure/closet/secure_closet/engineering_sierra, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/item/device/gps, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"cOR" = ( -/obj/structure/table/standard, -/obj/item/cane{ - pixel_x = 4 - }, -/obj/item/cane{ - pixel_y = 2 - }, -/obj/item/cane{ - pixel_y = 5; - pixel_x = -1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/ward) -"cOX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4; - id_tag = "engine_atmos_airlock_vent" - }, -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/catwalk, -/obj/structure/hygiene/drain, -/obj/structure/hygiene/shower{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"cOY" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/medical/virology/atmos) -"cOZ" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/rotating_alarm/supermatter{ - pixel_y = 14 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"cPc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"cPg" = ( -/obj/structure/table/woodentable/walnut, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/device/flashlight/lamp/lava/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"cPv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/tvalve{ - dir = 1; - icon_state = "map_tvalve1"; - state = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/atmos) -"cPA" = ( -/obj/machinery/suspension_gen, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/button/blast_door{ - id_tag = "expe_warehouse"; - name = "Storage Door Control"; - pixel_x = 6; - pixel_y = -24; - req_access = list(list("ACCESS_EXPLORER","ACCESS_XENOARCH","ACCESS_EL")); - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -6; - pixel_y = -24 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"cPC" = ( -/obj/floor_decal/industrial/danger{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/suits) -"cPD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"cPG" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"cPI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/landmark/start{ - name = "Detective" - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/forensic/lab) -"cPK" = ( -/obj/structure/closet/l3closet/general, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/vacant/infirmary) -"cPM" = ( -/obj/machinery/psi_meter, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"cPY" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/forensic/lab) -"cQa" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - target_pressure = 200 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"cQb" = ( -/obj/structure/catwalk, -/obj/machinery/nav_light, -/turf/simulated/open, -/area/space) -"cQh" = ( -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 10 - }, -/obj/structure/closet/emcloset, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 24 - }, -/obj/structure/sign/deck/third{ - pixel_y = 35 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/center) -"cQn" = ( -/obj/floor_decal/corner/paleblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"cQo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/navbeacon/sierra/SD_forehallway2, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown2_2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/center) -"cQq" = ( -/obj/structure/table/standard, -/obj/random/powercell, -/obj/random/powercell, -/obj/random/powercell, -/obj/random/tech_supply, -/obj/machinery/recharger, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/corner/yellow/mono, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"cQD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"cQL" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"cQP" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/engine_smes) -"cQR" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"cQT" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/gas) -"cQV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"cRc" = ( -/obj/structure/bed/chair/armchair/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 9; - pixel_y = -21 - }, -/obj/floor_decal/carpet/green, -/turf/simulated/floor/carpet/green, -/area/medical/mentalhealth/therapyroom) -"cRd" = ( -/turf/simulated/floor/wood, -/area/maintenance/firstdeck/forestarboard) -"cRe" = ( -/obj/structure/closet/walllocker{ - pixel_y = 28 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/vacant/cargo) -"cRn" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"cRq" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/thirddeck/center) -"cRr" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Supply to Bridge Air Storage" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"cRB" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"cRD" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/maintenance/seconddeck/aftstarboard) -"cRI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external/bolted/cycling{ - frequency = 1331; - id_tag = "rescue_shuttle_dock_airlock_inner"; - name = "Docking Port Airlock" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/center) -"cRP" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/flora/ausbushes/genericbush, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/docking) -"cRT" = ( -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/development) -"cRX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"cRY" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/random/maintenance, -/obj/machinery/door/window/westleft{ - name = "Commissary rack"; - req_access = newlist() - }, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/random/single/cola, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"cSd" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"cSj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"cSp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"cSs" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"cSz" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"cSC" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"cSI" = ( -/obj/structure/table/steel, -/obj/item/storage/pill_bottle/tramadol, -/obj/item/storage/firstaid/o2{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/tank/oxygen_emergency_double, -/obj/item/tank/oxygen_emergency_double, -/obj/random/medical/lite, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/utility) -"cSW" = ( -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"cSZ" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"cTe" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/random/bomb_supply, -/obj/random/bomb_supply, -/obj/random/bomb_supply, -/obj/random/bomb_supply, -/obj/random/bomb_supply, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/junk, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"cTj" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/maintenance{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"cTo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1; - target_pressure = 15000 - }, -/obj/machinery/button/blast_door{ - id_tag = "cChamber2pV"; - name = "Fourth Deck Port Chamber Vent"; - pixel_x = 8; - pixel_y = 24 - }, -/obj/machinery/button/blast_door{ - id_tag = "d2portnacelle"; - name = "Combustion Chamber Blast Door Control"; - pixel_x = -8; - pixel_y = 24 - }, -/obj/machinery/button/ignition{ - id_tag = "engines-2"; - pixel_y = 34 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"cTs" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/helium, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"cTv" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 9; - pixel_y = 21 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"cTy" = ( -/obj/floor_decal/corner/yellow/mono, -/obj/machinery/vending/coffee{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar_stairs) -"cTL" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/hangar_stairs/upper) -"cTP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"cTR" = ( -/obj/random/maintenance, -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/coin, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"cTV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"cUd" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/vending/snack{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/fore) -"cUe" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/floor_decal/corner/black/full, -/turf/simulated/floor/tiled/dark, -/area/command/bsa) -"cUh" = ( -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"cUn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"cUz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"cUD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 8 - }, -/obj/structure/sign/warning/pods/south{ - dir = 4; - pixel_x = -32 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"cUI" = ( -/obj/structure/table/standard, -/obj/item/paper{ - pixel_y = 5 - }, -/obj/random/toy{ - pixel_y = -2; - pixel_x = -11 - }, -/obj/random/toy{ - pixel_y = 5; - pixel_x = 14 - }, -/obj/structure/sign/poster/nyc/wild_cargo{ - pixel_y = 32 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"cUK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"cUP" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/door/airlock/external/glass/bolted/cycling{ - frequency = 1380; - id_tag = "merchant_shuttle_station_outer"; - name = "Docking Port Airlock" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/shuttle_landmark/ascent_seedship_inf/sierra/two, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"cUR" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1; - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"cUU" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"cUY" = ( -/obj/shuttle_landmark/sierra/deck4/guppy, -/turf/space, -/area/space) -"cVc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Medical Reception" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_main_reg"; - name = "Infirmary Entry Shutters" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/infirmreception) -"cVd" = ( -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - id_tag = "nuke_shuttle_dock_airlock_pump" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"cVl" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - controlled = 0; - internal_pressure_bound = 35000; - internal_pressure_bound_default = 35000; - pressure_checks = 2; - pressure_checks_default = 2; - use_power = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/thruster/d3starboard) -"cVp" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"cVq" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"cVB" = ( -/obj/structure/table/woodentable_reinforced/ebony, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 13 - }, -/obj/floor_decal/corner/black/mono, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/hos/cobed) -"cVE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "d1portnacelle" - }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"cVF" = ( -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/obj/item/storage/mirror{ - pixel_y = 32 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"cVG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/laundry) -"cVI" = ( -/obj/floor_decal/industrial/traffic{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"cWb" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/titanium, -/area/shuttle/petrov/cockpit) -"cWd" = ( -/obj/machinery/door/blast/regular/escape_pod{ - id_tag = "escape_pod_11" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/maintenance/exterior) -"cWh" = ( -/obj/structure/closet/crate/internals/fuel, -/obj/floor_decal/spline/plain/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"cWn" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/parts, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"cWt" = ( -/obj/structure/bed/chair/office/teal{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"cWv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"cWz" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/floor_decal/carpet/green{ - dir = 8 - }, -/turf/simulated/floor/carpet/green, -/area/medical/mentalhealth/therapyroom) -"cXg" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall/hull, -/area/turret_protected/ai_maint) -"cXj" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"cXk" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"cXm" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/sauna) -"cXp" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/bed/chair/wood/maple{ - dir = 4 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"cXs" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"cXt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/water_cell) -"cXu" = ( -/obj/structure/table/standard, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/bodybag/rescue/loaded, -/obj/item/bodybag/rescue/loaded, -/obj/item/bodybag/rescue/loaded, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/staging) -"cXB" = ( -/obj/structure/closet/secure_closet/xenoarchaeologist_sierra, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/clothing/gloves/anomaly_detector, -/obj/item/storage/bolt_bag/full_of_beacons, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"cXD" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"cXE" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 4; - id_tag = "td_port" - }, -/obj/structure/catwalk, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "td_port"; - name = "Third Deck Port Airlock Controller"; - req_access = list("ACCESS_EXTERNAL"); - dir = 4; - pixel_x = -20 - }, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"cXG" = ( -/obj/floor_decal/spline/fancy/black, -/obj/structure/closet/fridge/meat, -/obj/floor_decal/snow, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/galley/freezer) -"cXI" = ( -/obj/machinery/door/blast/shutters{ - dir = 8; - id_tag = "qm_warehouse"; - name = "Warehouse Shutters" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"cXU" = ( -/obj/floor_decal/spline/fancy/black/corner{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black/corner, -/obj/machinery/door/airlock/civilian{ - name = "Closet" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/firstdeck) -"cXW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 5 - }, -/obj/floor_decal/corner/grey{ - dir = 10 - }, -/obj/machinery/light/small, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"cYb" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/woodentable/walnut, -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/obj/item/rolled_towel/green_stripped, -/obj/item/rolled_towel/blue_stripped, -/obj/item/rolled_towel/red_stripped, -/obj/item/rolled_towel/pink_stripped, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"cYd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/steel_ridged, -/area/guppy_hangar/start) -"cYe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"cYk" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "xenobio4_vent"; - name = "Chamber Vent" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"cYn" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/table/rack{ - dir = 8 - }, -/obj/random/maintenance, -/obj/random/masks, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"cYp" = ( -/obj/floor_decal/corner/red/diagonal, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"cYq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/security{ - name = "HOS' waiting room" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"cYC" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - dir = 4; - id_tag = "escape_pod_3_berth"; - name = "escape pod three berth controller"; - pixel_x = -20; - pixel_y = 32; - tag_door = "escape_pod_3_berth_hatch"; - frequency = 1380 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"cYE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"cYH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation) -"cYM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/grey/border, -/obj/floor_decal/corner/grey/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/grey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"cYN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"cYQ" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"cYT" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"cYV" = ( -/obj/machinery/cryopod/robot{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"cZc" = ( -/obj/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"cZj" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"cZo" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - frequency = 1443; - id = "containment_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"cZw" = ( -/obj/shuttle_landmark/ert/deck2, -/turf/space, -/area/space) -"cZz" = ( -/obj/structure/closet/coffin, -/obj/structure/railing/mapped, -/obj/floor_decal/corner/black/mono, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"cZE" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"cZO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"cZP" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/machinery/sparker{ - id_tag = "engines-2"; - pixel_x = -24 - }, -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d3port) -"cZT" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/floor_decal/corner/green/half{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"cZU" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"cZY" = ( -/obj/machinery/turretid/stun{ - name = "AI Upload turret control"; - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/turret_protected/ai_upload) -"daa" = ( -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/maintenance{ - name = "Research Division Maintenance"; - req_access = list("ACCESS_RESEARCH"); - autoset_access = 0 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/research) -"dac" = ( -/obj/structure/sign/warning/docking_area{ - dir = 1 - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/fourthdeck/forestarboard) -"dag" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"dal" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"dan" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/charon{ - name = "south bump"; - pixel_y = -24; - req_access = list(list("ACCESS_EXPLORER","ACCESS_ENGINEERING")) - }, -/obj/floor_decal/borderfloor{ - color = null; - dir = 6 - }, -/obj/floor_decal/corner/blue/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - color = null - }, -/obj/floor_decal/corner/paleblue/bordercorner2, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"dao" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"daw" = ( -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#b19664" - }, -/area/quartermaster/hangar/upper) -"daA" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"daC" = ( -/obj/structure/catwalk, -/obj/machinery/constructable_frame/machine_frame, -/obj/item/stock_parts/circuitboard/autolathe, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"daE" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"daJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"daK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -21 - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"daM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "d4portnacelle" - }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"daS" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/lapvend, -/turf/simulated/floor/tiled, -/area/security/brig) -"daT" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/ward) -"daV" = ( -/obj/floor_decal/corner/darkblue, -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge/storage) -"daZ" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable/preset/sierra/substation{ - RCon_tag = "Substation - Second Deck" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/seconddeck) -"dbc" = ( -/obj/floor_decal/corner/black{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"dbj" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"dbq" = ( -/obj/floor_decal/industrial/danger{ - dir = 9 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/armory) -"dbt" = ( -/obj/structure/table/woodentable/mahogany, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"dbu" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/south) -"dbw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"dby" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/machinery/oxygen_pump{ - dir = 4; - pixel_x = 27 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"dbB" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"dbD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3starboard) -"dbG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"dbH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/navbeacon/sierra/TD_starboard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"dbQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/gas) -"dbV" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/starboard) -"dcb" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"dch" = ( -/obj/item/material/ashtray/glass, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table, -/turf/simulated/floor/carpet, -/area/vacant/gambling) -"dcr" = ( -/obj/decal/cleanable/dirt, -/obj/floor_decal/borderfloorblack, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"dcy" = ( -/obj/floor_decal/corner/black/border, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dcz" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"dcD" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"dcK" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"dcU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"dcW" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"ddj" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/structure/bed/sofa/m/brown, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"ddl" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/wood/maple{ - dir = 4 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"ddv" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/seconddeck/fore) -"ddw" = ( -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"ddI" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"ddK" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"ddW" = ( -/obj/machinery/telecomms/server/presets/science, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"ddX" = ( -/obj/floor_decal/solarpanel, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/solar{ - id = "auxsolarstarboard"; - name = "Aft Starboard Solar Array" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"ddZ" = ( -/obj/random_multi/single_item/space_rabbit, -/obj/structure/catwalk, -/turf/space, -/area/space) -"deh" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/port) -"dej" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"deq" = ( -/obj/structure/railing/mapped, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"det" = ( -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"dew" = ( -/obj/machinery/door/airlock/hatch{ - name = "Cargo Bay Left "; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"deB" = ( -/obj/structure/rubble, -/obj/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"deD" = ( -/obj/structure/table/rack, -/obj/item/aiModule/oxygen, -/obj/item/aiModule/oneHuman, -/obj/item/aiModule/antimov, -/obj/item/aiModule/teleporterOffline, -/obj/item/aiModule/quarantine, -/obj/item/aiModule/purge, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/red, -/obj/machinery/door/window{ - autoset_access = 0; - dir = 4; - name = "High-Risk Modules"; - req_access = list("ACCESS_CAPTAIN") - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"deG" = ( -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/storage/mirror{ - pixel_x = -1; - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"deI" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"deM" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod5/station) -"deO" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 9 - }, -/obj/floor_decal/corner/b_green/bordercorner2{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/storage/firstaid/light{ - pixel_y = -4; - pixel_x = -8 - }, -/obj/item/storage/firstaid/light{ - pixel_y = 4; - pixel_x = -8 - }, -/obj/item/storage/firstaid/light{ - pixel_y = 12; - pixel_x = -8 - }, -/obj/item/storage/firstaid/light{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/storage/firstaid/light{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/storage/firstaid/light{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/airlock) -"deT" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"dfd" = ( -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 8 - }, -/obj/machinery/atmospherics/valve/shutoff/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"dfl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"dfs" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/machinery/meter, -/obj/structure/fireaxecabinet{ - pixel_y = 32 - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"dfu" = ( -/obj/paint_stripe/nt_red, -/obj/paint/nt_white, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod6/station) -"dfG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/random/ironing_board_structure, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/laundry) -"dfI" = ( -/obj/machinery/sparker{ - id_tag = "Xenobio"; - pixel_y = 22 - }, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"dfK" = ( -/turf/simulated/wall/prepainted, -/area/rnd/office) -"dfL" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft_stairwell) -"dfO" = ( -/obj/decal/cleanable/dirt, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"dfP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/substation/fourthdeck) -"dfT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"dfY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"dgc" = ( -/obj/machinery/computer/modular/preset/security{ - dir = 4 - }, -/obj/machinery/button/windowtint{ - dir = 1; - id = "cadetwindow"; - pixel_x = 6; - pixel_y = -21 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -6; - pixel_y = -21 - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"dgh" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/turf/simulated/floor/plating, -/area/rnd/development) -"dgj" = ( -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/sticky_pad/random, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"dgk" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"dgr" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/item/stack/material/glass/reinforced/fifty, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"dgx" = ( -/obj/structure/table/standard, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_cyborg_upload) -"dgC" = ( -/obj/structure/railing/mapped, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"dgE" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics/third_deck_storage) -"dgH" = ( -/obj/structure/sign/warning/docking_area, -/turf/simulated/wall/r_wall/hull, -/area/hallway/primary/fourthdeck/center) -"dgK" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id_tag = "EngineRadiatorViewport"; - name = "Engine Radiator Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"dgN" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"dgO" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"dgP" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"dgR" = ( -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"dgT" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"dhc" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"dhe" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"dhj" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/titanium, -/area/exploration_shuttle/power) -"dhl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"dhC" = ( -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"dhH" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"dhI" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/item/cell/device/standard, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"dhX" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"dii" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/engineering{ - dir = 4; - name = "Engine Control Room"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/engineering/engine_monitoring) -"dij" = ( -/obj/structure/catwalk, -/obj/machinery/barrier, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"din" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/darkblue/border, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"diy" = ( -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/nuke_storage) -"diG" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/folder/white, -/obj/item/tape_roll, -/obj/floor_decal/corner/grey/diagonal, -/obj/structure/railing/mapped{ - dir = 8; - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/floor_decal/industrial/traffic{ - dir = 8; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled, -/area/assembly/office) -"diI" = ( -/obj/floor_decal/carpet/orange, -/obj/floor_decal/carpet/orange{ - dir = 8 - }, -/obj/floor_decal/carpet/orange{ - dir = 10 - }, -/obj/item/screwdriver, -/turf/simulated/floor/carpet/orange, -/area/crew_quarters/heads/office/ce/cobed) -"diN" = ( -/obj/structure/table/glass, -/obj/machinery/microscope, -/obj/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/forensic/lab) -"diO" = ( -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"diP" = ( -/obj/structure/hygiene/sink{ - pixel_y = -12 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry2) -"diR" = ( -/turf/simulated/open, -/area/hallway/primary/firstdeck/central_stairwell) -"diT" = ( -/obj/machinery/computer/modular/preset/security{ - dir = 8 - }, -/obj/floor_decal/borderfloor/full, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/brig) -"diZ" = ( -/obj/machinery/door/window/brigdoor/southright{ - id = "Cell 3"; - name = "Cell three"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id_tag = "security_permabrig_third_cell_shutters" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/sierra/brig) -"djg" = ( -/obj/floor_decal/corner/black/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dji" = ( -/obj/machinery/light/spot, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"djp" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/floor_decal/spline/plain/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"djt" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/computer/modular/preset/civilian{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/firstdeck) -"djw" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"djA" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"djF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"djH" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"djN" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/structure/bed/chair/padded/blue, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"djQ" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/power) -"djR" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/brig) -"djU" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"dkd" = ( -/obj/floor_decal/corner/lightgrey/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/games{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/docking) -"dkf" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Quartermaster"; - destination = "NanoTrasen Central Command" - }, -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"dkg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"dkl" = ( -/obj/machinery/air_sensor{ - id_tag = "testchamber_sensor" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/rnd/toxins) -"dkt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"dkC" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"dkI" = ( -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/super/critical{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/reinforced, -/area/turret_protected/ai_maint) -"dkJ" = ( -/obj/machinery/button/blast_door{ - dir = 4; - id_tag = "qm_warehouse"; - name = "Warehouse Shutters Control"; - pixel_x = -24; - req_access = list("ACCESS_CARGO") - }, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"dkR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/forestarboard) -"dkS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"dkV" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/maintenance{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/thirddeck/fore) -"dlr" = ( -/obj/structure/hygiene/sink{ - pixel_y = -12 - }, -/obj/floor_decal/floordetail/edgedrain{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue, -/obj/floor_decal/corner/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"dlH" = ( -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/cockpit) -"dlI" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"dlN" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/item/stool/padded/red, -/turf/simulated/floor/tiled, -/area/vacant/cargo) -"dlO" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/green, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"dlV" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"dlX" = ( -/obj/machinery/atmospherics/unary/tank/air, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"dma" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecoms Server Access"; - req_access = newlist(); - secured_wires = 1 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/chamber) -"dmd" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"dme" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"dml" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/door/firedoor, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"dmo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dmw" = ( -/obj/structure/closet/emcloset/anchored, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small, -/obj/machinery/light_switch{ - pixel_x = 10; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"dmA" = ( -/obj/structure/catwalk, -/obj/floor_decal/corner/red/border, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dmG" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"dmJ" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"dmM" = ( -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar) -"dmN" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 8 - }, -/obj/machinery/air_sensor/nacelle/second, -/obj/machinery/atmospherics/unary/outlet_injector{ - injecting = 1; - use_power = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d3port) -"dmO" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/bridgedeck/central_stairwell) -"dmQ" = ( -/obj/item/stool/bar, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"dmW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"dnf" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"dng" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"dnh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"dnl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id_tag = "firingspace"; - name = "FIRING RANGE SAFETY SHIELD" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"dnu" = ( -/obj/structure/table/marble, -/obj/machinery/cooker/cereal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"dnx" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 10 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"dnz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/sign/warning/compressed_gas{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"dnB" = ( -/obj/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/green/bordercorner, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dnG" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/fourth_deck{ - dir = 1; - c_tag = "Fourth Deck - Aft Hallway" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"dnL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/aft) -"dnQ" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - dir = 1; - id_tag = "calypso_shuttle_pump_out_internal" - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/exploration_shuttle/airlock) -"dnR" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/masks, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"dnU" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/camera/network/engine{ - c_tag = "Engine - Heat Exchangers"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"dnV" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine{ - department = "HOP"; - destination = "NanoTrasen Central Command" - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/blue/border{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"dnY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"dob" = ( -/obj/structure/table/steel_reinforced, -/obj/floor_decal/techfloor, -/obj/floor_decal/corner/paleblue{ - dir = 8 - }, -/obj/floor_decal/corner/black, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"dof" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid, -/area/engineering/bluespace/chamber) -"doj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level2) -"dol" = ( -/obj/floor_decal/corner/red/diagonal, -/obj/decal/cleanable/flour, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"dou" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id_tag = "chemistry_lockdown"; - name = "Chemistry Shutters" - }, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_main_reg" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/plating, -/area/medical/chemistry) -"doG" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/suit_storage_unit/standard_unit{ - req_access = newlist() - }, -/obj/machinery/button/alternate/door/bolts{ - id_tag = "bridge_safe_exterior"; - name = "safe room door-control"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"doJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"doM" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/chapel/main) -"doN" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"doP" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/paint_stripe/red, -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/security/sierra/suits) -"doV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft) -"dpn" = ( -/obj/structure/table/standard, -/obj/item/storage/box/detergent, -/obj/item/storage/box/detergent, -/obj/item/ironing_iron, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"dpp" = ( -/obj/floor_decal/corner/black/full, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"dpq" = ( -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"dps" = ( -/obj/floor_decal/corner/lime/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/vending/snix, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/fore) -"dpu" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"dpG" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/office) -"dpI" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"dpR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"dpT" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/ship_map, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"dpV" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod1/station) -"dpX" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/secure/briefcase/nukedisk/sierra, -/obj/prefab/hand_teleporter, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"dpY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plating, -/area/quartermaster/hangar_atmos) -"dqa" = ( -/obj/structure/table/standard, -/obj/item/book/manual/nuclear, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"dqe" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"dqh" = ( -/obj/structure/closet{ - closet_appearance = /singleton/closet_appearance/secure_closet/engineering/tools - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/tape_roll, -/obj/random/powercell, -/obj/item/clothing/glasses/welding, -/obj/item/device/flashlight/maglight, -/obj/item/device/flash, -/obj/item/device/geiger, -/obj/item/device/multitool, -/obj/item/storage/box/lights/mixed, -/obj/item/device/synthesized_instrument/guitar, -/obj/random/single/color/cable_coil, -/obj/random/firstaid, -/obj/random/material, -/obj/random/material_rnd_glass, -/obj/random/material_rnd_steel, -/obj/item/clothing/gloves/insulated, -/obj/item/clothing/mask/plunger, -/turf/simulated/floor/tiled/monotile, -/area/vacant/cargo) -"dqi" = ( -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - name = "Internal Affairs Agent Dorm"; - secured_wires = 1; - hackProof = 1; - ai_control_disabled = 1 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/iaa/cobed) -"dqs" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"dqu" = ( -/obj/structure/bed/chair/padded/black{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"dqv" = ( -/obj/structure/bed/chair/padded/blue{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"dqz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"dqB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"dqF" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge/storage) -"dqP" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"dqY" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"dra" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/random/maintenance, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/engineering/auxpower) -"drb" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#6a97b0" - }, -/area/quartermaster/hangar/upper) -"drh" = ( -/obj/structure/table/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/clothing/head/welding, -/obj/item/storage/belt/utility, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"dro" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/vehicle/train/cargo/trolley, -/obj/floor_decal/spline/plain/brown{ - dir = 10 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"drr" = ( -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"drx" = ( -/obj/item/stool/padded, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"dry" = ( -/obj/machinery/computer/modular/preset/dock{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/half, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"drA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/ship_map, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"drH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/emergency) -"drK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"drP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"dsg" = ( -/obj/structure/closet/bombcloset, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"dsj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3port) -"dsk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley/backroom) -"dsm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"dsp" = ( -/obj/floor_decal/corner/black/border, -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/green, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dsE" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"dsP" = ( -/turf/simulated/wall/r_wall/hull, -/area/security/sierra/prison) -"dsW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/floor_decal/corner/purple, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"dsX" = ( -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/sleep/cryo/south) -"dsY" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cargo_l) -"dtd" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/thirddeck/central_stairwell) -"dte" = ( -/obj/floor_decal/corner/green/half{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"dtn" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"dto" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"dtt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "eng3_outer"; - name = "First Deck Starboard Nacelle Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/thruster/d1starboard) -"dtv" = ( -/obj/item/broken_bottle{ - pixel_x = 10 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"dty" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"dtE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"dtV" = ( -/obj/item/trash/beef{ - pixel_x = -9; - pixel_y = 2 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"dtY" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/structure/reagent_dispensers/watertank, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftstarboard) -"dua" = ( -/obj/structure/bed/sofa/l/brown{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/actor/stage) -"dug" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Engine Output"; - name_tag = "Engine Output" - }, -/obj/machinery/light, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"dul" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"dus" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"dut" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"duu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"dux" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/structure/flora/pottedplant/tall, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"duy" = ( -/obj/structure/table/steel, -/obj/item/book/manual/nt_regs, -/obj/item/folder/nt, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"duz" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/forestarboard) -"duA" = ( -/obj/structure/bed/chair/wood/maple, -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"duB" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft_stairwell) -"duD" = ( -/obj/machinery/door/airlock/civilian{ - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/wood/walnut, -/area/vacant/cargo) -"duE" = ( -/obj/floor_decal/corner/black/mono, -/obj/machinery/door/airlock/command{ - name = "Head Of Security Dorm"; - req_access = newlist(); - secured_wires = 1; - stripe_color = "#9d2300"; - dir = 1 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/hos/cobed) -"duF" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking_1{ - desc = "A warning sign which reads 'NO SMOKING'. Someone has scratched a variety of crude words in gutter across the entire sign."; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"duG" = ( -/obj/structure/table/standard, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/item/folder/nt, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"duJ" = ( -/obj/floor_decal/corner/green/three_quarters{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2, -/obj/floor_decal/corner/purple/bordercorner, -/obj/structure/closet/secure_closet/hydroponics_sierra, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "xenobotany_access_maintaince"; - name = "Xenobotany Lab Access Console"; - pixel_y = -24; - req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH"); - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"duQ" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level2) -"duT" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/bed/chair/pew/left, -/turf/simulated/floor/wood, -/area/crew_quarters/actor/stage) -"dva" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"dvc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/structure/lattice, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dvd" = ( -/obj/structure/sign/warning/biohazard{ - pixel_y = -24 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/machinery/computer/atmoscontrol/laptop{ - monitored_alarm_ids = list("xenobio1_alarm","xenobio2_alarm","xenobio3_alarm","xenobio4_alarm","xenobio5_alarm"); - req_access = list("ACCESS_RESEARCH") - }, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"dvv" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"dvx" = ( -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"dvy" = ( -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/power) -"dvA" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"dvF" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs) -"dvG" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"dvK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"dvU" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"dvW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dwg" = ( -/obj/structure/sign/warning/vent_port{ - dir = 1 - }, -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d1port) -"dwh" = ( -/obj/machinery/sparker{ - id_tag = "Isocell3"; - pixel_x = -18 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell3) -"dwo" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery) -"dwq" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"dwz" = ( -/obj/floor_decal/corner/red, -/obj/machinery/button/blast_door{ - id_tag = "security_permabrig_second_cell_shutters"; - name = "2nd Cell Shutters"; - req_access = list("ACCESS_SECURITY"); - pixel_x = 21; - dir = 8 - }, -/obj/machinery/button/flasher{ - dir = 8; - pixel_x = 22; - pixel_y = -9; - id_tag = "security_second_cell_flash"; - req_access = list("ACCESS_SECURITY") - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"dwA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"dwC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft) -"dwD" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"dwG" = ( -/obj/floor_decal/corner/red, -/obj/structure/disposalpipe/segment, -/obj/machinery/button/alternate/door/bolts{ - dir = 4; - id_tag = "bar_private_room_1"; - name = "Unlock"; - pixel_x = -24; - pixel_y = -7; - req_access = list("ACCESS_BAR") - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"dwQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"dwT" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"dwV" = ( -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"dxa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking_1{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"dxd" = ( -/obj/floor_decal/corner/grey/diagonal, -/obj/structure/flora/pottedplant/orientaltree, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/rnd/office) -"dxg" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"dxi" = ( -/obj/structure/sign/warning/hot_exhaust{ - dir = 4; - pixel_x = -32 - }, -/obj/structure/catwalk, -/turf/simulated/open, -/area/space) -"dxk" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/computer/cryopod{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod3/station) -"dxl" = ( -/obj/structure/sign/warning/moving_parts{ - dir = 8; - pixel_x = 34 - }, -/obj/machinery/conveyor{ - id = "charon_cargo_out"; - name = "charon interior conveyor belt" - }, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"dxo" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/closet/secure_closet{ - name = "long term chamber locker"; - req_access = list("ACCESS_SECURITY") - }, -/obj/floor_decal/borderfloor/full, -/obj/floor_decal/industrial/hatch/orange, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/brig) -"dxq" = ( -/obj/floor_decal/chapel, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"dxB" = ( -/obj/structure/bed/chair/office/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"dxC" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/airlock_canisters) -"dxN" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"dxQ" = ( -/obj/floor_decal/industrial/danger, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"dxS" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ - dir = 4 - }, -/obj/machinery/light, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_teleport) -"dxX" = ( -/obj/floor_decal/techfloor/orange, -/obj/machinery/conveyor{ - dir = 4; - id = "compactor" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/compactor) -"dxZ" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/seconddeck/aftstarboard) -"dyd" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"dyp" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/fore) -"dys" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/suits) -"dyx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"dyz" = ( -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"dyA" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/engine_smes) -"dyC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"dyD" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/wood, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"dyK" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"dyS" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"dyT" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id_tag = "concheckwindow"; - name = "Operation Checkpoint Shutters"; - opacity = 0 - }, -/obj/wallframe_spawn/reinforced, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/opscheck) -"dzc" = ( -/obj/structure/table/woodentable_reinforced/ebony, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{ - pixel_y = 9; - pixel_x = -2 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{ - pixel_y = 1; - pixel_x = 3 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"dzd" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/airlock_canisters) -"dze" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/obj/machinery/vending/coffee{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"dzh" = ( -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/green/bordercorner, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"dzl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation/second) -"dzn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/flasher{ - id_tag = "security_perm_chamber_flash"; - name = "Floor mounted flash" - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/prison) -"dzt" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/hop) -"dzv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"dzx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/catwalk_plated, -/obj/machinery/camera/network/hangar{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"dzD" = ( -/obj/machinery/atmospherics/unary/engine{ - dir = 8 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1port) -"dzO" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Substation - Telecommunications"; - charge = 5e+006; - input_attempt = 1; - input_level = 250000; - output_attempt = 1; - output_level = 250000 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"dzP" = ( -/obj/machinery/recharger/wallcharger{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp, -/obj/random/snack, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"dzR" = ( -/obj/structure/closet/crate/trashcart, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"dzV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hydroponics) -"dzY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/button/blast_door{ - id_tag = "petrovcell3"; - name = "Test Chamber Vent"; - pixel_x = -26; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"dAl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"dAn" = ( -/obj/machinery/tele_beacon, -/obj/structure/handrail{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"dAr" = ( -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"dAw" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"dAy" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"dAE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"dAF" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/closet/emcloset, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"dAH" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 8 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 8; - id_tag = "escape_pod_4_pump" - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/grey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod4/station) -"dAK" = ( -/obj/floor_decal/corner/darkblue/border, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"dAQ" = ( -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"dAX" = ( -/obj/machinery/door/airlock/glass/security{ - name = "Forensics" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/forensic/lab) -"dAY" = ( -/obj/item/stack/tile/walnut{ - pixel_y = 17; - pixel_x = -20 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/vacant/bar) -"dBb" = ( -/obj/structure/closet/secure_closet/engineering_sierra, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/gps, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"dBd" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"dBh" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"dBm" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"dBn" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/obj/floor_decal/corner/black/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics/third_deck_storage) -"dBq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Storage"; - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/utility) -"dBv" = ( -/obj/structure/table/standard, -/obj/item/sticky_pad/random, -/obj/item/tape_roll, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/floor_decal/corner/yellow/mono, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Primary Tool Storage" - }, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"dBw" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"dBG" = ( -/obj/machinery/computer/modular/preset/security, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"dBI" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/armory) -"dBO" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cargo_r) -"dBP" = ( -/obj/machinery/telecomms/receiver/preset_right, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"dBS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/item/stool/padded/red, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"dBU" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/morgue) -"dBV" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "EngineVent"; - name = "Reactor Vent" - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/engineering/engine_room) -"dCa" = ( -/obj/machinery/cooker/grill, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Garden - Straboard" - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"dCc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"dCe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"dCk" = ( -/obj/floor_decal/corner/black/border{ - dir = 5 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dCm" = ( -/obj/decal/cleanable/dirt, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"dCn" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"dCr" = ( -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"dCx" = ( -/obj/structure/table/standard, -/obj/item/device/integrated_electronics/debugger{ - pixel_x = -5 - }, -/obj/item/device/integrated_electronics/analyzer{ - pixel_x = 6 - }, -/obj/item/device/integrated_electronics/wirer, -/obj/item/device/integrated_circuit_printer, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/development) -"dCA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"dCG" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/corner/red/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/gym) -"dCM" = ( -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/random/trash, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"dCO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"dCQ" = ( -/obj/structure/cart{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftstarboard) -"dCW" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"dDa" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dDb" = ( -/obj/random_multi/single_item/space_rabbit, -/obj/structure/catwalk, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/space, -/area/space) -"dDe" = ( -/obj/structure/railing/mapped, -/obj/structure/rubble, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"dDf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - autoset_access = 0; - name = "Petrov Dock"; - req_access = list(list("ACCESS_PETROV","ACCESS_SEC_DOORS")) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"dDg" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/item/target/alien, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dDh" = ( -/turf/simulated/wall/prepainted, -/area/vacant/utility) -"dDj" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"dDp" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"dDx" = ( -/obj/machinery/door/airlock/hatch{ - autoset_access = 0; - req_access = list("ACCESS_EXPEDITION_SHUTTLE") - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"dDz" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"dDA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"dDG" = ( -/obj/machinery/atmospherics/unary/tank/air{ - dir = 8; - start_pressure = 450 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"dDN" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/center) -"dDU" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"dDW" = ( -/turf/simulated/wall/prepainted{ - can_open = 1 - }, -/area/maintenance/firstdeck/aftstarboard) -"dEa" = ( -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"dEo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"dEs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"dEv" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/fourthdeck/foreport) -"dEy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"dEB" = ( -/turf/unsimulated/mask, -/area/hallway/primary/firstdeck/center) -"dEI" = ( -/obj/random/obstruction, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"dEQ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"dET" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"dFc" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/maintenance_equipstorage) -"dFh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"dFn" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"dFw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - target_pressure = 40 - }, -/obj/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"dFA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"dFF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"dFK" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod4/station) -"dFQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"dFT" = ( -/obj/structure/catwalk, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dFV" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/industrial/outline/red, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"dFZ" = ( -/obj/machinery/floodlight, -/obj/floor_decal/spline/plain/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"dGd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"dGe" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/table/rack, -/obj/random/junkfood, -/obj/random/hat, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"dGi" = ( -/obj/floor_decal/corner/black/mono, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/modular/preset/cardslot/command{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"dGl" = ( -/obj/floor_decal/techfloor/corner, -/obj/random/trash, -/obj/structure/cart{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"dGx" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"dGz" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"dGA" = ( -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dGC" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"dGG" = ( -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"dGJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/corner/grey/border{ - dir = 9 - }, -/obj/floor_decal/corner/grey/bordercorner, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"dGT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/obj/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled/steel_grid, -/area/security/prison) -"dGY" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"dHa" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/computer/modular/preset/civilian/professional{ - dir = 4 - }, -/obj/floor_decal/corner/purple/full, -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"dHi" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/item/stack/material/aluminium/fifty, -/obj/item/stack/material/plastic/fifty, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1; - icon_state = "railing0-1" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"dHu" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/light, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"dHv" = ( -/obj/floor_decal/industrial/traffic{ - dir = 1; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/office) -"dHB" = ( -/obj/structure/sign/warning/hot_exhaust{ - dir = 1; - pixel_y = -32 - }, -/turf/space, -/area/space) -"dHC" = ( -/obj/structure/cryofeed, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"dHF" = ( -/obj/machinery/door/airlock/command{ - name = "Flight Control Tower"; - req_access = list("ACCESS_HANGAR"); - autoset_access = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/seconddeck/starboard) -"dHK" = ( -/turf/simulated/wall/r_wall/hull, -/area/engineering/hardstorage) -"dHN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/engineering{ - name = "Equipment" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/engineering/locker_room) -"dHW" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/lime/border{ - dir = 6 - }, -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"dIb" = ( -/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ - id_tag = "engine_airlock"; - name = "Engine Room Airlock Controlls"; - pixel_y = 24; - req_access = list("ACCESS_ENGINE_EQUIP"); - tag_exterior_door = "engine_airlock_outer"; - tag_chamber_sensor = "engine_airlock_sensor"; - tag_interior_door = "engine_airlock_inner"; - tag_interior_sensor = "engine_airlock_sensor_in"; - tag_exterior_sensor = "engine_airlock_sensor_out"; - tag_airpump = "engine_airlock_pump" - }, -/obj/machinery/airlock_sensor{ - id_tag = "engine_airlock_sensor"; - master_tag = "engine_airlock"; - name = "Cycle Airlock"; - pixel_x = 14; - pixel_y = 24 - }, -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"dIi" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/structure/flora/pottedplant/tall, -/obj/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"dIj" = ( -/obj/machinery/button/blast_door{ - id_tag = "sup_office"; - name = "Desk Shutter Control"; - pixel_y = 22; - req_access = list("ACCESS_CARGO") - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/folder/yellow, -/obj/floor_decal/corner/yellow/three_quarters{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"dIn" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/emergency) -"dIp" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/rnd/entry) -"dIu" = ( -/obj/machinery/tele_beacon, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"dIE" = ( -/obj/machinery/robotics_fabricator, -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"dIF" = ( -/obj/floor_decal/corner/purple/half{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"dII" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#4c535b" - }, -/area/quartermaster/hangar/upper) -"dIL" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"dIP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/spot, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"dIR" = ( -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_y = 30 - }, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe) -"dIX" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation/second) -"dJd" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/item/material/ashtray/plastic{ - pixel_y = 5; - pixel_x = 1 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"dJe" = ( -/obj/floor_decal/industrial/traffic, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dJg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft) -"dJh" = ( -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/closet/emcloset/anchored, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"dJo" = ( -/obj/structure/table/glass, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/power/apc/high/critical{ - dir = 4; - pixel_x = 24; - name = "east bump" - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/corp, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"dJp" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 1; - id_tag = "petrov_shuttle_pump" - }, -/obj/floor_decal/techfloor, -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/petrov/airlock) -"dJq" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "admin_shuttle_dock_sensor"; - master_tag = "admin_shuttle_dock"; - pixel_x = -24; - pixel_y = -8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"dJs" = ( -/obj/structure/bed/chair/padded/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"dJA" = ( -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters/open{ - name = "Prison Lobby Windows Shutters"; - id_tag = "prison_lobby_window"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/sierra/brig) -"dJE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1starboard) -"dJF" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/prepainted, -/area/security/sierra/prison) -"dJO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/hygiene/toilet{ - name = "captain's throne" - }, -/obj/item/soap, -/obj/structure/curtain/open/shower, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/heads/captain/secret_room) -"dJP" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 14; - pixel_x = -5 - }, -/obj/floor_decal/spline/fancy/wood, -/obj/floor_decal/carpet/blue, -/obj/floor_decal/carpet/blue{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/cafe/upper) -"dJQ" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 1; - pixel_y = -13 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"dJY" = ( -/obj/item/extinguisher/mini, -/obj/structure/table, -/turf/simulated/floor/wood/walnut, -/area/vacant/gambling) -"dJZ" = ( -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/orange/corner, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"dKc" = ( -/obj/machinery/computer/modular/preset/library, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"dKd" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"dKh" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/hop) -"dKo" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 6 - }, -/obj/machinery/camera/network/bridge_deck{ - dir = 8; - c_tag = "Bridge Deck - Aft Hallway - Port Rooms" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"dKv" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/medical{ - name = "Hospital Back Room" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id_tag = "med_main_reg"; - name = "Infirmary Entry Shutters" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"dKB" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/security/nuke_storage) -"dKE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"dKQ" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"dLa" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"dLd" = ( -/obj/structure/closet/l3closet/virology, -/turf/simulated/floor/tiled/freezer, -/area/medical/virology/lab) -"dLe" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/atmos/storage) -"dLj" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/morgue{ - dir = 2 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/forestarboard) -"dLk" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"dLm" = ( -/obj/floor_decal/corner/green/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/centrifuge, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"dLu" = ( -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/thirddeck/starboard) -"dLD" = ( -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Port Hallway"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"dLE" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "ai_core_airlock"; - name = "AI Core Airlock Console"; - pixel_y = 24; - req_access = list("ACCESS_AI_UPLOAD"); - tag_airpump = "ai_core_pump"; - tag_chamber_sensor = "ai_core_sensor"; - tag_exterior_door = "ai_core_outer"; - tag_interior_door = "ai_core_inner" - }, -/turf/simulated/floor/tiled/techmaint, -/area/turret_protected/ai_teleport) -"dLK" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/synthesized_instrument/synthesizer, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"dLM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/prototype/engine) -"dLU" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "xenobotany_access_maintaince_outer"; - name = "Xenobotany Lab Access" - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/xenoflora) -"dMb" = ( -/obj/structure/disposaloutlet{ - dir = 8; - name = "cargo outlet" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/exploration_shuttle/airlock) -"dMc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"dMl" = ( -/obj/wallframe_spawn/reinforced_phoron/titanium, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/paint/nt_white, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "toxins_petrov_shutters"; - name = "Mixing Chamber Blast Shutters" - }, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/gas) -"dMy" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"dMC" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "hangar_checkpoint_shutters"; - name = "Hangar Deck Checkpoint Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/security/sierra/dockcheck) -"dME" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"dMG" = ( -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"dMH" = ( -/obj/structure/closet/crate/secure/biohazard{ - req_access = list(list("ACCESS_RESEARCH","ACCESS_EXPLORER")) - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"dMK" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - opacity = 0; - id_tag = "lobb_hall_shutt" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"dMQ" = ( -/obj/machinery/atmospherics/unary/tank{ - color = "#ff0000"; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"dMS" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"dMW" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/solar) -"dNa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Solar Control - Third Deck - Port" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"dNb" = ( -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "pathfinder_office" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - id_tag = "exp_leader_window_to_space"; - name = "Exploration Leader Window Blast Door" - }, -/turf/simulated/floor/plating, -/area/command/exploration_leader) -"dNc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/paper_bin{ - pixel_y = 10 - }, -/obj/item/pen{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"dNg" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"dNj" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"dNk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"dNl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/button/alternate/door/bolts{ - id_tag = "civsafedoor"; - name = "safe room door-control"; - pixel_y = 24 - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"dNp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"dNr" = ( -/obj/structure/railing/mapped, -/obj/structure/bed/sofa/r/blue, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"dNs" = ( -/obj/catwalk_plated, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"dNz" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/research) -"dND" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"dNN" = ( -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply{ - pixel_y = -8; - pixel_x = -4 - }, -/obj/random/tech_supply{ - pixel_y = 7; - pixel_x = 6 - }, -/obj/random/tool{ - pixel_y = -3; - pixel_x = 4 - }, -/obj/random/tool{ - pixel_x = -2 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"dNR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8; - init_color = "#aa5f61"; - color = "#aa5f61" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"dNT" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/glass2/wine, -/obj/item/reagent_containers/food/drinks/glass2/wine, -/obj/item/reagent_containers/food/drinks/bottle/tadmorwine, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/hop/cobed) -"dNX" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"dNY" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters/open{ - name = "Brig's visiting room shutters"; - id_tag = "visiting_room_windows_shutters" - }, -/obj/paint_stripe/red, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/prison) -"dOc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/wall/r_wall/hull{ - can_open = 1 - }, -/area/rnd/xenobiology/level1) -"dOd" = ( -/obj/machinery/computer/modular/preset/medical{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"dOh" = ( -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/corner/black/bordercorner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/iaa/iso_quarters) -"dOk" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/item/modular_computer/telescreen/preset/generic{ - pixel_x = -32; - pixel_y = -9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/nuke_storage) -"dOl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftport) -"dOr" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/visitors) -"dOA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"dOB" = ( -/obj/structure/sign/nanotrasen{ - dir = 4 - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/solar) -"dOH" = ( -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/selfestructgrid, -/area/security/nuke_storage) -"dOK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"dOR" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"dOS" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"dOV" = ( -/obj/landmark{ - name = "carpspawn" - }, -/turf/simulated/floor/shuttle_ceiling/sierra, -/area/space) -"dPg" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/bridge) -"dPl" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/tcommsat/storage) -"dPn" = ( -/obj/structure/coatrack{ - pixel_x = 11; - pixel_y = 23 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"dPq" = ( -/obj/structure/rubble, -/obj/decal/cleanable/dirt, -/obj/random/junk, -/obj/random/junk, -/obj/decal/cleanable/filth, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"dPt" = ( -/obj/machinery/vending/cola{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/corner/lime/mono, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/center) -"dPv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "d2portnacelle" - }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"dPB" = ( -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/equipment) -"dPE" = ( -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/button/alternate/door/bolts{ - dir = 8; - id_tag = "bar_private_room_2"; - name = "Unlock"; - pixel_x = 24; - pixel_y = -7; - req_access = list("ACCESS_BAR") - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"dPO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"dPP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"dQa" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - id = "CO21p_in"; - injecting = 1; - use_power = 1 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d3starboard) -"dQl" = ( -/obj/machinery/door/airlock/civilian{ - name = "Long Term Prison" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/prison) -"dQp" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/machinery/door/blast/regular/open{ - id_tag = "PetrovShield"; - name = "Petrov Blast Shutters" - }, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/plating, -/area/shuttle/petrov/cockpit) -"dQq" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"dQs" = ( -/obj/machinery/beehive, -/obj/floor_decal/corner/green/half, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"dQB" = ( -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/obj/structure/sign/nanotrasen, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/cargo_l) -"dQG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile, -/area/crew_quarters/head) -"dQH" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/abandoned_hydroponics) -"dQM" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/xenobiology/entry) -"dQP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"dQU" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"dQY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"dRc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"dRi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"dRl" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 4; - id_tag = "hydro<-bar"; - name = "Hydro Shutters" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/bar) -"dRn" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 10 - }, -/obj/machinery/atmospherics/valve/shutoff/supply, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"dRq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/deckofficer) -"dRs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/lime/border{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"dRw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"dRD" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"dRO" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/starboard) -"dRP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"dRQ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dSg" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"dSr" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"dSt" = ( -/obj/machinery/door/airlock/external/bolted{ - dir = 4; - frequency = 1380; - id_tag = "escape_pod_3_hatch"; - name = "Escape Pod Three Hatch" - }, -/obj/machinery/shield_diffuser, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod3/station) -"dSz" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/bed/chair/wood/maple, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"dSC" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"dSQ" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"dSS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"dSU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"dSW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/engineering{ - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"dSX" = ( -/obj/structure/sign/warning/secure_area{ - dir = 8; - pixel_x = 32 - }, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"dSZ" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/structure/shuttle/engine/heater{ - pixel_y = 32 - }, -/turf/simulated/floor/airless, -/area/shuttle/escape_pod/escape_pod1/station) -"dTa" = ( -/obj/machinery/ai_status_display, -/obj/paint_stripe/turquoise, -/turf/simulated/wall/r_wall/prepainted, -/area/turret_protected/ai) -"dTq" = ( -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/center) -"dTy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"dTA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - id_tag = "misclab"; - name = "Test Chamber Blast Doors"; - dir = 4 - }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/plating, -/area/rnd/containment) -"dTD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/fireaxecabinet{ - dir = 4; - pixel_y = 32 - }, -/obj/structure/table/rack, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/storage/box/lights/mixed, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"dTL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"dTW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/barrier, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"dTZ" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"dUd" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Air to Portables" - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"dUh" = ( -/obj/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/structure/fireaxecabinet{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"dUn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/steel, -/obj/machinery/photocopier/faxmachine{ - department = "HOS"; - destination = "NanoTrasen Central Command" - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = -26; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"dUq" = ( -/obj/floor_decal/chapel{ - dir = 1 - }, -/obj/structure/bed/chair/pew/mahogany, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"dUD" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"dUF" = ( -/obj/machinery/atmospherics/omni/mixer{ - active_power_usage = 7500; - tag_north = 1; - tag_north_con = 0.5; - tag_south = 2; - tag_west = 1; - tag_west_con = 0.5 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"dUH" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/structure/bed/chair/padded/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"dUK" = ( -/obj/structure/table/woodentable/maple, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/carpet/purple{ - dir = 8 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/office) -"dUQ" = ( -/obj/decal/cleanable/filth, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"dUV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"dUW" = ( -/obj/machinery/atmospherics/valve/digital{ - name = "TEG bypass valve" - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"dVc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/closet/secure_closet/virology, -/obj/item/storage/box/monkeycubes, -/turf/simulated/floor/tiled/freezer, -/area/medical/virology/lab) -"dVj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"dVn" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"dVo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"dVr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"dVs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"dVD" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"dVG" = ( -/obj/structure/flora/seaweed/mid, -/obj/fluid_mapped, -/turf/simulated/floor/beach/sand, -/area/rnd/xenobiology/level2) -"dVH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/heads/office/rd/cobed) -"dVJ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Chamber Input" - }, -/obj/machinery/button/blast_door{ - id_tag = "toxins_petrov_exhaust"; - name = "Chamber Vent"; - pixel_y = -24; - pixel_x = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "toxins_petrov_shutters"; - name = "Chamber Protective Shutters"; - pixel_y = -24; - pixel_x = -5 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"dVL" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"dVN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"dVP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"dVR" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/power/rad_collector, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"dVT" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "solar_port_inner"; - name = "Engineering External Access" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar) -"dWf" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"dWg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Fuel Bay" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/fuelbay) -"dWi" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/structure/table/woodentable_reinforced/ebony, -/obj/machinery/recharger, -/obj/machinery/light/spot, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"dWn" = ( -/obj/structure/catwalk, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"dWp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"dWr" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/infirmreception) -"dWt" = ( -/obj/structure/flora/pottedplant/decorative, -/obj/floor_decal/corner/lime/half{ - dir = 4 - }, -/obj/floor_decal/corner/lime{ - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Central Stairwell" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/central_stairwell) -"dWy" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"dWA" = ( -/obj/machinery/papershredder, -/obj/machinery/computer/guestpass{ - pixel_y = 30 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"dWB" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"dWC" = ( -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/maintenance/firstdeck/forestarboard) -"dWF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"dWJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"dWM" = ( -/obj/floor_decal/industrial/warning/half, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/exploration/eva) -"dWO" = ( -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"dWS" = ( -/obj/floor_decal/corner/black/mono, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"dXc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa) -"dXe" = ( -/obj/structure/closet/jcloset/sierra, -/obj/floor_decal/corner/purple{ - pixel_y = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"dXp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"dXy" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"dXI" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/floor_decal/corner/red/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/fore) -"dXO" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"dYa" = ( -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"dYd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"dYi" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"dYk" = ( -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"dYl" = ( -/obj/structure/sign/directions/supply{ - dir = 8; - pixel_y = -24 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Central Stairwell"; - dir = 1 - }, -/turf/simulated/open, -/area/hallway/primary/thirddeck/central_stairwell) -"dYr" = ( -/obj/machinery/vending/cigarette{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/lime/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/machinery/light, -/obj/floor_decal/corner/lime/bordercorner2, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"dYs" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"dYx" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/SCG, -/obj/floor_decal/carpet/blue2{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/hop) -"dYA" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"dYG" = ( -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"dYL" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"dYS" = ( -/obj/machinery/atmospherics/valve/shutoff/supply, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"dYW" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/equipstorage) -"dYZ" = ( -/obj/structure/bed/chair/office/purple{ - dir = 8 - }, -/obj/floor_decal/corner/purple/three_quarters{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"dZf" = ( -/obj/floor_decal/carpet/purple{ - dir = 8 - }, -/obj/floor_decal/carpet/purple{ - dir = 1 - }, -/obj/floor_decal/carpet/purple{ - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/captain/beach) -"dZg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"dZm" = ( -/obj/structure/sign/warning/high_voltage{ - dir = 4 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/substation/seconddeck) -"dZu" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"dZA" = ( -/obj/structure/hygiene/faucet, -/turf/simulated/floor/pool, -/area/crew_quarters/sauna) -"dZF" = ( -/obj/structure/table/standard, -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"dZK" = ( -/obj/structure/fitness/weightlifter, -/obj/floor_decal/corner/red/full, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/gym) -"dZU" = ( -/obj/structure/table/glass, -/obj/random/maintenance, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/item/defibrillator/loaded, -/turf/simulated/floor/tiled/white, -/area/vacant/infirmary) -"dZW" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/barrier, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"eae" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"eaf" = ( -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/generic, -/obj/random/junk, -/obj/item/frame/apc, -/turf/simulated/floor/plating, -/area/vacant/mess) -"eah" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -23 - }, -/obj/item/reagent_containers/food/snacks/semki, -/obj/structure/displaycase{ - icon_state = "labcageb0" - }, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"eai" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/prepainted, -/area/maintenance/substation/fourthdeck) -"eap" = ( -/obj/structure/closet/crate/secure/loot, -/turf/simulated/floor/reinforced, -/area/maintenance/firstdeck/aftport) -"eav" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - color = null; - dir = 5 - }, -/obj/floor_decal/corner/blue/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - color = null; - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/random/blood_packs, -/obj/random/blood_packs, -/obj/item/roller_bed, -/obj/item/roller_bed, -/obj/structure/closet/medical_wall{ - pixel_y = 32 - }, -/obj/item/storage/firstaid/sleekstab, -/obj/item/storage/firstaid/sleekstab, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"eaD" = ( -/obj/machinery/artifact_scanpad, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell1) -"eaN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/prison) -"eaO" = ( -/obj/structure/hygiene/shower{ - pixel_y = 15 - }, -/obj/floor_decal/industrial/warning, -/obj/decal/cleanable/blood, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"eaT" = ( -/obj/wallframe_spawn/reinforced_phoron/titanium, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell1) -"ebc" = ( -/obj/floor_decal/carpet/purple, -/obj/floor_decal/carpet/purple{ - dir = 4 - }, -/obj/floor_decal/carpet/purple{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/main) -"ebf" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/machinery/sparker{ - id_tag = "engines"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - injecting = 1; - use_power = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d3starboard) -"ebh" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/constructable_frame, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"ebl" = ( -/obj/machinery/button/blast_door{ - id_tag = "xenobioa3"; - name = "Containment Blast Doors"; - pixel_x = -6; - pixel_y = 21; - req_access = list("ACCESS_RESEARCH") - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"ebs" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/substation/bridgedeck) -"ebt" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/thirddeck) -"ebz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"ebF" = ( -/obj/structure/bed/chair/padded/green{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"ebG" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"ebM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/sign/warning/nosmoking_1{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"ece" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"ecg" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id_tag = "hangar_checkpoint_shutters"; - name = "Hangar Deck Checkpoint Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/sierra/dockcheck) -"ecl" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 4; - id_tag = "escape_pod_2_pump" - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - dir = 4; - id_tag = "escape_pod_2"; - name = "escape pod two controller"; - pixel_x = -20; - tag_door = "escape_pod_2_hatch"; - frequency = 1380 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/grey/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod2/station) -"ecA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/paint_stripe/red, -/obj/wallframe_spawn/reinforced/polarized{ - id = "bo_windows" - }, -/turf/simulated/floor/plating, -/area/security/sierra/sergeant) -"ecC" = ( -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/corner/green/bordercorner, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"ecF" = ( -/obj/machinery/disposal, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"ecJ" = ( -/obj/machinery/door/blast/shutters{ - dir = 4; - id_tag = "security_permabrig_second_cell_shutters" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/sierra/brig) -"ecL" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"ecS" = ( -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/blue/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"edb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"edc" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"edh" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters/open{ - name = "Brig's visiting room shutters"; - id_tag = "visiting_room_windows_shutters" - }, -/obj/paint_stripe/red, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/security/prison) -"edi" = ( -/obj/floor_decal/industrial/outline/blue, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery/second) -"edj" = ( -/obj/fluid_mapped, -/obj/item/clothing/under/swimsuit/red, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"edr" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/folder/blue, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"edt" = ( -/obj/structure/disposalpipe/junction/yjunction, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"edu" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/bridge/lobby) -"edw" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"edA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/catwalk_plated/dark, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/bridge/hallway) -"edD" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/storage) -"edI" = ( -/obj/structure/closet/secure_closet/prospector, -/obj/item/shuttle_beacon, -/obj/item/device/radio, -/obj/item/storage/belt/utility/full, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"edK" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"edR" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/gas) -"eea" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"eec" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Engine Subgrid"; - name_tag = "Engine Subgrid" - }, -/obj/machinery/power/apc/super/critical{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"eee" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"eek" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/closet/secure_closet/cabinet/forensics{ - name = "forensics technician's cabinet" - }, -/obj/item/storage/briefcase/crimekit{ - pixel_y = 10 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/forensic/lab) -"eel" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"eep" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ - id_tag = "engine_atmos_airlock"; - name = "Engine Room Airlock Controlls"; - pixel_y = -26; - req_access = list("ACCESS_ENGINE_EQUIP"); - tag_interior_door = "engine_atmos_airlock_inner"; - tag_exterior_door = "engine_atmos_airlock_outer"; - tag_airpump = "engine_atmos_airlock_vent"; - dir = 1; - tag_exterior_sensor = "engine_atmos_airlock_sensor_out"; - tag_interior_sensor = "engine_atmos_airlock_sensor_in"; - tag_chamber_sensor = "engine_atmos_airlock_chamber" - }, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/airlock_sensor/airlock_exterior{ - id_tag = "engine_atmos_airlock_sensor_out"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"eeE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"eeI" = ( -/obj/decal/cleanable/dirt, -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"eeL" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/structure/closet/crate/freezer/rations, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod4/station) -"eeW" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"efa" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"efb" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"eff" = ( -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"efi" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/hallway) -"efu" = ( -/obj/floor_decal/techfloor, -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/structure/closet/crate/freezer/rations, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"efw" = ( -/obj/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/computer/air_control{ - input_tag = "o23p_in"; - name = "Oxygen Supply Control"; - output_tag = "o23p_out"; - sensor_name = "Tank"; - sensor_tag = "ReacEngOxygen3" - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"efB" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sauna) -"efD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"efM" = ( -/obj/machinery/door/airlock/highsecurity{ - locked = 1; - name = "AI Core Access" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/turret_protected/ai) -"efQ" = ( -/obj/structure/bed/chair/shuttle, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/escape_pod/escape_pod11/station) -"efZ" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - dir = 4; - id_tag = "rescue_shuttle_dock_airlock_pump"; - power_rating = 25000 - }, -/obj/machinery/oxygen_pump{ - dir = 8; - pixel_x = -27 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"egb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"egd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"egi" = ( -/obj/structure/sign/warning/hot_exhaust{ - dir = 4; - pixel_x = -32 - }, -/turf/space, -/area/space) -"egj" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/seconddeck/center) -"egk" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/compactor) -"egn" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown2_2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/aft) -"ego" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"egr" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp/green, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"egt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/spline/fancy/wood/cee, -/obj/machinery/door/window/westright{ - dir = 2 - }, -/obj/machinery/door/window/westright{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/breakroom) -"egz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"egI" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_north = 1; - tag_south = 2; - tag_west = 8 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"egJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/closet/emcloset/anchored, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"egL" = ( -/obj/floor_decal/corner/green/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"egT" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"egW" = ( -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/development) -"egZ" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"eha" = ( -/obj/machinery/reagentgrinder, -/turf/simulated/floor/plating, -/area/vacant/infirmary) -"ehe" = ( -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley/backroom) -"ehm" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"ehs" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - name = "Air to Portables" - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/storage) -"eht" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/hallway/infirmary) -"ehw" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"ehB" = ( -/obj/structure/table/steel, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"ehI" = ( -/obj/machinery/telecomms/processor/preset_four, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"ehT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"ehU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/recharger, -/obj/structure/table/steel_reinforced, -/obj/floor_decal/techfloor, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"ehW" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"eia" = ( -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue) -"eig" = ( -/obj/structure/curtain/medical, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"eiD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d3starboard) -"eiO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Medical Equipment"; - sort_type = "Medical Equipment" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/aft) -"eiQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"eiT" = ( -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/explorer, -/obj/item/storage/bolt_bag/full_of_beacons, -/obj/item/clothing/gloves/anomaly_detector, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration) -"eiV" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/exploration/eva) -"eiW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Fusion Substation"; - name_tag = "Fusion Substation" - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"eja" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 8; - id_tag = "escape_pod_1_pump" - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - dir = 8; - id_tag = "escape_pod_1"; - name = "escape pod one controller"; - pixel_x = 20; - tag_door = "escape_pod_1_hatch"; - frequency = 1380 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/grey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod1/station) -"ejc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"ejg" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/captain) -"ejh" = ( -/obj/structure/table/steel, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/atmospipes, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"ejn" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"ejo" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters/open{ - id_tag = "security_permabrig_lobby_shutters" - }, -/obj/paint_stripe/red, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/turf/simulated/floor/plating, -/area/security/sierra/brig) -"ejp" = ( -/obj/structure/bed/sofa/l/black{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"ejr" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/virology/ward) -"ejy" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"ejB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"ejL" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"ejO" = ( -/obj/machinery/door/airlock/hatch/maintenance{ - name = "First Deck Port Nacelle"; - req_access = newlist() - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/thruster/d1port) -"ejQ" = ( -/obj/catwalk_plated, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"ejR" = ( -/obj/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"ejS" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"ekc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"eke" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"ekr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch/maintenance{ - autoset_access = 0; - name = "Third Deck Starboard Nacelle"; - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"ekv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmospherics - Entry"; - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"ekw" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/structure/handrail{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"ekG" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"ekH" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"ekP" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - target_pressure = 200 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"ekS" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/molten_item, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"ekV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"ekY" = ( -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/infirmreception) -"ekZ" = ( -/obj/structure/table/standard, -/obj/item/device/integrated_electronics/wirer, -/obj/item/device/integrated_electronics/debugger{ - pixel_x = -5 - }, -/obj/item/device/integrated_electronics/analyzer{ - pixel_x = 6 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/equipment) -"eln" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/sleep/cryo/south) -"elu" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"elC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"elF" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "cockpit_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cockpit) -"elJ" = ( -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood{ - icon_state = "wood_broken0" - }, -/area/maintenance/firstdeck/forestarboard) -"elL" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/cyan{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/structure/railing/mapped, -/turf/simulated/floor/airless, -/area/space) -"elN" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"elP" = ( -/obj/random/junk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"elS" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/random/soap, -/turf/simulated/floor/tiled, -/area/maintenance/firstdeck/aftstarboard) -"elU" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/material/ashtray/bronze, -/obj/item/storage/mirror{ - pixel_x = 24 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor) -"emb" = ( -/obj/machinery/power/smes/buildable/preset/sierra/substation{ - RCon_tag = "Utility - First Backup" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light/small, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/engineering/auxpower) -"emi" = ( -/obj/machinery/door/window{ - autoset_access = 0; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"emo" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway) -"emp" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/machinery/power/generator{ - anchored = 1; - dir = 8 - }, -/obj/structure/cable/yellow, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"emx" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/closet/l3closet/scientist/multi, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/equipment) -"emC" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Special Containment"; - dir = 4; - network = list("Research","Miscellaneous Reseach") - }, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"emE" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/pump, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"emK" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/closet/hydrant{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"emO" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/brown, -/obj/structure/curtain/open/bed{ - anchored = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/prison) -"emS" = ( -/obj/structure/disposalpipe/up{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/full, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/fuel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"emU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Utility Up"; - req_access = newlist() - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/substation/fourthdeck) -"emY" = ( -/obj/machinery/cryopod, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/obj/machinery/computer/cryopod{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/prison) -"enc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/hallway) -"enp" = ( -/obj/machinery/smartfridge/drying_rack, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"enq" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d3port) -"enG" = ( -/obj/structure/window/basic{ - dir = 8 - }, -/obj/floor_decal/snow, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/galley/freezer) -"enM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"enS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"enW" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"enZ" = ( -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/infirmreception) -"eod" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/floor_decal/spline/fancy/black/corner, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/galley/backroom) -"eoi" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/door/window/southleft{ - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/hygiene/drain, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level2) -"eok" = ( -/turf/simulated/wall/r_wall/hull, -/area/hallway/primary/fourthdeck/center) -"eon" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"eou" = ( -/obj/machinery/robotics_fabricator, -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"eoG" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 8 - }, -/obj/machinery/atmospherics/valve/shutoff/supply, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"eoJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - dir = 4; - name = "Evidence Storage" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/evidence) -"eoO" = ( -/obj/structure/catwalk, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"eoQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"eoT" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/hull, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"eoV" = ( -/obj/floor_decal/industrial/warning/full, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "firing_range_pump" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"eoX" = ( -/obj/machinery/artifact_analyser, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell1) -"epb" = ( -/obj/shuttle_landmark/escape_pod/start/pod4, -/obj/wallframe_spawn/reinforced/titanium, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/escape_pod4/station) -"epe" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"epf" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "SupermatterDoor"; - name = "Supermatter Access Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"epi" = ( -/obj/machinery/atmospherics/binary/passive_gate{ - dir = 4; - target_pressure = 15000; - regulate_mode = 1; - unlocked = 1 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/incinerator) -"epj" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"epk" = ( -/obj/structure/table/woodentable/walnut, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/mop/broom, -/obj/item/mop/broom{ - pixel_y = 9; - pixel_x = -4 - }, -/obj/item/mop/broom{ - pixel_y = 9; - pixel_x = 7 - }, -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sauna) -"epl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/galley) -"epn" = ( -/obj/structure/bed/sofa/r/brown{ - dir = 4 - }, -/obj/floor_decal/carpet/red{ - dir = 1 - }, -/obj/floor_decal/carpet/red{ - dir = 8 - }, -/obj/floor_decal/carpet/red{ - dir = 9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"epp" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/table/steel_reinforced, -/obj/item/collector{ - pixel_x = -6 - }, -/obj/item/collector{ - pixel_x = 12 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"epq" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/obj/floor_decal/corner/black/full, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/command/bsa) -"eps" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"epy" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/green/bordercorner, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"epB" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"epF" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"epQ" = ( -/obj/structure/morgue, -/obj/floor_decal/industrial/outline/blue, -/obj/structure/closet/walllocker{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"epT" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"eqc" = ( -/obj/floor_decal/corner/grey/diagonal, -/obj/structure/flora/pottedplant/mysterious, -/turf/simulated/floor/tiled, -/area/rnd/office) -"eqd" = ( -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/pen, -/obj/item/hand_labeler, -/obj/machinery/recharger/wallcharger{ - dir = 1; - pixel_y = -22 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"eqg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/catwalk_plated, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/fore) -"eqm" = ( -/turf/simulated/wall/r_wall/hull{ - can_open = 1 - }, -/area/vacant/cargo) -"eqo" = ( -/obj/decal/cleanable/dirt, -/obj/item/ore/iron, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crucian_hangar/start) -"eqq" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"eqs" = ( -/obj/structure/table/steel, -/obj/item/storage/box/glasses, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut{ - icon_state = "walnut_broken5" - }, -/area/vacant/bar) -"eqt" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/multi_tile/maintenance, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/foreport) -"eqx" = ( -/obj/floor_decal/industrial/danger{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/armory) -"eqA" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack/dark, -/obj/item/storage/firstaid/trauma{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/storage/firstaid/trauma{ - pixel_x = -7 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 7 - }, -/obj/floor_decal/spline/plain/paleblue{ - dir = 1 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"eqF" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - id = "fuel2p_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d3port) -"eqS" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/medical/virology/lab) -"eqV" = ( -/obj/floor_decal/corner/red/mono, -/obj/structure/closet/secure_closet{ - name = "Checkpoint Locker"; - req_access = list("ACCESS_SECURITY") - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/button/blast_door{ - dir = 4; - pixel_x = -29; - name = "Bridge and lobby shutoff"; - id_tag = "lob_bridge_lock" - }, -/obj/machinery/button/blast_door{ - dir = 4; - pixel_x = -20; - name = "Rear exit blastdoor"; - id_tag = "lob_rear_exit" - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"eqX" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"eqZ" = ( -/obj/floor_decal/industrial/loading, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/forestarboard) -"era" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"erj" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"erp" = ( -/obj/structure/sign/warning/hot_exhaust{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/open, -/area/space) -"err" = ( -/obj/machinery/power/emitter{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"ert" = ( -/obj/structure/table/standard, -/obj/item/device/taperecorder, -/obj/item/device/tape, -/obj/floor_decal/corner/research/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/office) -"erx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 4 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"erA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"erN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"erQ" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/solar{ - id = "auxsolarstrbbridge"; - name = "Bridge Auxiliary Solar Array" - }, -/obj/floor_decal/solarpanel, -/turf/simulated/floor/reinforced, -/area/solar/bridge_starboard) -"erR" = ( -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Cryogenics"; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/firstdeck) -"erY" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/random/closet, -/obj/decal/cleanable/dirt, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"erZ" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/obj/machinery/computer/modular/preset/supply_public{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"esd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"esg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"esi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"esk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"esl" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "xenobotany_access_maintaince_inner"; - name = "Xenobotany Lab Access" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/xenobiology/xenoflora) -"esn" = ( -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"eso" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/machinery/button/blast_door{ - id_tag = "security_sergeant_shutters"; - name = "Desk Shutters"; - req_access = list("ACCESS_WARDEN"); - pixel_y = -4; - pixel_x = 6 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/folder/red, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"esx" = ( -/obj/machinery/power/terminal, -/obj/item/stool, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"esy" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/hangar/upper) -"esB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"esD" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"esF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/machinery/shield_diffuser, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/cee, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"etl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"etw" = ( -/obj/machinery/computer/ship/sensors{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"etx" = ( -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_5_hatch"; - name = "Escape Pod Five Hatch" - }, -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod5/station) -"etA" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"etE" = ( -/obj/floor_decal/corner/purple/three_quarters, -/obj/structure/railing/mapped{ - dir = 8; - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/floor_decal/industrial/danger{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"etK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"etL" = ( -/obj/structure/table/rack, -/obj/item/pickaxe{ - pixel_x = 5 - }, -/obj/item/pickaxe{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/shovel{ - pixel_x = -5 - }, -/obj/item/shovel{ - pixel_x = -5 - }, -/obj/item/shovel{ - pixel_x = -5 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/brown/border, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/beacon_deployer/full, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"etS" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/toolcloset/excavation, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"etT" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/seconddeck/forestarboard) -"etV" = ( -/obj/shuttle_landmark/lift/medical_bottom, -/turf/simulated/floor/plating, -/area/medical/morgue) -"eui" = ( -/obj/floor_decal/industrial/traffic{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"euj" = ( -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"euo" = ( -/obj/machinery/door/airlock{ - door_color = "#78523b"; - name = "Sauna" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sauna) -"eup" = ( -/obj/item/stool/padded, -/obj/floor_decal/corner/grey{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"euE" = ( -/obj/machinery/recharge_station, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Mech Bay"; - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"euR" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 - }, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/power) -"euX" = ( -/obj/structure/railing/mapped, -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/ivbag/nanoblood, -/obj/item/reagent_containers/ivbag/blood/human/oneg, -/obj/item/reagent_containers/ivbag/blood/human/opos, -/obj/item/reagent_containers/ivbag/blood/human/aneg, -/obj/item/reagent_containers/ivbag/blood/human/apos, -/obj/item/reagent_containers/ivbag/blood/human/bneg, -/obj/item/reagent_containers/ivbag/blood/human/bpos, -/obj/item/reagent_containers/ivbag/blood/human/abneg, -/obj/structure/curtain/medical, -/obj/floor_decal/industrial/outline/yellow, -/obj/random/blood_packs, -/obj/random/blood_packs, -/turf/simulated/floor/tiled/white, -/area/medical/maintenance_equipstorage) -"evm" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/materials_storage) -"evo" = ( -/obj/structure/table/woodentable/ebony, -/obj/item/frame/light_switch, -/obj/item/frame/fire_alarm, -/obj/item/frame/air_alarm{ - pixel_y = -16 - }, -/obj/machinery/light, -/turf/simulated/floor/wood/yew, -/area/crew_quarters/heads/office/ce/cobed) -"evv" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"evy" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/evidence) -"evz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"evB" = ( -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/firstdeck/aftport) -"evE" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/brig) -"evG" = ( -/obj/random/closet, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"evH" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"evJ" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"evY" = ( -/obj/floor_decal/techfloor, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"ewe" = ( -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/exploration) -"ewh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/flasher{ - id_tag = "security_pod_flash"; - name = "Floor mounted flash" - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/prison) -"ewl" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"ewq" = ( -/obj/structure/sign/warning/vent_port, -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d3starboard) -"ewu" = ( -/obj/floor_decal/chapel{ - dir = 4 - }, -/obj/structure/bed/chair/pew/left/mahogany, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"eww" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_north = 1; - tag_south = 2; - tag_east = 8 - }, -/obj/engine_setup/filter, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"ewz" = ( -/turf/simulated/floor/carpet/green, -/area/medical/mentalhealth/therapyroom) -"ewF" = ( -/obj/machinery/light/spot, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"ewO" = ( -/obj/floor_decal/corner/black{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"ewQ" = ( -/obj/machinery/navbeacon/sierra/TD_fore5, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"ewS" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/central_stairwell) -"ewZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue) -"exi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "eng_lockdown"; - name = "Engineering Lockdown" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/locker_room) -"exj" = ( -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"exk" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d1port) -"exm" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "concheckwindow2"; - name = "Research Checkpoint Shutters"; - opacity = 0 - }, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/plating, -/area/shuttle/petrov/security) -"exs" = ( -/obj/structure/sign/warning/airlock{ - dir = 1 - }, -/turf/simulated/wall/prepainted, -/area/maintenance/solar) -"exx" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"exA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"exG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 6 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"exH" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"exI" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#4c535b" - }, -/area/quartermaster/hangar/upper) -"exK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hydroponics) -"exM" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/binary/pump/on{ - target_pressure = 200 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"exY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Engineering Bay"; - sort_type = "Engineering Bay" - }, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"eyb" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/incinerator) -"eyl" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/structure/closet/crate/freezer/rations, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod1/station) -"eym" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"eyn" = ( -/obj/machinery/light, -/obj/floor_decal/corner/grey/diagonal, -/obj/structure/closet/secure_closet/explorer/pilot, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration) -"eyr" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod1/station) -"eyD" = ( -/obj/machinery/button/windowtint{ - dir = 4; - id = "interrogation_no2_windows"; - pixel_x = -22; - pixel_y = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/machinery/computer/modular/preset/security{ - dir = 4 - }, -/obj/floor_decal/corner/black/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation/second) -"eyF" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"eyO" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/obj/machinery/meter, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"eyQ" = ( -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = 31 - }, -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = 24 - }, -/turf/simulated/open, -/area/hallway/primary/seconddeck/central_stairwell) -"eyY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d3port) -"ezl" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"ezv" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"ezw" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/engine_eva) -"ezy" = ( -/obj/structure/table/glass, -/obj/item/towel/random, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/random/soap, -/obj/item/lipstick/random{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/corner/grey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/old_tile, -/area/crew_quarters/head) -"ezz" = ( -/obj/structure/table/woodentable_reinforced/mahogany/walnut, -/obj/floor_decal/spline/fancy/black, -/obj/item/flame/candle, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"ezA" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/item/stack/material/ocp/fifty, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"ezH" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/obj/machinery/meter, -/turf/simulated/floor/tiled/dark/monotile, -/area/rnd/xenobiology/xenoflora) -"ezI" = ( -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/structure/closet/crate, -/obj/decal/cleanable/dirt, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"ezK" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/grass/cut, -/area/rnd/xenobiology/xenoflora) -"ezL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"ezP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "eng_QAW"; - name = "Quick Access Warehouse" - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "eng_lockdown"; - name = "Engineering Lockdown" - }, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for shutters."; - id_tag = "eng_QAW"; - name = "Shutters Control"; - pixel_x = -24; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"eAa" = ( -/obj/machinery/door/window{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"eAi" = ( -/obj/structure/table/steel, -/obj/item/modular_computer/laptop/preset/custom_loadout/advanced{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/security) -"eAj" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"eAk" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/mining/brace{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition/storage) -"eAo" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 9 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/obj/structure/flora/pottedplant/decorative, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"eAu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - dir = 8; - id_tag = "escape_pod_4_berth"; - name = "escape pod four berth controller"; - pixel_x = 20; - pixel_y = -32; - tag_door = "escape_pod_4_berth_hatch"; - frequency = 1380 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"eAz" = ( -/turf/simulated/wall/prepainted, -/area/medical/staging) -"eAG" = ( -/obj/machinery/computer/ship/engines{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/guppy_hangar/start) -"eAH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"eAI" = ( -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for shutters."; - id_tag = "eva_shutters"; - name = "EVA Shutters"; - pixel_y = 21; - req_access = list("ACCESS_EVA") - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"eAM" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - opacity = 0; - id_tag = "lobb_shutt" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/lockdown{ - id_tag = "lob_bridge_lock" - }, -/turf/simulated/floor/plating, -/area/bridge/lobby) -"eAP" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"eAS" = ( -/obj/structure/ladder/up, -/obj/floor_decal/corner/yellow/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"eAT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/wall/ocp_wall, -/area/engineering/engine_room) -"eAU" = ( -/obj/decal/cleanable/dirt, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"eBq" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/lime/border{ - dir = 10 - }, -/obj/structure/sign/warning/pods/east{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"eBs" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/fourthdeck/fore) -"eBw" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/machinery/ship_map, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"eBA" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_s" - }, -/obj/paint/red, -/obj/paint_stripe/red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod6/station) -"eBC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/vault/bolted{ - id_tag = "bridge_safe_exterior"; - name = "Bridge Safe Room" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/bridge) -"eBD" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/corner/lime/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/games, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/fore) -"eBL" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry) -"eBY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/closet/kitchen, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/barbecue, -/obj/machinery/camera/network/second_deck{ - c_tag = "Mess Hall - Kitchen - Cooking" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"eCe" = ( -/obj/floor_decal/corner/red/border, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Treatment Center - Observation"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"eCf" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - controlled = 0; - internal_pressure_bound = 35000; - internal_pressure_bound_default = 35000; - pressure_checks = 2; - pressure_checks_default = 2; - use_power = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/thruster/d1starboard) -"eCj" = ( -/obj/machinery/disposal, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -23; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/iaa/high_sec) -"eCo" = ( -/obj/floor_decal/techfloor, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"eCs" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/undies_wardrobe, -/obj/machinery/light, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"eCv" = ( -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/machinery/recharger, -/obj/floor_decal/corner/lime/border{ - dir = 9 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"eCy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"eCH" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/civilian{ - dir = 4 - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown2_2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/center) -"eCI" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/structure/bed/chair/padded/blue, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"eCO" = ( -/obj/structure/lattice, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/space) -"eCP" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/black, -/obj/machinery/camera/network/engine{ - c_tag = "Engine - Port Thruster"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"eCQ" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/centralport) -"eCX" = ( -/obj/structure/table/rack, -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"eCZ" = ( -/obj/structure/railing/mapped{ - dir = 4; - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - color = "#8c911d" - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"eDb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/floor_decal/industrial/hatch/grey, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - name = "Visiting Room" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/brig) -"eDe" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/structure/flora/pottedplant/decorative, -/obj/machinery/camera/network/command{ - c_tag = "Command - Adjutants"; - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"eDg" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"eDk" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/blast_door{ - id_tag = "xenobio2"; - name = "Containment Blast Doors"; - pixel_x = -6; - req_access = list("ACCESS_RESEARCH") - }, -/obj/machinery/button/blast_door{ - id_tag = "xenobio2_vent"; - name = "Cell 2 Vent"; - pixel_x = 6; - req_access = list("ACCESS_RESEARCH") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"eDo" = ( -/obj/item/folder/red, -/obj/item/stamp/hos, -/obj/structure/table/woodentable_reinforced/ebony, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"eDq" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"eDt" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1 - }, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "petrov1"; - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell1) -"eDx" = ( -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = 28 - }, -/obj/structure/table/rack, -/obj/floor_decal/spline/plain/yellow{ - dir = 8 - }, -/obj/item/stack/tile/wood{ - amount = 10 - }, -/obj/item/stack/tile/walnut{ - amount = 10 - }, -/obj/item/stack/tile/yew{ - amount = 10 - }, -/obj/item/stack/tile/maple{ - amount = 10 - }, -/obj/item/stack/tile/mahogany{ - amount = 10 - }, -/obj/item/stack/tile/ebony{ - amount = 10 - }, -/obj/item/stack/tile/bamboo{ - amount = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"eDC" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/waterstore) -"eDD" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/civilian{ - dir = 4; - name = "Cargo & Service General Cabin"; - req_access = list(list("ACCESS_CARGO","ACCESS_KITCHEN","ACCESS_JANITOR","ACCESS_BAR","ACCESS_SIERRA_CHIEF_STEWARD")); - autoset_access = 0 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"eDJ" = ( -/obj/machinery/reagentgrinder, -/obj/floor_decal/corner/beige{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Chemistry"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"eDL" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/thruster/d3port) -"eDM" = ( -/obj/structure/bed/chair/office/teal{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"eDX" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/rd, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/obj/random/drinkbottle, -/turf/simulated/floor/wood/walnut, -/area/maintenance/firstdeck/foreport) -"eEb" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"eEi" = ( -/obj/structure/table/standard, -/obj/item/storage/box/detergent{ - pixel_y = 4; - pixel_x = 7 - }, -/obj/item/towel/random{ - pixel_y = -4; - pixel_x = -5 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/heads/captain/secret_room/level_one) -"eEw" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/reagent_sublimator, -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"eEA" = ( -/obj/machinery/atmospherics/unary/tank{ - color = "#ff0000"; - dir = 8 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"eEC" = ( -/obj/floor_decal/corner/darkblue, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"eEO" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/center) -"eEQ" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/crate/secure/phoron{ - req_access = list(list("ACCESS_ENGINE_EQUIP","ACCESS_MEDICAL_EQUIP")); - name = "Emergency backup phoron crate" - }, -/obj/item/stack/material/phoron/ten, -/obj/item/stack/material/phoron/ten, -/obj/item/stack/material/phoron/ten, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"eEX" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/bed/chair/office/comfy/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"eEZ" = ( -/obj/structure/bed/chair/padded/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"eFd" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"eFf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/decal/cleanable/generic, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"eFg" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced/no_grille, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"eFn" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/green/border, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"eFr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"eFv" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/surgery/second) -"eFH" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/corner/green/border, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"eFK" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"eFO" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/thirddeck/aftport) -"eFZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"eGe" = ( -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"eGC" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"eGR" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/foreport) -"eGS" = ( -/obj/structure/sign/warning/engineering_access{ - pixel_y = 32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"eGU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"eHb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/holocontrol) -"eHe" = ( -/obj/structure/table/standard, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/folder/white, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/infirmreception) -"eHm" = ( -/obj/machinery/computer/guestpass{ - pixel_y = 24 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"eHt" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/industrial/danger{ - dir = 9 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"eHy" = ( -/obj/machinery/door/airlock/glass/command{ - dir = 4; - id_tag = "portbridgedoor"; - name = "Bridge"; - secured_wires = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "bridge_ent"; - name = "Bridge Lockdown" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/mono, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"eHA" = ( -/obj/floor_decal/carpet/blue2{ - dir = 1 - }, -/obj/floor_decal/carpet/blue2{ - dir = 4 - }, -/obj/floor_decal/carpet/blue2{ - dir = 5 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1; - icon_state = "window" - }, -/obj/structure/filingcabinet/chestdrawer{ - dir = 1 - }, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/hop/cobed) -"eHM" = ( -/turf/simulated/open, -/area/quartermaster/hangar_stairs/upper) -"eHP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"eIe" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/fourthdeck/aft) -"eIg" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"eIh" = ( -/turf/simulated/wall/r_wall/hull, -/area/command/exploration_leader) -"eIl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"eIn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/constructable_frame, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"eIo" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"eIr" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - opacity = 0; - id_tag = "lobb_hall_shutt" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"eIu" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai) -"eIv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftstarboard) -"eIy" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"eID" = ( -/obj/machinery/disposal, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar_stairs) -"eII" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"eIL" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"eIY" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"eJb" = ( -/obj/floor_decal/corner/red/mono, -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 4; - pixel_x = -14 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"eJf" = ( -/obj/floor_decal/carpet/blue2, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/obj/floor_decal/carpet/blue2{ - dir = 8 - }, -/obj/floor_decal/carpet/blue2{ - dir = 10 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/garden_room) -"eJi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/orange, -/area/security/range) -"eJk" = ( -/obj/structure/table/rack/dark, -/obj/structure/railing/mapped, -/obj/item/stack/material/wood/yew/twentyfive, -/obj/item/stack/material/wood/walnut/twentyfive, -/obj/item/stack/material/wood/maple/twentyfive, -/obj/item/stack/material/wood/mahogany/ten, -/obj/item/stack/material/wood/fifty, -/obj/item/stack/material/wood/ebony/ten, -/obj/item/stack/material/wood/bamboo/fifty, -/obj/floor_decal/spline/plain/black{ - dir = 10 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"eJn" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/docking) -"eJo" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"eJr" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"eJs" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/obj/machinery/recharge_station, -/obj/machinery/camera/network/bridge_deck{ - dir = 8; - c_tag = "Bridge Deck - Central Hallway - Starboard" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"eJA" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/b_green/bordercorner2{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/airlock) -"eJC" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/seconddeck/aft) -"eJG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cockpit) -"eJL" = ( -/obj/structure/flora/pottedplant/tropical, -/obj/machinery/light, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"eJO" = ( -/obj/floor_decal/corner/red/bordercee{ - dir = 1 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"eJR" = ( -/obj/structure/inflatable, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"eJS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"eJT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/office) -"eKa" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"eKb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"eKd" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/firstdeck/central_stairwell) -"eKi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"eKr" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "bridge_windows" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/bridge) -"eKv" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"eKw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/office) -"eKz" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"eKL" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/heart{ - pixel_y = 2; - pixel_x = 7 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/punitelli{ - pixel_y = -4; - pixel_x = -4 - }, -/obj/item/reagent_containers/food/drinks/cans/cola_pork{ - pixel_y = 12; - pixel_x = -3 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/sleep/bunk) -"eKN" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/item/storage/box/lights/mixed, -/obj/item/clothing/gloves/thick/duty, -/obj/machinery/light/small, -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/firstdeck/centralport) -"eKO" = ( -/turf/simulated/wall/r_wall/hull, -/area/bridge/storage) -"eKS" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"eKY" = ( -/obj/structure/closet, -/obj/random/maintenance, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - target_pressure = 200 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"eLn" = ( -/obj/floor_decal/corner/green/half{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"eLz" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 4; - pixel_x = -14 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/fore) -"eLC" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"eLG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"eLH" = ( -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/space) -"eLV" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/exploration/briefing_room) -"eLZ" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"eMa" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/commissary) -"eMj" = ( -/obj/machinery/botany/extractor, -/obj/floor_decal/corner/green/half, -/obj/floor_decal/corner/purple/border, -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenoflora Lab"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"eMr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/emergency) -"eMt" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/obj/random/junk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"eMv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"eMB" = ( -/obj/floor_decal/corner/black/border{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"eMC" = ( -/obj/machinery/disposal, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge/upper) -"eME" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/space) -"eMF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"eML" = ( -/obj/landmark{ - name = "carpspawn" - }, -/turf/simulated/open, -/area/space) -"eMM" = ( -/obj/structure/table/standard, -/obj/item/roller_bed, -/obj/item/roller_bed, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"eMP" = ( -/obj/floor_decal/corner/red/full, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/gym) -"eMR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"eMW" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation/second) -"eMY" = ( -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"eNe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"eNi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"eNk" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/chemistry) -"eNl" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/waterstore) -"eNs" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/spline/plain/black{ - dir = 5 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"eNt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"eNw" = ( -/obj/floor_decal/corner/black/bordercorner, -/obj/structure/handrail, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"eNz" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"eNG" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 8; - id_tag = "hydro<-bar"; - name = "Hydro Shutters" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/bar) -"eNJ" = ( -/obj/structure/table/standard, -/obj/item/storage/box/rxglasses, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/ward) -"eNO" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/storage/box/donut, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"eNR" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"eNZ" = ( -/obj/floor_decal/corner/darkblue/full, -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/obj/floor_decal/corner/black/border, -/obj/floor_decal/corner/black/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"eOb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"eOj" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 4; - id_tag = "escape_pod_2_pump" - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/grey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod2/station) -"eOo" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/dark/monotile, -/area/maintenance/bridgedeck/port) -"eOx" = ( -/obj/structure/table/marble, -/obj/item/material/rollingpin, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"eOA" = ( -/obj/shuttle_landmark/merc/deck1, -/turf/space, -/area/space) -"eOE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"ePa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"ePe" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"ePj" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/machinery/rotating_alarm/security_alarm{ - pixel_y = 13 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"ePm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - dir = 8; - id_tag = "escape_pod_2_berth"; - name = "escape pod two berth controller"; - pixel_x = 20; - pixel_y = -32; - tag_door = "escape_pod_2_berth_hatch"; - frequency = 1380 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"ePs" = ( -/obj/structure/closet/crate/freezer, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/reagent_containers/food/snacks/candy/donor, -/obj/item/reagent_containers/food/snacks/candy/donor, -/obj/item/reagent_containers/food/snacks/candy/donor, -/obj/item/reagent_containers/food/snacks/candy/donor, -/obj/item/reagent_containers/food/snacks/candy/donor, -/obj/item/reagent_containers/food/snacks/candy/donor, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/item/storage/box/bloodpacks, -/obj/item/storage/box/bloodpacks, -/turf/simulated/floor/tiled/white, -/area/medical/equipstorage) -"ePv" = ( -/obj/item/stool/padded, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/exploration) -"ePE" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"ePH" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ePX" = ( -/obj/machinery/door/blast/regular/escape_pod{ - id_tag = "escape_pod_2" - }, -/turf/simulated/floor/reinforced, -/area/vacant/monitoring) -"eQk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/northleft{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"eQp" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"eQv" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "xenobio1"; - name = "Containment Blast Doors" - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level1) -"eQC" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"eQE" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/nuke_storage) -"eQO" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/solar/bridge_starboard) -"eQQ" = ( -/obj/structure/catwalk, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"eQR" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"eQV" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/ship) -"eQY" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"eRd" = ( -/obj/structure/railing/mapped, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"eRj" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 8 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/medical/virology/atmos) -"eRn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"eRo" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/prepainted, -/area/security/sierra/forensic/lab) -"eRu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"eRz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"eRD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"eRE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"eRH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"eRP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"eRU" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"eRV" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell3) -"eSe" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/seconddeck/forestarboard) -"eSg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"eSi" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"eSp" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/artifact/no_anomalies, -/obj/machinery/anomaly_container, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell1) -"eSq" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"eSs" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/extinguisher/mini, -/obj/item/extinguisher/mini, -/obj/item/extinguisher/mini, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"eSF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Robotics Laboratory"; - req_access = newlist() - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"eSI" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/l3closet/scientist, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"eSJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "eng_lockdown"; - name = "Engineering Lockdown" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engineering_monitoring) -"eSL" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "toxin_lab_access_inner"; - name = "Toxin Lab Access" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"eSR" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"eSY" = ( -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d1port) -"eTa" = ( -/obj/structure/table/rack, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/sign/directions/supply{ - dir = 8; - pixel_x = -32 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"eTg" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"eTu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"eTv" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - frequency = 1380; - id_tag = "admin_shuttle_dock_inner"; - name = "Docking Port Airlock" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/center) -"eTF" = ( -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"eTK" = ( -/obj/floor_decal/spline/fancy/black/corner, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/bar/cobed) -"eTL" = ( -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"eTP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"eUc" = ( -/obj/machinery/suit_storage_unit/atmos/alt, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"eUd" = ( -/obj/machinery/door/airlock/external/bolted{ - dir = 4; - frequency = 1380; - id_tag = "escape_pod_4_hatch"; - name = "Escape Pod Four Hatch" - }, -/obj/machinery/shield_diffuser, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod4/station) -"eUo" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/window/boron_reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d3port) -"eUs" = ( -/obj/structure/bed/chair/wood/walnut{ - dir = 1 - }, -/obj/floor_decal/corner/beige/diagonal, -/obj/floor_decal/corner/brown/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/vacant/dormintories) -"eUx" = ( -/obj/machinery/cryopod, -/obj/machinery/computer/cryopod{ - pixel_y = -24 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod4/station) -"eUz" = ( -/obj/floor_decal/corner/black/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/gym) -"eUH" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"eUL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"eUR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"eUW" = ( -/obj/floor_decal/corner/yellow, -/obj/item/wrench, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/ce/cobed) -"eVa" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - id_tag = "hosdoor"; - name = "Head Of Security"; - req_access = newlist(); - secured_wires = 1; - stripe_color = "#9d2300"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/hos) -"eVd" = ( -/obj/structure/flora/seaweed, -/mob/living/simple_animal/aquatic/fish/grump{ - name = "Titus" - }, -/obj/fluid_mapped, -/turf/simulated/floor/beach/sand, -/area/crew_quarters/cafe/upper) -"eVe" = ( -/obj/machinery/space_heater{ - pixel_y = 32 - }, -/turf/simulated/floor/bluegrid, -/area/engineering/bluespace/chamber) -"eVk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo/bridge) -"eVv" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/item/storage/firstaid/empty, -/obj/item/storage/firstaid/empty, -/obj/item/storage/firstaid/empty, -/obj/item/device/scanner/health, -/obj/item/device/scanner/health, -/obj/item/device/scanner/health, -/obj/structure/table/rack, -/turf/simulated/floor/tiled/techfloor/grid, -/area/assembly/robotics) -"eVy" = ( -/obj/floor_decal/corner/grey{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"eVF" = ( -/obj/structure/catwalk, -/obj/machinery/camera/network/engine{ - c_tag = "Engine - SMES"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"eVG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/breakroom) -"eVI" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/random/sierracloset, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"eVJ" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - id_tag = "admin_shuttle_dock_pump" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"eVO" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"eVU" = ( -/obj/machinery/computer/station_alert/security, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"eVW" = ( -/obj/structure/closet/emcloset/anchored, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"eWf" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 4 - }, -/obj/structure/bed/chair/shuttle/green{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/airlock) -"eWg" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"eWh" = ( -/obj/structure/bed/psych, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/carpet/green{ - dir = 1 - }, -/turf/simulated/floor/carpet/green, -/area/medical/mentalhealth/therapyroom) -"eWu" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "auxair_outer"; - name = "Auxiliary Air Storage Exterior Access" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos/storage) -"eWC" = ( -/obj/machinery/door/airlock/external{ - autoset_access = 0; - req_access = newlist() - }, -/turf/simulated/floor/plating, -/area/vacant/cargo) -"eWI" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/ship_map, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"eWN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen/red, -/obj/item/pen/blue, -/obj/item/pen, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"eWT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"eXb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"eXe" = ( -/obj/floor_decal/corner/yellow, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"eXn" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/power/apc/high{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"eXv" = ( -/obj/machinery/door/window/brigdoor/southright{ - autoset_access = 0; - dir = 8; - name = "Test Chamber"; - req_access = list("ACCESS_TOXINS") - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"eXy" = ( -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level2) -"eXK" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"eXP" = ( -/obj/structure/table/reinforced, -/obj/item/device/assembly/igniter{ - pixel_y = -2; - pixel_x = -2 - }, -/obj/item/device/assembly/igniter{ - pixel_y = 6; - pixel_x = -3 - }, -/obj/item/device/assembly/igniter{ - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/device/assembly/igniter{ - pixel_y = 4; - pixel_x = 5 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"eXV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity/bolted{ - id_tag = "BSD_airlock"; - name = "Containment Chamber" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/bluespace/chamber) -"eYc" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"eYf" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"eYh" = ( -/obj/machinery/rotating_alarm/security_alarm{ - dir = 4; - pixel_x = -14 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/flora/ausbushes/ppflowers, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/grass/cut, -/area/hallway/primary/bridgedeck/center) -"eYo" = ( -/obj/floor_decal/corner/blue{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"eYs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"eYz" = ( -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/item/device/drone_designator, -/obj/item/device/multitool, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"eYD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"eYI" = ( -/obj/structure/table/standard, -/obj/machinery/light_construct{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -21 - }, -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/maintenance/abandoned_hydroponics) -"eYN" = ( -/obj/structure/railing/mapped, -/obj/machinery/constructable_frame, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"eYQ" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/structure/bed/sofa/r/brown{ - dir = 8 - }, -/obj/floor_decal/carpet/red, -/obj/floor_decal/carpet/red{ - dir = 4 - }, -/obj/floor_decal/carpet/red{ - dir = 6 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"eYR" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/titanium, -/area/shuttle/petrov/ship) -"eYS" = ( -/obj/machinery/flasher{ - id_tag = "security_perm_chamber_flash"; - name = "Floor mounted flash" - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"eYU" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"eYX" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"eZa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"eZp" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/woodentable/ebony, -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"eZr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"eZy" = ( -/obj/machinery/shieldwallgen, -/obj/machinery/door/blast/regular/open{ - id_tag = "misclab"; - name = "Test Chamber Blast Doors"; - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"eZB" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"eZI" = ( -/obj/structure/closet/radiation, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"eZK" = ( -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/transmitter, -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech/high_risk) -"eZQ" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"eZV" = ( -/obj/floor_decal/corner/red, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"far" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "bar<-cafe"; - name = "Bar Shutters" - }, -/obj/structure/table/steel_reinforced, -/obj/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/bar) -"faw" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"fax" = ( -/obj/paint_stripe/turquoise, -/obj/paint/black, -/turf/simulated/wall/r_wall/prepainted, -/area/turret_protected/ai_teleport) -"faA" = ( -/turf/simulated/wall/r_wall/hull, -/area/vacant/infirmary) -"faB" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "td_fore_starboard_inner"; - name = "Third Deck Fore Starboard Nacelle Access" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "td_fore_starboard"; - name = "interior access button"; - req_access = list("ACCESS_EXTERNAL"); - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/forestarboard) -"faF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/civilian{ - id_tag = "toilet1"; - name = "Stall One" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"faG" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"faN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"fba" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"fbb" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition/storage) -"fbk" = ( -/obj/machinery/door/airlock/civilian{ - dir = 4; - id_tag = "cafe_private_room"; - name = "Private Room" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/spline/fancy/wood/cee{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"fbs" = ( -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"fby" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"fbB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"fbC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"fbD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftport) -"fbE" = ( -/turf/simulated/wall/prepainted, -/area/bridge/nano) -"fbL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"fbM" = ( -/obj/floor_decal/corner/research/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/obj/item/stack/package_wrap/cargo_wrap, -/obj/item/device/destTagger, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/office) -"fbN" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1441; - id = "rust_injector"; - injecting = 1; - use_power = 1; - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"fbX" = ( -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"fbZ" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"fca" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"fcb" = ( -/obj/machinery/ai_status_display, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall/hull, -/area/turret_protected/ai_teleport) -"fcd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"fcf" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/wallframe_spawn/no_grille, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown3_2" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft) -"fcj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"fcx" = ( -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"fcy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"fcz" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "sd_starboard_pump" - }, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"fcC" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"fcI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/hydroponics) -"fcN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"fcQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"fcT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/device/scanner/spectrometer/adv, -/obj/item/stack/material/phoron{ - amount = 5 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"fda" = ( -/obj/structure/catwalk, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"fds" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"fdy" = ( -/obj/floor_decal/techfloor/orange, -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"fdz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"fdA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"fdB" = ( -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d3starboard) -"fdC" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/shield_diffuser, -/obj/machinery/door/airlock/external{ - frequency = 1379; - id_tag = "solar_bridge_port_outer"; - locked = 1; - name = "Engineering External Access" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar/bridge_port) -"fdF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft) -"fdI" = ( -/obj/machinery/space_heater, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/petrov/test_room) -"fdQ" = ( -/obj/floor_decal/corner/black/mono, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"fdR" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/lime/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"fdV" = ( -/obj/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"fdX" = ( -/obj/structure/lattice, -/obj/structure/catwalk, -/turf/simulated/open, -/area/space) -"fdZ" = ( -/obj/floor_decal/corner/paleblue/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"fea" = ( -/obj/structure/filingcabinet/wallcabinet{ - pixel_y = 30 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"fef" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"fei" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/closet/crate/trashcart, -/obj/random/firstaid, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"fej" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"fev" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"feA" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"feE" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"feJ" = ( -/obj/structure/closet/crate/radiation, -/obj/item/stack/material/tritium/ten, -/obj/item/stack/material/tritium/ten, -/obj/machinery/camera/network/engine{ - c_tag = "Engine - R-UST - Start-up Generator"; - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"feM" = ( -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"feR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/waterstore) -"ffc" = ( -/obj/machinery/disposal, -/obj/floor_decal/corner/green{ - dir = 6 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"ffd" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"ffh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"ffj" = ( -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"ffp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"ffu" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/port) -"ffv" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/machinery/portable_atmospherics/canister/empty/phoron, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"ffw" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/command{ - dir = 4; - name = "Bridge Access"; - req_access = list("ACCESS_SEC_DOORS"); - autoset_access = 0 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "lob_rear_exit"; - name = "Rear exit blastdoor" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/lobby) -"ffy" = ( -/obj/floor_decal/corner/green/border{ - dir = 9 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ffB" = ( -/obj/structure/table/marble, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"ffF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"ffN" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/maintenance{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/foreport) -"ffU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/eva) -"fga" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"fgf" = ( -/obj/structure/holoplant, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/ai_status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"fgo" = ( -/obj/machinery/door/blast/regular/open{ - id_tag = "xenobio2"; - name = "Containment Blast Doors" - }, -/obj/wallframe_spawn/reinforced_phoron/hull, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level1) -"fgD" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/scan) -"fgG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/hologram/holopad{ - pixel_x = -16 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"fgI" = ( -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"fgP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 4 - }, -/obj/floor_decal/industrial/warning, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"fgR" = ( -/obj/machinery/power/terminal, -/obj/floor_decal/industrial/warning, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/substation/firstdeck) -"fgX" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - dir = 4; - id_tag = "escape_pod_8"; - name = "escape pod eight controller"; - pixel_x = -20; - tag_door = "escape_pod_8_hatch"; - frequency = 1380 - }, -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/escape_pod/escape_pod8/station) -"fhh" = ( -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"fhm" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/seconddeck/starboard) -"fhs" = ( -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/cryo/firstdeck) -"fht" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"fhu" = ( -/obj/floor_decal/corner/blue/three_quarters{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/obj/structure/table/rack, -/obj/item/rig/command/cmo/equipped, -/obj/item/clothing/mask/gas/half, -/obj/machinery/door/window/northleft{ - name = "CMO's HCM"; - req_access = newlist(); - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"fhw" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/item/screwdriver, -/obj/item/wrench, -/obj/structure/railing/mapped, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/compactor) -"fhP" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"fhV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/thirddeck/center) -"fhX" = ( -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"fhY" = ( -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"fih" = ( -/obj/machinery/door/window/southright{ - dir = 1; - name = "Test Chamber" - }, -/obj/machinery/door/window/southright{ - name = "Test Chamber" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell3) -"fik" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"fit" = ( -/obj/structure/closet/cabinet, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"fiz" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/center) -"fiA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"fiC" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"fiD" = ( -/obj/machinery/suit_cycler/exploration, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/eva) -"fiO" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"fiP" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"fiQ" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/lime/border{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/bed/sofa/r/brown, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"fiW" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/device/paicard, -/obj/random/tech_supply, -/obj/floor_decal/corner/yellow/mono, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"fiX" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/hallway/primary/fourthdeck/center) -"fjh" = ( -/obj/floor_decal/corner/blue{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"fjl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/aft) -"fjo" = ( -/obj/structure/closet/secure_closet/prospector, -/obj/item/shuttle_beacon, -/obj/item/device/radio, -/obj/item/storage/belt/utility/full, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"fju" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/vault/bolted{ - autoset_access = 0; - id_tag = "bridgesafe_front"; - name = "Auxillary Safe Room Door" - }, -/obj/item/airlock_brace{ - req_access = list("ACCESS_BRIDGE") - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/bridge) -"fjw" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - frequency = 1441; - id = "waste_in"; - use_power = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"fjF" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"fjG" = ( -/obj/floor_decal/corner/green/border, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/sleep/cryo/south) -"fjQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/security/sierra/hallway) -"fjT" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/mining{ - autoset_access = 0; - req_access = list("ACCESS_HANGAR") - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar_stairs) -"fjV" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/cafe) -"fkc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall/prepainted{ - can_open = 1 - }, -/area/crew_quarters/heads/captain/secret_room/level_one) -"fkf" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs/upper) -"fki" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "interrogation_no1_windows" - }, -/turf/simulated/floor/plating, -/area/security/sierra/interrogation) -"fkJ" = ( -/obj/item/stool, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"fkN" = ( -/obj/machinery/access_button/airlock_interior{ - master_tag = "prototype_controller"; - pixel_x = 23; - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/prototype/engine) -"fkQ" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"fkR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/petrov/airlock) -"fkW" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"fkY" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - id_tag = "calypso_shuttle_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - cycle_to_external_air = 1; - dir = 8; - frequency = 1331; - id_tag = "calypso_shuttle"; - pixel_x = 20; - req_access = list("ACCESS_EXPEDITION_SHUTTLE"); - tag_exterior_sensor = "calypso_shuttle_exterior_sensor" - }, -/obj/floor_decal/industrial/warning/full, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/exploration_shuttle/airlock) -"flf" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dormintories) -"flh" = ( -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/machinery/computer/modular/preset/engineering{ - dir = 4 - }, -/obj/floor_decal/corner/brown/mono, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"flr" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/gym) -"flu" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/machinery/door/window/southright{ - dir = 4; - name = "RD's HCM"; - req_access = newlist() - }, -/obj/item/rig/hazmat/equipped, -/obj/item/clothing/mask/gas/half, -/obj/floor_decal/corner/purple/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/heads/office/rd) -"flz" = ( -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"flB" = ( -/obj/machinery/computer/arcade, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"flG" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"flJ" = ( -/obj/structure/closet/crate, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/random/tech_supply, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"flP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"flQ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/cafe) -"fmm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"fmo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"fmq" = ( -/obj/machinery/sleeper, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"fmy" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/machinery/vending/coffee{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"fmD" = ( -/obj/decal/cleanable/dirt, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"fmH" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/command{ - name = "Operative Dorm"; - secured_wires = 1; - hackProof = 1; - ai_control_disabled = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/iso_quarters) -"fmK" = ( -/obj/floor_decal/corner/black{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"fmM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/security{ - dir = 4; - name = "Brig Storage" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/equipment) -"fmP" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/floor_decal/industrial/outline/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"fmT" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/nuke_cylinder_dispenser{ - pixel_x = 2 - }, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 4; - pixel_x = -14 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/nuke_storage) -"fnb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/quartermaster/office/post) -"fne" = ( -/obj/machinery/ai_status_display, -/turf/simulated/wall/r_wall/hull, -/area/turret_protected/ai_maint) -"fnn" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"fno" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"fns" = ( -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/structure/flora/pottedplant/overgrown, -/obj/structure/sign/warning/smoking{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"fnv" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"fny" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/cafe/upper) -"fnN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/space) -"fnX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"fnZ" = ( -/obj/structure/railing/mapped, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"foc" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"fog" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"fok" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/woodentable/walnut, -/obj/machinery/microwave, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/gambling) -"fol" = ( -/obj/overmap/visitable/ship/landable/crucian, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"foq" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"fov" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/black/mono, -/obj/structure/bed/chair/rounded/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"foH" = ( -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins/storage) -"foM" = ( -/obj/machinery/computer/modular/preset/engineering{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmospherics - West"; - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"foS" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/obj/machinery/constructable_frame/machine_frame, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_smes) -"foZ" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/woodentable/walnut, -/obj/item/storage/firstaid/regular, -/obj/floor_decal/spline/fancy/black{ - dir = 5 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"fpc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"fpg" = ( -/obj/structure/sign/warning/docking_area{ - pixel_y = 32 - }, -/obj/structure/catwalk, -/obj/structure/railing/mapped, -/turf/space, -/area/space) -"fpj" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/machinery/door/airlock/civilian{ - dir = 4; - name = "Engineers General Cabin"; - req_access = list("ACCESS_ENGINEERING"); - autoset_access = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sleep/bunk) -"fpo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/button/blast_door{ - dir = 8; - id_tag = "security_lockdown"; - name = "SECURITY LOCKDOWN"; - pixel_x = 24; - pixel_y = -12; - req_access = list("ACCESS_HEAD_OF_SECURITY") - }, -/obj/machinery/button/blast_door{ - dir = 8; - id_tag = "firingspace"; - name = "Firing Range Shields"; - pixel_x = 24; - req_access = list("ACCESS_SEC_DOORS") - }, -/obj/machinery/button/windowtint{ - id = "hos_windows"; - pixel_x = 24; - pixel_y = 12; - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"fpp" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/table/marble, -/obj/item/hand_labeler, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"fpq" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/mob/living/simple_animal/hostile/retaliate/parrot/Poly, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"fpv" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/tank/nitrogen, -/obj/item/clothing/mask/breath, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"fpB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/suplocker_room) -"fpD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"fpE" = ( -/obj/shuttle_landmark/sierra/deck5/crucian, -/turf/space, -/area/space) -"fpG" = ( -/obj/machinery/smartfridge/drying_rack{ - dir = 1 - }, -/obj/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/abandoned_hydroponics) -"fpI" = ( -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/lime/bordercorner, -/turf/simulated/floor/tiled, -/area/holocontrol) -"fpP" = ( -/obj/random/trash, -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"fpU" = ( -/obj/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"fpW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/meter, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"fpX" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"fqc" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/titanium, -/area/shuttle/petrov/cell2) -"fqh" = ( -/obj/machinery/door/airlock/multi_tile/medical{ - id_tag = "med_crit_d1"; - name = "Critical Wing First" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_crit1"; - name = "Infirmary Staging Shutters" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"fqm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/open, -/area/bridge/hallway) -"fqq" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/obj/structure/sign/nanotrasen{ - dir = 1 - }, -/turf/simulated/wall/titanium, -/area/guppy_hangar/start) -"fqy" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"fqF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"fqJ" = ( -/turf/simulated/wall/prepainted, -/area/chapel/office) -"fqR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"fqU" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"fqW" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"frc" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/port) -"frh" = ( -/obj/item/stool/bar, -/obj/decal/cleanable/filth, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"frl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"fru" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/crystal{ - name = "Adherent Maintenance" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/adherent) -"frJ" = ( -/obj/machinery/power/apc/charon{ - dir = 1; - name = "north bump"; - pixel_y = 24; - req_access = list(list("ACCESS_EXPLORER","ACCESS_ENGINEERING")) - }, -/obj/machinery/atmospherics/valve/digital{ - dir = 8; - name = "DOCKING TO WASTE" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/closet/radiation, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"frK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"frN" = ( -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/maintenance/firstdeck/aftstarboard) -"frX" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"fsb" = ( -/obj/floor_decal/carpet/blue{ - dir = 1 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/captain, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/captain) -"fsc" = ( -/obj/machinery/constructable_frame/computerframe{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"fsu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"fsz" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/seconddeck) -"fsI" = ( -/obj/machinery/atmospherics/unary/freezer, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"fsK" = ( -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"fsR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/vacant/cargo) -"fsX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/canister) -"ftg" = ( -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/sign/warning/pods/east{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"ftk" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/shuttle_ceiling/sierra, -/area/space) -"ftn" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins/storage) -"fto" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"ftw" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/hallway/primary/thirddeck/center) -"ftD" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"ftF" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"ftI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"ftL" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/camera/network/fourth_deck{ - c_tag = "Escape Pods - Port - Dock"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"ftM" = ( -/obj/structure/disposalpipe/segment, -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/cargo_l) -"ftP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"ftS" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "solar_port"; - pixel_x = -5; - pixel_y = 21; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/machinery/airlock_sensor{ - id_tag = "solar_port_sensor"; - master_tag = "solar_port"; - pixel_x = 8; - pixel_y = 27 - }, -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"ftU" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"fua" = ( -/obj/structure/table/glass, -/obj/random/snack, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/floor_decal/corner/darkblue/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"fub" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"fuc" = ( -/obj/machinery/shield_diffuser, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"fue" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/bed/sofa/m/red{ - dir = 4 - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"fuf" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/blue/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/hop/cobed) -"fuh" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/grey, -/obj/random/action_figure, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"fui" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/firstdeck/centralstarboard) -"ful" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 8; - id_tag = "eng2"; - name = "Third Deck Port Nacelle Access"; - pixel_x = 20; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/thruster/d3port) -"fuw" = ( -/obj/decal/cleanable/dirt, -/obj/structure/table/steel_reinforced, -/obj/item/pen, -/obj/item/paper_bin, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/heads/captain/secret_room) -"fux" = ( -/turf/simulated/floor/reinforced, -/area/vacant/monitoring) -"fuA" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"fuH" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - id_tag = "escape_pod_5_pump" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"fuL" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"fuP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"fuX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/vault/bolted{ - autoset_access = 0; - id_tag = "medsafe_fore"; - name = "Emergency Exit" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"fvb" = ( -/obj/structure/closet/crate/secure/weapon, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"fvn" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/fore) -"fvA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/machinery/meter, -/obj/floor_decal/techfloor, -/obj/structure/closet/l3closet/scientist, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"fvE" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4; - target_pressure = 200 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"fvF" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/plating, -/area/shuttle/petrov/test_room) -"fvG" = ( -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"fvJ" = ( -/obj/structure/catwalk, -/obj/structure/handrail, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"fvL" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 4; - id_tag = "eng1"; - name = "Third Deck Starboard Nacelle Access"; - pixel_x = -20; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/machinery/power/apc/high/critical{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Fourth Deck - Starbound Necelle - Airlock" - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"fvM" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"fvR" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/quartermaster/office/post) -"fvU" = ( -/obj/floor_decal/corner/grey/full, -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/blue, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"fwa" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo/firstdeck) -"fwg" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"fwh" = ( -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"fwr" = ( -/obj/structure/catwalk, -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"fwu" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 4 - }, -/obj/floor_decal/corner/yellow{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/central_stairwell) -"fww" = ( -/obj/floor_decal/corner/red/bordercorner, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"fwy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"fwE" = ( -/obj/machinery/light, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/structure/closet/hydrant{ - pixel_x = 28 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/red/bordercorner2, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"fwG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"fwJ" = ( -/obj/floor_decal/corner/red/half{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"fwO" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/random/ironing_board_structure, -/obj/decal/cleanable/dirt, -/obj/item/ironing_iron, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"fwR" = ( -/obj/structure/sign/warning/airlock{ - dir = 8 - }, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/titanium, -/area/shuttle/petrov/airlock) -"fwS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/prepainted, -/area/vacant/cargo) -"fwW" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled, -/area/maintenance/abandoned_hydroponics) -"fxb" = ( -/obj/structure/mattress, -/obj/item/bedsheet/purple, -/obj/item/clothing/gloves/daft_punk, -/obj/structure/curtain/bed, -/turf/simulated/floor/carpet, -/area/maintenance/seconddeck/foreport) -"fxl" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/floor_decal/corner/paleblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/infirmary) -"fxm" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"fxn" = ( -/obj/structure/table/rack, -/obj/item/storage/belt/archaeology, -/obj/item/storage/belt/archaeology, -/obj/item/storage/belt/archaeology, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/pickaxe{ - pixel_x = 5 - }, -/obj/item/pickaxe{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/stack/flag/red, -/obj/item/stack/flag/red, -/obj/item/stack/flag/red, -/obj/item/device/scanner/xenobio, -/obj/item/device/scanner/xenobio, -/obj/item/device/scanner/xenobio, -/obj/item/storage/excavation, -/obj/item/device/measuring_tape, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/eva) -"fxq" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"fxt" = ( -/obj/structure/closet/emcloset/anchored, -/obj/floor_decal/corner/lightgrey/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/docking) -"fxV" = ( -/obj/machinery/r_n_d/protolathe, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/development) -"fxZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/table/rack, -/obj/structure/railing/mapped, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"fyb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft) -"fyc" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"fyd" = ( -/obj/machinery/flasher{ - id_tag = "security_perm_chamber_flash"; - name = "Floor mounted flash" - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"fyg" = ( -/obj/floor_decal/corner/red/diagonal, -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/crayon, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"fyw" = ( -/obj/structure/catwalk, -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"fyB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"fyE" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/mauve/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/mauve/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"fyJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"fyN" = ( -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - color = "#8c911d" - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"fyW" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/catwalk_plated/dark, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/safe_room/bridge) -"fzb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"fzh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"fzo" = ( -/obj/structure/table/standard, -/obj/item/storage/box/monkeycubes, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/device/science_tool, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"fzr" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins/storage) -"fzt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/super/critical{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"fzu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"fzA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"fzC" = ( -/turf/simulated/floor/wood, -/area/command/chief_steward) -"fzF" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"fzG" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"fzK" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"fAh" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs) -"fAj" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/machinery/fabricator/micro/bartender{ - pixel_x = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/item/paper/sierra, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe) -"fAm" = ( -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "xenobio4"; - name = "Containment Blast Doors" - }, -/obj/wallframe_spawn/reinforced, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level1) -"fAp" = ( -/obj/structure/bookcase, -/obj/item/book/manual/anomaly_spectroscopy, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"fAq" = ( -/turf/simulated/wall/r_wall/hull, -/area/quartermaster/expedition/storage) -"fAC" = ( -/obj/structure/bed/sofa/r/brown{ - dir = 4 - }, -/obj/landmark/start{ - name = "Captain" - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"fAD" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"fAE" = ( -/obj/structure/closet/secure_closet/atmos_sierra, -/obj/item/rpd, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"fAO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - autoset_access = 0; - dir = 4; - frequency = 1379; - id_tag = "xeno_airlock_inner"; - name = "Xenobiology Access"; - req_access = list("ACCESS_RESEARCH") - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/xenobiology/storage2) -"fBg" = ( -/obj/structure/sign/warning/hot_exhaust{ - dir = 1 - }, -/turf/simulated/wall/prepainted, -/area/maintenance/firstdeck/aftport) -"fBi" = ( -/obj/random/trash, -/obj/item/reagent_containers/glass/bucket, -/obj/item/device/flashlight/flare/glowstick/random, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"fBj" = ( -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos) -"fBl" = ( -/obj/structure/table/rack, -/obj/random/plushie, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"fBs" = ( -/obj/structure/roller_bed, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"fBu" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"fBM" = ( -/obj/structure/bed/chair/padded/blue, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"fBO" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/structure/bed/sofa/l/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"fBT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"fCf" = ( -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/floor_decal/corner/lime/bordercorner, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Infrimary - Patient Ward"; - dir = 4; - pixel_y = 12 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"fCl" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"fCx" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/cap/visible/fuel{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crucian_hangar/start) -"fCA" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"fCB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/green, -/obj/structure/curtain/open/bed, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"fCD" = ( -/obj/structure/table/rack, -/obj/item/stack/material/glass/fifty, -/obj/item/stack/material/glass{ - amount = 10 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1; - icon_state = "railing0-1" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"fCG" = ( -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"fCI" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge/upper) -"fCJ" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"fCM" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"fCW" = ( -/obj/structure/table/woodentable_reinforced/ebony, -/obj/item/modular_computer/laptop/preset/custom_loadout/advanced, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"fDd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"fDo" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"fDr" = ( -/obj/structure/ladder/up, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"fDt" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/floor_decal/industrial/outline/orange, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"fDC" = ( -/obj/structure/disposalpipe/up{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/full, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/fuel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"fDE" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cargo_l) -"fDI" = ( -/obj/structure/closet/emcloset, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"fDJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - autoset_access = 0; - frequency = 1331; - id_tag = "guppy_shuttle_inner"; - name = "Guppy Internal Access"; - req_access = list("ACCESS_GUPPY") - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"fDL" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/civilian{ - name = "Cryo Storage"; - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/sleep/cryo/thirddeck) -"fDQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"fDT" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/thirddeck/forestarboard) -"fEe" = ( -/obj/floor_decal/spline/fancy/wood/corner, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"fEj" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"fEm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Head of Personnel"; - sort_type = "Head of Personnel" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/center) -"fEo" = ( -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/corner/darkblue/bordercorner, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"fEw" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hardstorage) -"fEy" = ( -/obj/floor_decal/corner/red/half{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"fEz" = ( -/obj/structure/disposalpipe/up{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"fEA" = ( -/obj/machinery/uniform_vendor{ - icon_state = "robotics" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/thirddeck) -"fEC" = ( -/obj/shuttle_landmark/ert/deck1, -/turf/space, -/area/space) -"fED" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"fEE" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"fEG" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"fEN" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/thirddeck/forestarboard) -"fEQ" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"fES" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"fEX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/machinery/fabricator/micro/bartender{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/purple/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"fEY" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"fFd" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"fFf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"fFi" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Second Deck Substation Bypass" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/seconddeck) -"fFn" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/machine/jukebox_custom, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"fFs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"fFx" = ( -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/reinforced, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/obj/machinery/recharger, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"fFB" = ( -/obj/floor_decal/industrial/warning/corner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/substation/firstdeck) -"fFC" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/maintenance{ - name = "Maintenance Storage" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/backstorage) -"fFG" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"fFO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"fFR" = ( -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"fFU" = ( -/obj/machinery/anomaly_container, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"fGa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"fGb" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"fGn" = ( -/obj/item/ladder_mobile, -/obj/random/junk, -/obj/random/junk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"fGp" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/corner/green/half{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"fGs" = ( -/obj/item/stool/padded/red, -/obj/random/junk, -/turf/simulated/floor/wood/walnut, -/area/maintenance/firstdeck/aftstarboard) -"fGt" = ( -/obj/structure/ladder, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/firstdeck/aftport) -"fGv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"fGA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/machinery/scrap/stacking_machine, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/compactor) -"fGH" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Bluespace Drive"; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"fGI" = ( -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - dir = 1; - color = "#8c911d" - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"fGK" = ( -/obj/structure/bed/chair/padded/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"fGL" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"fHe" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"fHg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"fHi" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/tcommsat/storage) -"fHq" = ( -/obj/structure/catwalk, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"fHs" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"fHv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"fHz" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/gas) -"fHI" = ( -/obj/structure/table/standard, -/obj/item/device/integrated_electronics/wirer, -/obj/item/device/integrated_electronics/debugger, -/obj/item/device/integrated_electronics/analyzer, -/obj/item/device/integrated_circuit_printer, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech) -"fHP" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"fHS" = ( -/obj/paint_stripe/red, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters/open{ - name = "Prison Lobby Windows Shutters"; - id_tag = "prison_lobby_window" - }, -/turf/simulated/floor/plating, -/area/security/sierra/brig) -"fHU" = ( -/obj/machinery/computer/modular/preset/security, -/obj/floor_decal/corner/red/half{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"fHV" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/tank/air{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod3/station) -"fIa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"fIb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/camera/network/engine{ - c_tag = "Engine - R-UST - SMES"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"fIc" = ( -/obj/floor_decal/corner/black/full, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"fIe" = ( -/obj/floor_decal/industrial/outline/blue, -/obj/structure/ship_munition/disperser_charge/emp, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/command/bsa) -"fIg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"fIj" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/development) -"fIk" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"fIn" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 8 - }, -/obj/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Personnel - Office" - }, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"fIr" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"fIw" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/fourthdeck/foreport) -"fIA" = ( -/obj/paint_stripe/red, -/obj/paint/red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod4/station) -"fIB" = ( -/obj/structure/table/woodentable/mahogany, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"fIG" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Misc. Test Chamber - Large"; - network = list("Research","Miscellaneous Reseach"); - dir = 1 - }, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"fIJ" = ( -/obj/floor_decal/corner/paleblue{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/closet/hydrant{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"fIK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"fIL" = ( -/obj/floor_decal/techfloor, -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"fIN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"fIQ" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "solar_bridge_port_pump" - }, -/obj/machinery/light/small, -/obj/machinery/oxygen_pump{ - pixel_y = -32 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "solar_bridge_port_airlock"; - pixel_x = 2; - pixel_y = 24; - req_access = list("ACCESS_EXTERNAL"); - tag_airpump = "solar_bridge_port_pump"; - tag_chamber_sensor = "solar_bridge_port_sensor"; - tag_exterior_door = "solar_bridge_port_outer"; - tag_interior_door = "solar_bridge_port_inner" - }, -/obj/machinery/airlock_sensor{ - id_tag = "solar_bridge_port_sensor"; - pixel_x = -12; - pixel_y = 24 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar/bridge_port) -"fIW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"fIX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/airlock) -"fIZ" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/vending/coffee{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"fJa" = ( -/obj/structure/cable/yellow, -/obj/machinery/power/solar{ - id = "auxsolarstrbbridge"; - name = "Bridge Auxiliary Solar Array" - }, -/obj/floor_decal/solarpanel, -/turf/simulated/floor/reinforced, -/area/solar/bridge_port) -"fJi" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/center) -"fJk" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"fJr" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/compactor) -"fJC" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"fJD" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/holocontrol) -"fJJ" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"fJK" = ( -/obj/floor_decal/corner/grey/full, -/obj/machinery/photocopier, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -23; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"fJM" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"fJR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/green/border{ - dir = 6 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"fJV" = ( -/obj/machinery/papershredder, -/obj/floor_decal/corner/research/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/office) -"fJZ" = ( -/obj/structure/closet/crate, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"fKa" = ( -/obj/machinery/disperser/middle{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/command/bsa) -"fKd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/corner/lime/bordercorner, -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"fKj" = ( -/obj/machinery/constructable_frame/computerframe{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"fKp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"fKs" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos/cobed) -"fKt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/aft) -"fKB" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/solar/bridge_port) -"fKC" = ( -/obj/structure/closet/shipping_wall/filled{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/green{ - dir = 9 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Hydroponics - Fore"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"fKI" = ( -/turf/simulated/wall/r_wall/hull, -/area/engineering/atmos) -"fKO" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/rig/eva/equipped, -/obj/machinery/door/window/brigdoor/southleft{ - req_access = list("ACCESS_SENENG"); - autoset_access = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"fKT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/brigdoor/northleft, -/obj/structure/table/rack{ - dir = 8 - }, -/obj/item/aiModule/robocop, -/obj/item/aiModule/solgov_aggressive, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_cyborg_upload) -"fLa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley/backroom) -"fLb" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/blue, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"fLe" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/open, -/area/rnd/xenobiology/water_cell) -"fLf" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/space, -/area/space) -"fLm" = ( -/obj/machinery/airlock_sensor{ - frequency = 1331; - id_tag = "calypso_shuttle_sensor"; - master_tag = "calypso_shuttle"; - pixel_x = 25 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/structure/hygiene/shower{ - dir = 8; - pixel_x = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/airlock) -"fLp" = ( -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/paint_stripe/red, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized{ - id = "cadetwindow" - }, -/turf/simulated/floor/plating, -/area/security/range) -"fLx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"fLB" = ( -/obj/structure/bed/sofa/l/black{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/forensic) -"fLK" = ( -/obj/structure/closet/secure_closet/adjutant, -/obj/item/modular_computer/tablet/lease/preset/command, -/obj/item/device/flash, -/obj/item/device/flashlight, -/obj/item/storage/secure/safe{ - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/gun/energy/gun/small/secure, -/obj/floor_decal/corner/darkblue/mono, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"fLQ" = ( -/obj/machinery/door/window/brigdoor/westleft{ - req_access = list("ACCESS_BRIDGE"); - dir = 2; - autoset_access = 0 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"fLW" = ( -/obj/item/stack/tile/floor, -/obj/random/junk, -/obj/random/junk, -/obj/decal/cleanable/filth, -/obj/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"fMg" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/captain) -"fMi" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"fMs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - dir = 4; - name = "Report desk"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/xenobiology/level1) -"fMt" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/port) -"fMx" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 4; - id_tag = "admin_shuttle_dock_pump" - }, -/obj/machinery/oxygen_pump{ - dir = 8; - pixel_x = -27 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"fMy" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/bed/sofa/r/red{ - dir = 4 - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"fMz" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"fMD" = ( -/obj/structure/bed/chair/office/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"fMG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"fMI" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/vacant/cargo) -"fMJ" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/seconddeck/forestarboard) -"fMK" = ( -/obj/structure/table/rack, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/machinery/camera/network/command{ - c_tag = "Telecommunications - Storage"; - network = list("Command","Engineering") - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/tcommsat/storage) -"fMQ" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/no_grille, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"fMR" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor/stage) -"fMU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"fNa" = ( -/obj/machinery/vending/cola, -/obj/floor_decal/corner/red/half{ - dir = 8 - }, -/obj/floor_decal/corner/red{ - dir = 6 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/sign/directions/security{ - pixel_y = 24; - dir = 8 - }, -/obj/structure/sign/directions/infirmary{ - dir = 4; - pixel_y = 31 - }, -/obj/structure/sign/directions/science{ - pixel_y = 38; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/central_stairwell) -"fNb" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/paint_stripe/red, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized{ - id = "forensicswindow" - }, -/turf/simulated/floor/plating, -/area/security/sierra/forensic) -"fNr" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/no_grille, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/storage/eva) -"fNt" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - id_tag = "nuke_shuttle_dock_airlock_pump" - }, -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"fNz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/catwalk_plated, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft) -"fNB" = ( -/obj/floor_decal/industrial/warning/corner, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"fNC" = ( -/obj/floor_decal/corner/green{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"fND" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"fNJ" = ( -/obj/machinery/door/airlock/hatch{ - id_tag = "engine_access_hatch"; - locked = 1; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "SupermatterDoor"; - name = "Supermatter Access Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"fNW" = ( -/turf/simulated/wall/r_wall/hull, -/area/medical/virology/atmos) -"fNX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/shield/thirddeck) -"fNY" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"fOg" = ( -/obj/machinery/organ_printer/robot/mapped, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery) -"fOi" = ( -/turf/simulated/wall/prepainted, -/area/security/sierra/prison) -"fOj" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/galley/freezer) -"fOk" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/green, -/area/medical/wardhallway) -"fOl" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/no_grille, -/turf/simulated/floor/plating, -/area/quartermaster/hangar_stairs) -"fOr" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/paint_stripe/red, -/obj/wallframe_spawn/reinforced/polarized{ - id = "cadetwindow" - }, -/turf/simulated/floor/plating, -/area/security/range) -"fOt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"fOB" = ( -/turf/simulated/floor/tiled, -/area/holocontrol) -"fOF" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/rnd/xenobiology/xenoflora) -"fOG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"fOL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"fOO" = ( -/obj/machinery/optable, -/obj/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery) -"fOP" = ( -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"fOT" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"fOU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"fPb" = ( -/obj/machinery/light/spot, -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"fPc" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/machinery/button/blast_door{ - dir = 4; - pixel_x = -21; - name = "Space Shields"; - id_tag = "med_dorms_blast_doors" - }, -/obj/item/device/flashlight/lamp{ - pixel_y = 16; - pixel_x = -2 - }, -/obj/item/material/ashtray/plastic{ - pixel_y = 3; - pixel_x = 1 - }, -/obj/item/trash/cigbutt{ - pixel_x = 2 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/corp{ - pixel_y = -1; - pixel_x = -3 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/south) -"fPl" = ( -/obj/structure/ladder/up, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/hangar/upper) -"fPp" = ( -/obj/machinery/camera/network/engineering{ - c_tag = "Tech Storage - Main" - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/tech) -"fPs" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/seconddeck/xenobio) -"fPC" = ( -/obj/structure/table/standard, -/obj/item/device/geiger, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/device/scanner/plant, -/obj/item/device/scanner/health, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"fPE" = ( -/obj/machinery/atmospherics/unary/tank/air, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"fPH" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"fPJ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"fPK" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"fPL" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"fPN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/thirddeck/center) -"fPT" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"fPZ" = ( -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"fQd" = ( -/obj/machinery/recharger, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/b_green/bordercorner2{ - dir = 10 - }, -/obj/structure/table/steel, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/seats_place) -"fQf" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/lounge/upper) -"fQk" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"fQo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"fQy" = ( -/obj/structure/holoplant, -/obj/structure/railing/mapped, -/obj/structure/flora/ausbushes/fernybush, -/obj/floor_decal/spline/fancy/black{ - dir = 6 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"fQz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"fQA" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"fQF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/forestarboard) -"fQJ" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"fQM" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/blast_door{ - id_tag = "xenobio3"; - name = "Containment Blast Doors"; - pixel_x = -6; - req_access = list("ACCESS_RESEARCH") - }, -/obj/machinery/button/blast_door{ - id_tag = "xenobio3_vent"; - name = "Cell 3 Vent"; - pixel_x = 6; - req_access = list("ACCESS_RESEARCH") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"fQU" = ( -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"fQV" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"fQW" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/closet/crate/solar, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"fRj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"fRk" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/emergency) -"fRq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"fRz" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"fRG" = ( -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sauna) -"fRI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/obj/structure/bed/sofa/r/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"fRK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"fRO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Central Hallway" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"fRP" = ( -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d3starboard) -"fRQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"fRR" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"fRZ" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - injecting = 1; - use_power = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/thruster/d1port) -"fSa" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod1/station) -"fSq" = ( -/obj/item/storage/mirror{ - pixel_x = -26; - pixel_y = 1 - }, -/obj/structure/hygiene/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/gym) -"fSs" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/lime/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"fSv" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/green/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/green/bordercorner2, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/vending/hydronutrients{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"fSx" = ( -/obj/structure/railing/mapped{ - dir = 8; - color = "#aed18b"; - init_color = "#aed18b" - }, -/turf/simulated/open, -/area/hallway/primary/seconddeck/central_stairwell) -"fSA" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"fSV" = ( -/obj/floor_decal/carpet/purple{ - dir = 8 - }, -/obj/floor_decal/carpet/purple, -/obj/floor_decal/carpet/purple{ - dir = 10 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/captain/beach) -"fTe" = ( -/obj/item/stock_parts/circuitboard/telecomms/processor, -/obj/item/stock_parts/circuitboard/telecomms/receiver, -/obj/item/stock_parts/circuitboard/telecomms/server, -/obj/item/stock_parts/circuitboard/telecomms/bus, -/obj/item/stock_parts/circuitboard/telecomms/broadcaster, -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/stock_parts/circuitboard/ntnet_relay, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech/high_risk) -"fTk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"fTr" = ( -/obj/machinery/ai_status_display, -/turf/simulated/wall/r_wall/prepainted, -/area/quartermaster/deckofficer) -"fTt" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"fTv" = ( -/obj/floor_decal/corner/yellow/border{ - dir = 10 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"fTw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"fTC" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"fTU" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"fTV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/floor_decal/corner/purple/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"fTY" = ( -/obj/machinery/door/airlock/glass/atmos{ - name = "Atmospherics"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"fUd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/seats_place) -"fUf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/xenobio) -"fUh" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"fUi" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/eva) -"fUt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"fUv" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"fUJ" = ( -/obj/floor_decal/industrial/warning/corner, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"fUK" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"fUO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"fUP" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/open{ - id_tag = "eng_lockdown_emg1"; - name = "Emergency Exit" - }, -/obj/machinery/door/airlock/glass/engineering/no_stripe{ - name = "Engineering Bay" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/engineering/engineering_monitoring) -"fUR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/industrial/traffic, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"fUV" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/security{ - name = "Security Maintenance"; - req_access = newlist() - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/suits) -"fVc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"fVg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"fVh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/foreport) -"fVk" = ( -/obj/structure/disposalpipe/up{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/fuel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"fVm" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/suits) -"fVp" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1; - sheets = 10 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/guppy_hangar/start) -"fVs" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/rnd/xenobiology/xenoflora) -"fVt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/airlock) -"fVA" = ( -/obj/floor_decal/corner/black/border, -/obj/floor_decal/corner/black/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/black/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hydroponics/third_deck_storage) -"fVH" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/firstdeck) -"fVM" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"fVO" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/bridge/nano) -"fVR" = ( -/obj/structure/table/rack, -/obj/floor_decal/spline/plain/yellow{ - dir = 10 - }, -/obj/item/beartrap, -/obj/item/beartrap, -/obj/item/device/flashlight/upgraded, -/obj/item/device/flashlight/upgraded, -/obj/item/device/flashlight/upgraded, -/obj/item/stack/package_wrap/cargo_wrap, -/obj/item/stack/package_wrap/cargo_wrap, -/obj/item/tape_roll, -/obj/item/tape_roll, -/obj/item/tape_roll, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"fVS" = ( -/obj/machinery/door/window/westright{ - name = "Xenoflora Environment"; - req_access = newlist() - }, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Xenoflora Environment" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/rnd/xenobiology/xenoflora) -"fWa" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"fWb" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralport) -"fWe" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/device/radio/intercom/locked/ai_private{ - pixel_y = 22 - }, -/turf/simulated/floor/reinforced, -/area/turret_protected/ai_maint) -"fWs" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/foreport) -"fWF" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/toxins) -"fWM" = ( -/obj/structure/hygiene/toilet{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/command/bsa) -"fWP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"fWS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/grey/bordercorner, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"fXg" = ( -/obj/decal/cleanable/dirt, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"fXl" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/obj/machinery/power/apc/high/critical{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"fXm" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"fXs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"fXB" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"fXF" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/machinery/camera/network/hangar{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"fXJ" = ( -/obj/machinery/suit_storage_unit/security/alt, -/obj/machinery/camera/network/security{ - c_tag = "Security - Suits Storage"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/suits) -"fXP" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"fXQ" = ( -/obj/structure/catwalk, -/obj/machinery/button/alternate/door/bolts{ - id_tag = "sauna_maint"; - name = "Lock"; - dir = 8; - pixel_x = 21 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sauna) -"fXX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 6 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1starboard) -"fYd" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"fYj" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"fYk" = ( -/obj/structure/table/steel{ - flipped = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/forestarboard) -"fYw" = ( -/obj/machinery/light, -/obj/floor_decal/corner/paleblue/bordercee{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"fYz" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/cobed) -"fYA" = ( -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/hop) -"fYE" = ( -/obj/machinery/telecomms/bus/preset_four, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"fYI" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"fYO" = ( -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"fYS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/rack, -/obj/random/toolbox, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"fYV" = ( -/obj/machinery/button/blast_door{ - id_tag = "teleport3"; - name = "Third Deck Teleporter Access Shutter Control"; - pixel_x = -6; - pixel_y = 29 - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"fZb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"fZi" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"fZl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"fZn" = ( -/obj/structure/closet/crate/plastic, -/obj/structure/railing/mapped, -/obj/floor_decal/spline/plain/black, -/obj/floor_decal/industrial/outline/yellow, -/obj/decal/cleanable/dirt, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"fZo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/closet/secure_closet/virology, -/obj/item/storage/box/monkeycubes, -/turf/simulated/floor/tiled/freezer, -/area/medical/virology/lab) -"fZp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/virology{ - dir = 8; - name = "Atmospherics Compartment" - }, -/obj/item/taperoll/engineering/applied, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"fZy" = ( -/turf/simulated/wall/prepainted, -/area/medical/backstorage) -"fZD" = ( -/obj/machinery/space_heater, -/obj/decal/cleanable/dirt, -/obj/machinery/light_construct/small{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/vacant/sauna) -"fZE" = ( -/turf/simulated/floor/wood/yew, -/area/crew_quarters/heads/office/ce/cobed) -"fZL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"fZM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled, -/area/rnd/research) -"fZP" = ( -/obj/machinery/button/blast_door{ - id_tag = "portaux_warehouse"; - name = "Warehouse Shutters Control"; - pixel_y = 24; - req_access = list("ACCESS_CARGO") - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/structure/closet/walllocker{ - pixel_x = 28 - }, -/obj/random/medical, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"fZS" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"gab" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"gai" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/central_stairwell) -"gal" = ( -/obj/machinery/atmospherics/unary/tank/air{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"gap" = ( -/obj/machinery/flasher{ - id_tag = "security_perm_chamber_flash"; - name = "Floor mounted flash" - }, -/obj/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"gat" = ( -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"gav" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"gaA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"gaF" = ( -/obj/structure/cryofeed{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/thirddeck) -"gaG" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 1; - target_pressure = 15000 - }, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for the engine thruster blast doors."; - id_tag = "ThrusterVents"; - name = "Thruster Blast Door control"; - req_access = list("ACCESS_ENGINE_EQUIP"); - pixel_x = -24; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"gaH" = ( -/obj/machinery/disposal, -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 9 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"gaJ" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/button/alternate/door{ - desc = "A remote control-switch for the office door."; - id_tag = "security_entry_airlock_enter"; - name = "Security Entry Airlock"; - pixel_x = 5; - pixel_y = 22; - req_access = list("ACCESS_SECURITY") - }, -/obj/machinery/button/alternate/door{ - desc = "A remote control-switch for the office door."; - id_tag = "security_entry_airlock_exit"; - name = "Security Exit Airlock"; - pixel_x = -5; - pixel_y = 22; - req_access = list("ACCESS_SECURITY") - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/pen, -/obj/machinery/button/blast_door{ - pixel_y = 30; - id_tag = "prison_lobby_window"; - name = "Prison Lobby Windows Shutters" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"gaP" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/security) -"gaQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"gaU" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"gaW" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/mentalhealth/therapyroom) -"gaY" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/cafe) -"gbc" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"gbg" = ( -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"gbk" = ( -/obj/machinery/atmospherics/unary/tank/air{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"gbu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"gbC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"gbE" = ( -/obj/structure/morgue{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"gbH" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"gbM" = ( -/obj/structure/bed/chair/office/comfy/blue{ - dir = 1 - }, -/obj/landmark/start{ - name = "Head of Personnel" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"gbT" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"gcb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"gcc" = ( -/obj/structure/table/steel, -/obj/item/material/hatchet, -/obj/floor_decal/borderfloorblack, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"gce" = ( -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"gcg" = ( -/obj/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"gck" = ( -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/obj/machinery/computer/station_alert/all{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"gcz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"gcF" = ( -/obj/structure/table/rack, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"gcH" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/bridge_starboard) -"gcK" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"gcN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"gdc" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - id_tag = 1; - name = "Research Director Dorm"; - req_access = newlist(); - secured_wires = 1; - stripe_color = "#ffffff" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/rd/cobed) -"gdm" = ( -/obj/structure/hygiene/toilet{ - name = "captain's throne"; - color = "ffdd33" - }, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/heads/captain/secret_room/level_one) -"gdD" = ( -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "bridge_outer_windows" - }, -/turf/simulated/floor/plating, -/area/bridge/nano) -"gdH" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"gdN" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"gdZ" = ( -/obj/random/obstruction, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"gec" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/camera/network/engine{ - c_tag = "Engine - Core Interior"; - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/engineering/engine_room) -"gek" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/thirddeck/forestarboard) -"gen" = ( -/obj/structure/closet/crate/freezer, -/obj/item/storage/pill_bottle/antitox, -/obj/item/storage/pill_bottle/paracetamol, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"geq" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "merchant_shuttle_station_sensor"; - master_tag = "merchant_shuttle_station"; - pixel_x = -24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - id_tag = "merchant_shuttle_station_pump" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"gew" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/hygiene/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/waterstore) -"geF" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"geL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 8; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftstarboard) -"geT" = ( -/obj/machinery/pager/cargo{ - dir = 8; - name = "Call Cargoworkers button"; - pixel_x = -20; - pixel_y = 16 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/modular/preset/supply_public, -/obj/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 10 - }, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"geU" = ( -/obj/structure/closet/crate/secure/biohazard/alt, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"gfe" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"gfi" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/evidence) -"gfk" = ( -/obj/machinery/computer/shuttle_control/explore/crucian{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"gfo" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"gfp" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"gfq" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black/corner, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"gfz" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/ward) -"gfS" = ( -/obj/machinery/portable_atmospherics/canister/hydrogen, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"gfV" = ( -/obj/structure/sign/directions/med{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/maintenance_equipstorage) -"ggb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 15; - pixel_x = 3 - }, -/obj/random/tool{ - pixel_x = -5; - pixel_y = -9 - }, -/obj/random/tool{ - pixel_y = -1; - pixel_x = 5 - }, -/obj/random/tech_supply{ - pixel_y = -6; - pixel_x = 10 - }, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/hangar) -"ggf" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"ggj" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 4; - display_name = "Starboard Dock C"; - frequency = 1380; - id_tag = "admin_shuttle_dock"; - pixel_x = -20; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"ggm" = ( -/obj/structure/table/standard, -/obj/item/storage/box/bodybags, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"ggp" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/tank{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "fuel2p_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d3port) -"ggq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"ggH" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/window/boron_reinforced{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Gravity Generator"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"ggO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"ggZ" = ( -/obj/structure/holoplant, -/obj/floor_decal/corner/yellow/half, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"gha" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/holocontrol) -"ghb" = ( -/obj/floor_decal/corner/black/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ghd" = ( -/obj/floor_decal/corner/beige/diagonal, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"ghg" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"ghk" = ( -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/obj/structure/sign/nanotrasen, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/cargo_r) -"ghn" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"gho" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/forestarboard) -"ghs" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/shieldwallgen, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"ght" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/obj/machinery/meter, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/gas) -"ghv" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "disvent"; - name = "Incinerator Vent" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/maintenance/incinerator) -"ghC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/sign/warning/compressed_gas{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"ghE" = ( -/obj/structure/bed/sofa/r/teal, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"ghJ" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/thirddeck/foreport) -"ghN" = ( -/obj/structure/bed/chair/shuttle, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/escape_pod/escape_pod10/station) -"ghO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/shuttlefuel) -"ghT" = ( -/obj/item/device/flashlight/lamp/green, -/obj/structure/table/woodentable_reinforced/walnut, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"ghU" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "eng1"; - name = "First Reactive Engine Access"; - pixel_y = 21; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning/full, -/obj/machinery/light/small, -/obj/machinery/atmospherics/valve/shutoff/fuel{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/thruster/d3starboard) -"ghY" = ( -/obj/floor_decal/corner/darkblue/border, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"ghZ" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"gih" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/artifact_analyser, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/scan) -"gip" = ( -/obj/structure/filingcabinet{ - pixel_x = -10 - }, -/obj/structure/filingcabinet, -/obj/structure/filingcabinet{ - pixel_x = 10 - }, -/obj/item/folder/nt/rd, -/obj/item/folder/nt/rd, -/obj/item/folder/nt/rd, -/obj/item/folder/nt/rd, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/heads/office/rd/cobed) -"gir" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"git" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"gix" = ( -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"giC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall/prepainted, -/area/vacant/cargo) -"giL" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"giO" = ( -/obj/random/obstruction, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"giR" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"giS" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/security/opscheck) -"giT" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/computer/air_control{ - dir = 8; - input_tag = "toxins_petrov_in"; - name = "Toxins Gas Monitor"; - output_tag = "toxins_petrov_out"; - sensor_name = "Toxins Test Chamber"; - sensor_tag = "toxins_petrov_sensor" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/gas) -"giU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"giZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/atmospherics/pipe/cap/visible{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"gjc" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 10 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d1port) -"gjd" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"gjj" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"gjE" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/bluespace) -"gjJ" = ( -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"gjK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"gjP" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"gjQ" = ( -/obj/structure/flora/pottedplant/orientaltree, -/turf/simulated/floor/wood, -/area/command/chief_steward) -"gjT" = ( -/obj/structure/table/woodentable/ebony, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"gjX" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"gkg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/glass, -/obj/machinery/photocopier/faxmachine{ - department = "Bridge"; - destination = "NanoTrasen Central Command" - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"gkh" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/landmark/start{ - name = "Unknown" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"gki" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/maintenance{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftport) -"gko" = ( -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "cChamber2pV"; - name = "Chamber Vent" - }, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d3port) -"gkq" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/blue{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"gks" = ( -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "d3portnacelle" - }, -/obj/machinery/atmospherics/valve/digital{ - id_tag = "RE3F"; - name = "RE3 digital valve" - }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"gku" = ( -/obj/structure/iv_stand, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"gky" = ( -/obj/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"gkD" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftport) -"gkG" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/button/blast_door{ - dir = 4; - pixel_x = -24; - id_tag = "miners_restroom_sierra" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"gkQ" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/galley/freezer) -"gkX" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/structure/bed/chair/office/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"gli" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"gll" = ( -/obj/machinery/vending/wallmed2{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod4/station) -"glv" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1; - name = "Toxin Air Vent"; - id_tag = "toxin_out" - }, -/obj/machinery/sparker{ - pixel_x = -21; - id_tag = "ToxLab" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/rnd/toxins) -"glA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"glU" = ( -/obj/floor_decal/techfloor, -/obj/structure/largecrate, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"glV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/industrial/danger/corner, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"glW" = ( -/obj/floor_decal/techfloor/orange, -/obj/structure/reagent_dispensers/fueltank, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"gml" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"gmn" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - frequency = 1380; - id_tag = "specops_dock_outer"; - name = "Docking Port Airlock" - }, -/obj/machinery/shield_diffuser, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"gms" = ( -/obj/machinery/disposal, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/disposalpipe/up{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/camera/network/hangar{ - c_tag = "Hangar - Flight Control" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/quartermaster/hangar/upper) -"gmz" = ( -/obj/machinery/barrier, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"gmF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"gmH" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"gmK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"gmM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"gmQ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar_atmos) -"gnd" = ( -/obj/machinery/light/small, -/obj/structure/closet/emcloset/anchored, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/lime/border{ - dir = 6 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"gnr" = ( -/obj/decal/cleanable/generic, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"gns" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/random/tool, -/obj/machinery/button/blast_door{ - id_tag = "petrovcell1"; - name = "Test Chamber Vent"; - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/button/ignition{ - id_tag = "Isocell1"; - pixel_x = -36; - pixel_y = -25 - }, -/obj/machinery/camera/network/petrov{ - c_tag = "Petrov - Isolation Chambers - Cells"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"gnE" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"gnL" = ( -/obj/structure/table/standard, -/obj/item/stock_parts/computer/hard_drive/portable, -/obj/item/stock_parts/computer/hard_drive/portable, -/obj/item/reagent_containers/dropper{ - pixel_y = -4 - }, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/scanning_module, -/obj/item/device/paicard, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/development) -"gnO" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/iaa/cobed) -"gnR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftstarboard) -"gnW" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/floor_decal/corner/red/bordercee, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"gnX" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"gop" = ( -/obj/decal/cleanable/dirt, -/obj/structure/bed/chair/office/dark, -/obj/item/dice/d100, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/light_construct{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"gor" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "sierra_surgery1"; - name = "Operation room 1"; - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/holosign/surgery{ - dir = 4; - id_tag = "surgery1" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery) -"gos" = ( -/obj/structure/table/steel, -/obj/machinery/recharger, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/eva) -"goA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"goD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"goG" = ( -/obj/floor_decal/corner/brown/mono, -/obj/machinery/computer/modular/preset/cardslot/command_eng{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"goM" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod5/station) -"goN" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"goT" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/quartermaster/deckofficer) -"gpb" = ( -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"gpd" = ( -/obj/machinery/power/tracker, -/obj/structure/cable/yellow, -/obj/floor_decal/solarpanel, -/turf/simulated/open, -/area/solar/port) -"gpg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"gpi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cockpit) -"gpq" = ( -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/command/bsa) -"gpr" = ( -/obj/floor_decal/carpet/orange{ - dir = 1 - }, -/obj/floor_decal/carpet/orange{ - dir = 4 - }, -/obj/floor_decal/carpet/orange{ - dir = 5 - }, -/obj/structure/table/woodentable/ebony, -/obj/item/device/flashlight/lamp/lava/yellow{ - pixel_y = 12; - pixel_x = 7 - }, -/obj/item/crowbar/prybar, -/turf/simulated/floor/carpet/orange, -/area/crew_quarters/heads/office/ce/cobed) -"gpv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"gpw" = ( -/obj/structure/table/steel, -/obj/machinery/button/windowtint{ - id = "sec_equip_windows"; - pixel_x = 7; - pixel_y = 29 - }, -/obj/machinery/light_switch{ - pixel_y = 29; - pixel_x = -7 - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/closet/medical_wall/filled{ - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"gpx" = ( -/obj/structure/catwalk, -/obj/structure/handrail, -/turf/space, -/area/space) -"gpy" = ( -/obj/machinery/requests_console{ - department = "Canteen"; - departmentType = 4; - pixel_x = -30 - }, -/obj/structure/table/marble, -/obj/item/reagent_containers/food/condiment/barbecue{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/condiment/ketchup, -/obj/item/reagent_containers/food/condiment/mayo{ - pixel_y = 9; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"gpA" = ( -/obj/floor_decal/techfloor/orange/corner, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"gpE" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"gpN" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/mechanical, -/obj/floor_decal/industrial/outline/yellow, -/obj/random/tool, -/obj/item/device/robotanalyzer, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"gpR" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"gpS" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"gpU" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "Mail" - }, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"gpW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"gqe" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"gql" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"gqm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"gqw" = ( -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"gqF" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/aft_stairwell) -"gqH" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/safe_room/bridge) -"gqK" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/thirddeck/central_stairwell) -"gqL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/turret_protected/ai_cyborg_station) -"gqM" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"gqO" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_east = 2; - tag_south = 3; - tag_west = 1 - }, -/obj/machinery/camera/network/petrov{ - c_tag = "Petrov - Isolation Chambers - Atmospherics" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"gqS" = ( -/obj/floor_decal/corner/black{ - dir = 10 - }, -/obj/floor_decal/corner/paleblue/border, -/obj/structure/bed/chair/padded/teal{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"gqT" = ( -/obj/structure/bed/chair/pew, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"gqV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"gqW" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"grk" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "auxair_inner"; - name = "Auxiliary Air Storage Interior Access" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos/storage) -"grn" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/storage/box/donut, -/obj/item/device/taperecorder, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"grp" = ( -/obj/machinery/shieldwallgen, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"grs" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/engineering_chief_sierra, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/item/device/gps, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"grt" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/corner/red/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/virology{ - name = "Isolator" - }, -/obj/machinery/door/blast/shutters{ - id_tag = "vir_isol" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/taperoll/engineering/applied, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology/lab) -"grv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"grD" = ( -/obj/machinery/disposal, -/obj/floor_decal/corner/blue/three_quarters, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 10 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"grE" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/storage) -"grF" = ( -/obj/floor_decal/corner/green/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/disease2/antibodyanalyser, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology/lab) -"grI" = ( -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp/lava/green, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/medical/virology/ward) -"grL" = ( -/obj/floor_decal/corner/lime/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/cola, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/fore) -"grR" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - id_tag = "null"; - name = "Captain Dorm"; - secured_wires = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/captain) -"grY" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"grZ" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/hangar) -"gse" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - id_tag = "cafe"; - name = "Cafe Shutters"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/galley) -"gsf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"gsg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"gss" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"gst" = ( -/obj/floor_decal/carpet/blue2, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/garden_room) -"gsv" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen/multi/cmd/captain, -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/obj/item/storage/secure/safe/captain_sierra{ - pixel_y = 28 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"gsw" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Central Hallway - Medical" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"gsz" = ( -/obj/structure/closet/crate/secure/phoron, -/obj/item/stack/material/phoron/ten, -/obj/item/stack/material/phoron/ten, -/obj/item/stack/material/phoron/ten, -/obj/floor_decal/spline/plain/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"gsH" = ( -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"gsM" = ( -/obj/structure/table/rack, -/obj/item/device/scanner/mining, -/obj/item/device/scanner/mining, -/obj/item/device/scanner/mining, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/brown/border, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"gsX" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/tcommsat/storage) -"gte" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"gtq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"gtt" = ( -/obj/machinery/button/alternate/door/bolts{ - dir = 4; - id_tag = "engine_electrical_maintenance"; - name = "Door Bolt Control"; - pixel_x = -24; - pixel_y = 7; - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/engine{ - c_tag = "Engine - TEGs"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"gtv" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 4 - }, -/obj/floor_decal/corner/grey{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"gtz" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1379; - id_tag = "engine_airlock_outer"; - name = "Engine Airlock Exterior" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"gtG" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/closet/crate/trashcart, -/obj/random/firstaid, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"gtI" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northright{ - dir = 2; - name = "Leader's suit"; - req_access = newlist() - }, -/obj/item/clothing/mask/gas/half, -/obj/item/rig/exploration/equipped, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"gtO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/navbeacon/sierra/TD_port, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"gtP" = ( -/obj/machinery/seed_storage/garden{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics/third_deck_storage) -"gua" = ( -/obj/structure/railing/mapped, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"guo" = ( -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"guH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/structure/bed/chair/rounded/blue{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"guN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/floor_decal/techfloor/corner, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/machinery/access_button/airlock_interior{ - frequency = 1380; - master_tag = "td_port"; - name = "interior access button"; - pixel_x = -32; - pixel_y = -24; - req_access = list("ACCESS_EXTERNAL") - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"guV" = ( -/obj/structure/flora/pottedplant/minitree, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"gve" = ( -/obj/machinery/computer/modular/preset/medical{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/corner/blue/mono, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"gvf" = ( -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/storage) -"gvi" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"gvy" = ( -/obj/machinery/constructable_frame/computerframe{ - dir = 4 - }, -/mob/living/simple_animal/hostile/scarybat, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"gvz" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -21; - pixel_x = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"gvD" = ( -/obj/machinery/sleeper/survival_pod{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"gvE" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/wall/r_wall/hull, -/area/chapel/mortuary) -"gvI" = ( -/obj/structure/cryofeed{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/bridge) -"gvL" = ( -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/obj/floor_decal/corner/black/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics/third_deck_storage) -"gvQ" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/green/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"gvU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/rounded/beige, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"gwh" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"gwp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/airlock) -"gwt" = ( -/obj/floor_decal/carpet/orange{ - dir = 1 - }, -/obj/floor_decal/carpet/orange{ - dir = 8 - }, -/obj/floor_decal/carpet/orange{ - dir = 9 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/ce, -/turf/simulated/floor/carpet/orange, -/area/crew_quarters/heads/office/ce/cobed) -"gwF" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"gwG" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "Kitchen"; - sort_type = "Kitchen" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"gwL" = ( -/obj/structure/handrail, -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/red, -/obj/structure/fuel_port{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"gwZ" = ( -/obj/structure/table/woodentable/walnut, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/device/flashlight/lamp/lava/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"gxi" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"gxk" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/aft_stairwell) -"gxm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/foreport) -"gxn" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"gxp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/constructable_frame/machine_frame, -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"gxA" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/table/woodentable_reinforced/ebony, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ - pixel_y = 4; - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ - pixel_y = 6; - pixel_x = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa/high_sec) -"gxK" = ( -/obj/structure/bed/chair/padded/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"gxM" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"gxN" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"gxS" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"gyn" = ( -/obj/structure/closet/fridge, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/random/single/cola, -/obj/random/single/cola, -/obj/random/single/cola, -/obj/random/single/cola, -/obj/random/single/cola, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"gyq" = ( -/turf/simulated/open, -/area/medical/sleeper) -"gyH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"gyP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"gyQ" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"gyU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"gyY" = ( -/turf/simulated/wall/prepainted{ - can_open = 1 - }, -/area/maintenance/thirddeck/aftport) -"gzc" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/titanium, -/area/shuttle/petrov/security) -"gze" = ( -/obj/machinery/vending/hydronutrients{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics/third_deck_storage) -"gzs" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/backstorage) -"gzu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/structure/grille, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - dir = 8; - id_tag = "engineroomvent"; - name = "Engine Room Vent" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"gzA" = ( -/obj/item/clothing/suit/unathi/mantle, -/obj/item/clothing/shoes/jackboots/unathi, -/obj/item/device/flashlight/lantern, -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"gzF" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/aft_stairwell) -"gzO" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1379; - id_tag = "engine_atmos_airlock_inner"; - name = "Engine Airlock Interior" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"gzR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/hatch{ - autoset_access = 0; - name = "Cockpit"; - req_access = list("ACCESS_EXPEDITION_SHUTTLE") - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cockpit) -"gAa" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/airless, -/area/shuttle/escape_pod/escape_pod4/station) -"gAi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"gAr" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/abandoned_hydroponics) -"gAu" = ( -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/cryo/firstdeck) -"gAv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"gAC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"gAD" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"gAI" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"gAJ" = ( -/obj/item/stool/padded, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/purple/bordercorner, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"gAN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"gBi" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 8 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d1starboard) -"gBk" = ( -/obj/structure/table/glass, -/obj/item/material/ashtray/bronze, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/darkblue/diagonal, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"gBo" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"gBq" = ( -/obj/item/stack/material/steel, -/obj/item/stack/material/steel, -/obj/item/stack/material/rods, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"gBv" = ( -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"gBF" = ( -/obj/structure/railing/mapped, -/obj/structure/cart{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"gBN" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"gBT" = ( -/obj/structure/fitness/punchingbag, -/obj/floor_decal/corner/black/full, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/gym) -"gCb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"gCe" = ( -/obj/structure/bed/chair/padded/red, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation/second) -"gCl" = ( -/obj/landmark{ - name = "carpspawn" - }, -/turf/space, -/area/space) -"gCz" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/lime/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"gCD" = ( -/obj/structure/railing/mapped, -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"gCG" = ( -/obj/decal/cleanable/greenglow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/vacant/mess) -"gCM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/engine_room) -"gCO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/structure/sign/xenobio_3{ - pixel_y = 32 - }, -/obj/machinery/door/airlock/research{ - id_tag = "xenohight_airlock_outer"; - name = "Xenobiology Internal Airlock"; - frequency = 1379; - locked = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/xenobiology/entry) -"gDd" = ( -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"gDf" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/glass/civilian{ - name = "Bar" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/cafe) -"gDl" = ( -/obj/floor_decal/corner/grey/full, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"gDo" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"gDq" = ( -/obj/machinery/cryopod, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1; - color = "#393f43"; - init_color = "#393f43" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/central_stairwell) -"gDr" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - id_tag = "vir_blast_window" - }, -/turf/simulated/floor/plating, -/area/medical/virology/lab) -"gDw" = ( -/obj/structure/table/rack, -/obj/machinery/power/apc/super/critical{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/inflatable_dispenser, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"gDD" = ( -/obj/structure/closet/secure_closet/el, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/mauve/border{ - dir = 9 - }, -/obj/item/storage/bolt_bag/full_of_beacons, -/obj/item/clothing/gloves/anomaly_detector, -/obj/item/artefact_detector, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"gDH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"gDL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"gDT" = ( -/obj/machinery/door/airlock/highsecurity{ - autoset_access = 0; - name = "Secure Tech Storage"; - req_access = list("ACCESS_BRIDGE","ACCESS_TECH_STORAGE") - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/tech/high_risk) -"gDZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"gEb" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/recharger, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"gEd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor/stage) -"gEf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"gEm" = ( -/obj/structure/bed/chair/office/teal, -/obj/floor_decal/corner/beige{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/border, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/button/blast_door{ - id_tag = "chemistry_lockdown"; - name = "Chemistry Shutters"; - pixel_x = -26; - pixel_y = -24; - req_access = list("ACCESS_MEDICAL") - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"gEx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"gEz" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black/corner, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"gEF" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - id_tag = "escape_pod_11_berth"; - name = "escape pod eleven berth controller"; - pixel_x = -32; - pixel_y = -28; - tag_door = "escape_pod_11_berth_hatch"; - frequency = 1380; - dir = 1 - }, -/obj/floor_decal/industrial/warning, -/obj/floor_decal/steeldecal/steel_decals_central4, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"gEO" = ( -/obj/machinery/door/blast/regular/escape_pod{ - id_tag = "escape_pod_7" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/maintenance/exterior) -"gET" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"gEV" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/structure/closet/crate/plastic, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"gFa" = ( -/obj/structure/bed/chair/office/dark, -/obj/floor_decal/techfloor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"gFe" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"gFg" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/maintenance{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/starboard) -"gFh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/hygiene/toilet{ - dir = 1 - }, -/obj/item/taperoll/bog{ - pixel_x = -12; - pixel_y = -10 - }, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head) -"gFi" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"gFj" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"gFl" = ( -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"gFs" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs) -"gFv" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/obj/machinery/status_light{ - id_tag = "ReacEng2"; - name = "Deck Four Port status indicator"; - pixel_y = 32 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"gFM" = ( -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_7_hatch"; - name = "Escape Pod Seven Hatch" - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod7/station) -"gFS" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"gFU" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/space) -"gFW" = ( -/obj/machinery/computer/modular/preset/cardslot/command{ - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "hop_road_shutters"; - name = "Line Shutters Control"; - pixel_x = -6; - pixel_y = 27 - }, -/obj/machinery/button/blast_door{ - id_tag = "hop_shutters"; - name = "Desk Shutters Control"; - pixel_x = 6; - pixel_y = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/blue/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"gGd" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/engine_smes) -"gGi" = ( -/obj/floor_decal/corner/darkblue/half{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/random/vendor{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"gGx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"gGy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"gGH" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/sign/warning/deathsposal{ - pixel_x = 32 - }, -/obj/structure/sign/warning/airlock{ - color = "#ff9900"; - name = "\improper WAY TO SPACE"; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"gGJ" = ( -/obj/wallframe_spawn/reinforced/polarized, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/curtain/black, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"gGM" = ( -/obj/structure/table/standard, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/multitool{ - pixel_x = 3 - }, -/obj/item/device/kit/mech, -/obj/item/device/paint_sprayer, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"gGO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"gGX" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/purple/bordercorner2, -/obj/structure/table/woodentable/walnut, -/obj/item/device/flashlight/lamp/lava/orange{ - pixel_x = -6; - pixel_y = 13 - }, -/obj/structure/disposalpipe/segment, -/obj/item/storage/box/glasses, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"gGZ" = ( -/obj/machinery/computer/modular/preset/civilian, -/obj/floor_decal/corner/purple/half{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/security) -"gHg" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/machinery/computer/air_control{ - dir = 1; - input_tag = "n2o_in"; - name = "Nitrous Oxide Supply Control"; - output_tag = "n2o_out"; - sensor_name = "Tank"; - sensor_tag = "n2o_sensor" - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/floor_decal/corner/white{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"gHi" = ( -/obj/shuttle_landmark/ert/deck4, -/turf/space, -/area/space) -"gHj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod1/station) -"gHl" = ( -/obj/machinery/computer/modular/preset/cardslot/command{ - dir = 4 - }, -/obj/floor_decal/corner/blue/mono, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"gHp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/closet/hydrant{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"gHq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hydroponics) -"gHs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"gHu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/prepainted, -/area/vacant/infirmary) -"gHx" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass/command{ - dir = 4; - id_tag = "portbridgedoor"; - name = "Bridge"; - secured_wires = 1 - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "bridge_ent"; - name = "Bridge Lockdown" - }, -/obj/floor_decal/corner/darkblue/mono, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"gHC" = ( -/obj/floor_decal/corner/red, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"gHE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/brig) -"gHI" = ( -/obj/structure/undies_wardrobe, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"gHL" = ( -/obj/decal/cleanable/remains, -/obj/decal/cleanable/blood, -/obj/structure/foamedmetal, -/obj/item/passport/iccg/north_gaia, -/obj/item/handcuffs/cable/tape, -/obj/item/handcuffs, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/foreport) -"gHN" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"gHP" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/firstdeck/aftport) -"gHQ" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"gHX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Fore Hallway Starboard"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"gIe" = ( -/obj/structure/flora/pottedplant/mysterious, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"gIf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"gIl" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"gIn" = ( -/obj/floor_decal/industrial/warning, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"gIx" = ( -/obj/machinery/fabricator, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/development) -"gIy" = ( -/obj/structure/table/rack, -/obj/random/coin, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"gIz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"gIM" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"gIN" = ( -/obj/machinery/disposal, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -21 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/heads/office/ce) -"gIR" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -6; - pixel_y = 13 - }, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/pen/blue{ - pixel_y = 3; - pixel_x = -2 - }, -/obj/item/pen/red{ - pixel_y = -2; - pixel_x = 6 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/iaa/cobed) -"gIZ" = ( -/obj/structure/bed/sofa/m/red{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/carpet/magenta, -/area/crew_quarters/cafe) -"gJd" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - dir = 4; - name = "Warehouse"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/storage) -"gJl" = ( -/obj/machinery/shieldwallgen, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"gJm" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"gJt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"gJv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/blast_door{ - id_tag = "expe_warehouse"; - name = "Storage Door Control"; - pixel_x = 6; - pixel_y = 24; - req_access = list(list("ACCESS_EXPLORER","ACCESS_XENOARCH","ACCESS_EL")) - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"gJw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/sign/warning/high_voltage{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"gJE" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/purple/bordercorner2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"gJG" = ( -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"gJH" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"gJQ" = ( -/obj/floor_decal/techfloor, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"gKr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/meter, -/obj/floor_decal/corner/green/three_quarters{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"gKy" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/constructable_frame/computerframe, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"gKz" = ( -/obj/structure/railing/mapped{ - dir = 4; - init_color = "#8c911d"; - color = "#8c911d" - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"gKF" = ( -/turf/simulated/wall/r_wall/hull, -/area/vacant/gambling) -"gKH" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/surgery, -/obj/item/stack/medical/advanced/bruise_pack, -/obj/item/reagent_containers/spray/sterilizine, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/corner/grey_alt{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"gKN" = ( -/obj/item/folder/nt/rd, -/obj/structure/table/glass/boron, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"gKR" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/bed/chair/shuttle, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - dir = 4; - id_tag = "escape_pod_9"; - name = "escape pod nine controller"; - pixel_x = -20; - tag_door = "escape_pod_9_hatch"; - frequency = 1380 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/escape_pod/escape_pod9/station) -"gKT" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/turf/simulated/floor/plating, -/area/assembly/office) -"gKW" = ( -/obj/floor_decal/spline/fancy/wood/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"gKX" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"gLb" = ( -/obj/structure/closet/emcloset, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"gLc" = ( -/obj/structure/table/rack/dark, -/obj/item/stack/material/glass/reinforced/fifty, -/obj/item/stack/material/glass/reinforced/fifty, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/spline/plain/black{ - dir = 9 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"gLg" = ( -/obj/machinery/atmospherics/unary/engine{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/engineering/engine_room) -"gLh" = ( -/obj/structure/table/woodentable/walnut, -/obj/random/single/playing_cards, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/carpet, -/area/crew_quarters/cafe/upper) -"gLp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/prison) -"gLt" = ( -/turf/simulated/wall/r_wall/hull, -/area/security/sierra/hallway/port) -"gLu" = ( -/obj/floor_decal/carpet/blue2{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/floor_decal/carpet/blue2{ - dir = 1 - }, -/obj/floor_decal/carpet/blue2{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/garden_room) -"gLB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"gLI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/floor_decal/corner/purple, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"gLS" = ( -/obj/machinery/shipsensors, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/reinforced, -/area/guppy_hangar/start) -"gLV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftstarboard) -"gLZ" = ( -/obj/structure/disposalpipe/down{ - dir = 8 - }, -/obj/structure/lattice, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/cable{ - d2 = 8; - icon_state = "32-8"; - d1 = 32 - }, -/turf/simulated/open, -/area/maintenance/seconddeck/forestarboard) -"gMa" = ( -/obj/structure/holoplant, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"gMt" = ( -/obj/machinery/shieldwallgen, -/obj/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"gMC" = ( -/obj/structure/railing/mapped{ - dir = 8; - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - dir = 1; - color = "#8c911d" - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"gMI" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/gas) -"gMR" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/machinery/light/small, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"gMW" = ( -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/floor_decal/industrial/traffic/corner, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/floor_decal/corner/black/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"gMZ" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/reinforced, -/area/vacant/monitoring) -"gNl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/floor_decal/borderfloorwhite, -/obj/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/fourthdeck/aft) -"gNq" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"gNu" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"gNw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"gNA" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"gND" = ( -/obj/floor_decal/spline/plain/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/actor) -"gNL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"gNM" = ( -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"gNP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"gNW" = ( -/turf/simulated/wall/prepainted, -/area/rnd/misc_lab) -"gOr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/spot, -/obj/structure/table/standard, -/obj/item/storage/box/monkeycubes{ - pixel_x = 9 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"gOv" = ( -/obj/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"gOx" = ( -/obj/structure/hygiene/shower{ - dir = 4; - pixel_x = -9 - }, -/obj/floor_decal/steeldecal/steel_decals9, -/obj/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry2) -"gOA" = ( -/obj/structure/disposaloutlet, -/obj/machinery/shield_diffuser, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"gOH" = ( -/obj/floor_decal/corner/black/border{ - dir = 10 - }, -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"gOK" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"gOY" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/vacant/monitoring) -"gPd" = ( -/obj/structure/table/rack, -/obj/item/stack/material/steel/ten, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"gPe" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/abandoned_hydroponics) -"gPg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/sign/directions/security{ - pixel_y = 24; - dir = 8 - }, -/obj/structure/sign/directions/bridge{ - pixel_y = 31; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"gPh" = ( -/obj/random/closet, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"gPl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"gPp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"gPw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_r) -"gPA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking_1{ - desc = "A warning sign which reads 'NO SMOKING'. Someone has scratched a variety of crude words in gutter across the entire sign."; - pixel_y = 32 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"gPD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftport) -"gPE" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"gPH" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/firstdeck) -"gPJ" = ( -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = 32; - pixel_y = -37 - }, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"gPL" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"gPM" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"gPP" = ( -/obj/structure/sign/warning/docking_area{ - dir = 8 - }, -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/docking) -"gPR" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d1port) -"gPU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/camera/network/petrov{ - c_tag = "Petrov - Isolation Cell One"; - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell1) -"gPV" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"gPZ" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftstarboard) -"gQd" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - dir = 4; - id_tag = "escape_pod_1_berth"; - name = "escape pod one berth controller"; - pixel_x = -20; - pixel_y = 32; - tag_door = "escape_pod_1_berth_hatch"; - frequency = 1380 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"gQl" = ( -/obj/structure/sign/warning/compressed_gas{ - dir = 8; - pixel_x = 32 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/wrench, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/shuttlefuel) -"gQn" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 5 - }, -/obj/structure/closet/emcloset, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/center) -"gQr" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"gQz" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/door/airlock/external/glass/bolted/cycling{ - frequency = 1380; - id_tag = "skipjack_shuttle_dock_airlock_outer"; - name = "Docking Port Airlock" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"gQA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"gQB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"gQF" = ( -/obj/machinery/door/airlock/hatch/maintenance, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/laundry) -"gQG" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/floor_decal/corner/green/half{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"gQI" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/bed/sofa/r/blue{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"gQN" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"gQV" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins/storage) -"gRa" = ( -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black/corner, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"gRb" = ( -/obj/machinery/computer/teleporter, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/teleporter) -"gRg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/fore) -"gRi" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/blast/shutters/open{ - name = "Supply Desk Shutters"; - id_tag = "sup_office" - }, -/turf/simulated/floor/plating, -/area/quartermaster/office) -"gRn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"gRr" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/meter, -/obj/floor_decal/industrial/warning/corner, -/obj/machinery/button/ignition{ - pixel_x = -21; - id_tag = "ToxLab"; - dir = 4; - pixel_y = 3 - }, -/obj/machinery/button/blast_door{ - pixel_y = -7; - dir = 4; - pixel_x = -21; - id_tag = "ToxLabVent"; - name = "Test Chamber Vent" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"gRs" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"gRw" = ( -/obj/floor_decal/techfloor, -/obj/structure/table/rack{ - dir = 8 - }, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"gRz" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/window/boron_reinforced, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"gRB" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"gRO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"gRR" = ( -/turf/simulated/wall/r_wall/hull, -/area/quartermaster/exploration/storage) -"gRU" = ( -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/center) -"gSc" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"gSd" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/open, -/area/space) -"gSe" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"gSf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"gSk" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"gSm" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light/small, -/obj/machinery/recharger/wallcharger{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"gSp" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/paleblue/border, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"gSw" = ( -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/port) -"gSx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 1; - frequency = 1380; - id_tag = "centcom_shuttle_dock"; - pixel_x = 32; - pixel_y = -29; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"gSB" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"gSC" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"gSH" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/bed/sauna_bench/middle, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sauna) -"gSJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"gSO" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/exploration/eva) -"gSQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"gSU" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/brown/border{ - dir = 9 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/mining{ - dir = 4; - c_tag = "Mining - EVA" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"gSV" = ( -/obj/structure/table/rack, -/obj/random/tech_supply, -/obj/random/firstaid, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/white/monotile, -/area/maintenance/fourthdeck/aft) -"gTc" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"gTl" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/abandoned_hydroponics) -"gTx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"gTA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/compactor) -"gTB" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"gTL" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_north = 2; - tag_south = 1; - tag_west = 3 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"gTN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"gTP" = ( -/obj/catwalk_plated, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/camera/network/hangar, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"gTT" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/bed/chair/comfy/purple{ - dir = 8 - }, -/obj/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/rnd/office) -"gUf" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"gUj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/hallway) -"gUl" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/fourthdeck/starboard) -"gUp" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"gUC" = ( -/obj/machinery/atm{ - pixel_y = 32 - }, -/obj/floor_decal/corner/blue/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/heads/office/hop) -"gUF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 6 - }, -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/power) -"gUM" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/structure/table/rack, -/obj/random/toolbox, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"gUO" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"gUS" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/smes/buildable/preset/sierra/substation{ - RCon_tag = "Substation - Fourth Deck" - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/fourthdeck) -"gUT" = ( -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hop/cobed) -"gUV" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"gUX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/structure/table/woodentable/walnut, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"gUY" = ( -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"gVa" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftport) -"gVb" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/equipstorage) -"gVj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"gVk" = ( -/obj/structure/bed/chair/armchair/brown{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera/network/command{ - c_tag = "Command - Captain's Office"; - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"gVl" = ( -/obj/structure/closet/secure_closet/scientist_sierra, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/locker) -"gVn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"gVs" = ( -/obj/machinery/power/apc/super/critical{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"gVw" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"gVz" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/table/woodentable/maple, -/obj/item/reagent_containers/food/drinks/coffee, -/obj/item/reagent_containers/pill/pod/cream{ - pixel_y = 7; - pixel_x = 8 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"gVE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/aft_stairwell) -"gVS" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"gVV" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"gVY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"gWa" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"gWh" = ( -/obj/structure/ladder/up, -/obj/floor_decal/industrial/warning/fulltile, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"gWi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"gWj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"gWk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/atmos) -"gWu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/flora/pottedplant/tall, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/fourth_deck{ - dir = 1; - c_tag = "Fourth Deck - Dock Bay - Visitors" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"gWy" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/techfloor, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"gWA" = ( -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/obj/item/storage/mirror{ - pixel_x = -1; - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"gWF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"gWK" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/no_grille/regular{ - id = "cafewindow" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/crew_quarters/cafe/upper) -"gWL" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - dir = 1; - id_tag = "rescue_shuttle_dock_airlock_pump"; - power_rating = 25000 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"gWQ" = ( -/obj/structure/window/reinforced, -/obj/floor_decal/industrial/warning, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/security/range) -"gWR" = ( -/obj/structure/curtain/medical, -/obj/structure/kitchenspike, -/obj/structure/window/basic, -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/obj/floor_decal/snow, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/galley/freezer) -"gWU" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/corner/red, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"gWW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/floor_decal/steeldecal/steel_decals_central6, -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"gXf" = ( -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"gXj" = ( -/obj/structure/cryofeed, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/central_stairwell) -"gXo" = ( -/obj/structure/flora/seaweed/mid, -/mob/living/simple_animal/aquatic/fish{ - name = "Marry" - }, -/obj/fluid_mapped, -/turf/simulated/floor/beach/sand, -/area/crew_quarters/cafe/upper) -"gXp" = ( -/obj/random/closet, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/forestarboard) -"gXv" = ( -/obj/structure/table/rack, -/obj/random/tool, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"gXw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"gXD" = ( -/obj/structure/fitness/punchingbag, -/obj/floor_decal/corner/red/full, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/gym) -"gXZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/sign/warning/pods/south{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"gYd" = ( -/turf/simulated/wall/r_wall/hull, -/area/rnd/toxins/storage) -"gYk" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"gYr" = ( -/obj/machinery/button/windowtint{ - dir = 8; - id = "ce_windows"; - pixel_x = 24; - pixel_y = 19 - }, -/obj/machinery/button/alternate/door{ - desc = "A remote control-switch for the office door."; - dir = 8; - id_tag = "cedoor"; - name = "Office Door Control"; - pixel_x = 24; - pixel_y = 6; - req_access = list("ACCESS_CHIEF_ENGINEER") - }, -/obj/machinery/button/blast_door{ - dir = 8; - id_tag = "eng_lockdown"; - name = "Emergency Lockdown Control"; - pixel_x = 24; - pixel_y = -7; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"gYt" = ( -/obj/spider/spiderling/mundane/dormant, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"gYu" = ( -/obj/machinery/light/small, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"gYx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"gYC" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"gYE" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/open, -/area/space) -"gYL" = ( -/obj/floor_decal/corner/purple/full, -/obj/structure/flora/pottedplant/mysterious, -/obj/machinery/light_switch{ - dir = 4; - on = 1; - pixel_x = -25 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/rd/cobed) -"gYM" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/red/bordercorner2, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"gYN" = ( -/obj/structure/closet/secure_closet/crew/research, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/item/folder/nt, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/locker) -"gYS" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/trash, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"gYU" = ( -/obj/structure/sign/warning/vent_port, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/incinerator) -"gZb" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"gZf" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/hos, -/obj/landmark/start{ - name = "Head of Security" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/heads/office/hos/cobed) -"gZm" = ( -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"gZs" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft_stairwell) -"gZv" = ( -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"gZz" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/empty, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"gZD" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/corner/red/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/fore) -"gZK" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"gZL" = ( -/obj/paint/dark_gunmetal, -/turf/simulated/wall/r_titanium, -/area/crucian_hangar/start) -"gZM" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "o24p_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d1port) -"gZU" = ( -/obj/floor_decal/corner/yellow/half, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"gZX" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/snacks/mint, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"gZZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/fore) -"haa" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/floor_decal/corner/green{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"hae" = ( -/obj/floor_decal/corner/black/full, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"hal" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red{ - dir = 6 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"haq" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"har" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"has" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"haz" = ( -/obj/structure/bed/chair/wood/walnut{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"haA" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"haH" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"haJ" = ( -/obj/structure/closet/emcloset, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry2) -"haL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/center) -"haP" = ( -/obj/structure/table/standard, -/obj/item/deck/cards{ - pixel_y = 8; - pixel_x = 4 - }, -/obj/random/drinkbottle, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"haV" = ( -/obj/machinery/keycard_auth/sierra{ - pixel_x = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"haW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/aft) -"hba" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/development) -"hbb" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"hbd" = ( -/obj/floor_decal/corner/black/bordercee{ - dir = 4 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hbi" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"hbv" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"hbz" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/bed/chair/pew, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/wood, -/area/crew_quarters/actor/stage) -"hbD" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/machinery/message_server, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"hbG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"hbM" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/airlock) -"hbS" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"hbT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/paper_bin{ - pixel_y = -4 - }, -/obj/item/pen{ - pixel_y = -4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"hcd" = ( -/obj/structure/hygiene/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/floor_decal/borderfloor{ - color = null; - dir = 4 - }, -/obj/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/machinery/vitals_monitor, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"hcf" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/keycard_auth/sierra{ - pixel_x = -24 - }, -/turf/simulated/floor/selfestructgrid, -/area/security/nuke_storage) -"hci" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"hck" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump{ - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "fuel3p_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d1starboard) -"hcr" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/table/woodentable, -/obj/item/paper/workvisa, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"hcz" = ( -/obj/machinery/floodlight{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"hcF" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/structure/bed/chair/padded/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"hcG" = ( -/obj/structure/closet/emcloset/anchored, -/turf/simulated/floor/tiled/techfloor, -/area/bridge) -"hcM" = ( -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"hcP" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"hcQ" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/flora/pottedplant/stoutbush, -/obj/floor_decal/carpet{ - dir = 8 - }, -/obj/floor_decal/carpet{ - dir = 1 - }, -/obj/floor_decal/carpet{ - dir = 9 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/cafe/upper) -"hcS" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"hcT" = ( -/obj/machinery/conveyor{ - dir = 5; - id = "mining_internal" - }, -/turf/simulated/floor, -/area/quartermaster/hangar) -"hcW" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"hcZ" = ( -/obj/structure/undies_wardrobe, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/clothing/under/schoolgirl, -/obj/item/clothing/head/kitty, -/turf/simulated/floor/wood, -/area/maintenance/firstdeck/forestarboard) -"hdb" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"hdc" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/rd/cobed) -"hdi" = ( -/obj/structure/sign/warning/airlock{ - dir = 1; - pixel_y = -32 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/structure/cable/green, -/obj/machinery/camera/network/fourth_deck{ - c_tag = "Fourth Deck - Dock Bay - Port Two"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"hdo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/equipment) -"hdp" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/button/blast_door{ - id_tag = "firingspace"; - name = "Firing Range Shields"; - req_access = list("ACCESS_SEC_DOORS"); - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"hdq" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/bed/sofa/m/brown{ - dir = 10 - }, -/obj/floor_decal/carpet{ - dir = 4 - }, -/obj/floor_decal/carpet{ - dir = 1 - }, -/obj/floor_decal/carpet{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/cafe/upper) -"hdr" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/floor_decal/corner/black/half{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"hdI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/aft) -"hdJ" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/decal/cleanable/blood/drip, -/obj/decal/cleanable/blood/splatter, -/obj/structure/hygiene/toilet{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"hdN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"hem" = ( -/obj/structure/bed/chair/padded/green{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"hes" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/corner/darkblue/bordercorner, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"heG" = ( -/turf/simulated/wall/prepainted, -/area/security/sierra/brig) -"heJ" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"heL" = ( -/obj/shuttle_landmark/escape_pod/start/pod3, -/obj/wallframe_spawn/reinforced/titanium, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/escape_pod3/station) -"heP" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/ship) -"heQ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/grey, -/obj/item/clothing/mask/gas/aquabreather, -/obj/item/clothing/mask/gas/aquabreather, -/obj/item/clothing/mask/gas/aquabreather, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/waterstore) -"heT" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftstarboard) -"heV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"heX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"hfc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/closet/emcloset, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/research) -"hfl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/medical/mortus{ - autoset_access = 0; - name = "Mass Driver"; - req_access = list("ACCESS_CHAPEL_STORAGE") - }, -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "chapel_shutters_md"; - name = "Mass Driver Shutters"; - opacity = 0; - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/chapel/main) -"hfm" = ( -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"hfu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/ai_status_display{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"hfv" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/waterstore) -"hfB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/walnut{ - icon_state = "walnut_broken5" - }, -/area/vacant/bar) -"hfF" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"hfG" = ( -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/tele_pad, -/turf/simulated/floor/tiled/techfloor/grid, -/area/teleporter) -"hfH" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/random/powercell, -/obj/random/powercell, -/obj/random/powercell, -/obj/item/folder/nt, -/obj/item/stack/nanopaste, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/development) -"hfK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"hfO" = ( -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"hfX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/stack/material/plastic/ten, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"hgg" = ( -/obj/machinery/door/blast/regular{ - id_tag = "ToxLabVent" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/rnd/toxins) -"hgw" = ( -/obj/machinery/ai_status_display, -/turf/simulated/wall/prepainted, -/area/crew_quarters/sleep/bunk) -"hgz" = ( -/obj/machinery/light, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"hgB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"hgH" = ( -/obj/structure/closet/coffin, -/obj/structure/railing/mapped, -/obj/floor_decal/corner/black/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"hgI" = ( -/obj/structure/table/glass, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"hgJ" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/synthesized_instrument/guitar, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"hgL" = ( -/obj/floor_decal/corner/black/border{ - dir = 10 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hgM" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"hgX" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"hgZ" = ( -/obj/structure/sign/nanotrasen, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/centralport) -"hha" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"hhg" = ( -/obj/floor_decal/floordetail/edgedrain{ - dir = 4 - }, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/computer/modular/preset/security{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"hhl" = ( -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/obj/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled/steel_grid, -/area/security/prison) -"hhq" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"hhy" = ( -/obj/structure/table/woodentable/walnut, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -21 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor) -"hhD" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"hhE" = ( -/turf/simulated/floor/carpet, -/area/chapel/main) -"hhG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"hhI" = ( -/mob/living/carbon/slime, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"hhN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/grey{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"hhO" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/ore_box, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition/storage) -"hhP" = ( -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"hhW" = ( -/obj/machinery/computer/modular/preset/aislot/research{ - dir = 4 - }, -/obj/floor_decal/corner/research/mono, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"hhZ" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/wallframe_spawn/reinforced/titanium, -/obj/machinery/door/firedoor, -/obj/structure/cable/cyan, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/airlock) -"hil" = ( -/obj/floor_decal/industrial/danger{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/suits) -"him" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "eng4_outer"; - name = "First Deck Port Nacelle Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/thruster/d1port) -"hio" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/computer/atmoscontrol/laptop{ - monitored_alarm_ids = list("xenobio1_alarm","xenobio2_alarm","xenobio3_alarm","xenobio4_alarm","xenobio5_alarm"); - req_access = list("ACCESS_RESEARCH") - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"hip" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/rubble, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"hiM" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/turf/simulated/floor, -/area/quartermaster/hangar) -"hiT" = ( -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/hallway/infirmary) -"hiV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"hjf" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 1 - }, -/obj/structure/flora/pottedplant/floorleaf, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"hjg" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/tiled/dark/monotile, -/area/rnd/xenobiology/xenoflora) -"hjn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"hjo" = ( -/obj/structure/closet/crate, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"hjx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"hjA" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "fusion_observation" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/control) -"hjC" = ( -/obj/floor_decal/corner/black/full, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_x = 29 - }, -/obj/structure/bed/chair/office/comfy/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos/cobed) -"hjI" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"hjK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"hjL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"hjP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"hjS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"hka" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"hkb" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/camera/all/command{ - c_tag = "AI Core - Port"; - dir = 1 - }, -/obj/machinery/computer/modular/preset/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai) -"hkf" = ( -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"hkg" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/fourthdeck/port) -"hko" = ( -/obj/machinery/vending/cigarette, -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/central_stairwell) -"hkq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"hkv" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/port) -"hkw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/civilian{ - name = "Private Room"; - id_tag = "bar_private_room_2"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/cafe) -"hkx" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/machinery/camera/network/fourth_deck{ - c_tag = "Fourth Deck - Dock Bay - Port One" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"hkA" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins/storage) -"hkH" = ( -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"hkL" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"hkN" = ( -/obj/floor_decal/corner/black/three_quarters{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"hkZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"hla" = ( -/obj/decal/cleanable/blood, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/foreport) -"hlc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"hlo" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/blast_door{ - id_tag = "PetrovShield"; - name = "Blast Shutter Control"; - pixel_x = 5; - pixel_y = -3 - }, -/obj/machinery/button/blast_door{ - id_tag = "PetrovBiohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -5; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/cockpit) -"hlu" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"hlz" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/suplocker_room) -"hlC" = ( -/obj/structure/disposalpipe/segment, -/obj/landmark{ - name = "lightsout" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"hlF" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/corner/green/half, -/obj/machinery/vending/wallmed1{ - dir = 1; - name = "Emergency NanoMed"; - pixel_y = -29 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"hlL" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/corner/grey{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/item/storage/box/cups{ - pixel_y = 11; - pixel_x = 4 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"hlM" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "CO24p_out"; - initialize_directions = 1; - internal_pressure_bound = 1000; - internal_pressure_bound_default = 1000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/window/boron_reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d1port) -"hlO" = ( -/obj/floor_decal/industrial/warning/cee, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"hlT" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/barrier, -/obj/item/storage/toolbox/mechanical, -/obj/item/gun/energy/ionrifle/small, -/obj/item/gun/energy/gun, -/obj/item/clothing/suit/armor/captain, -/obj/item/clothing/gloves/captain, -/obj/item/clothing/head/caphat, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/heads/captain/secret_room) -"hlU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"hlX" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"hmg" = ( -/obj/decal/cleanable/dirt, -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"hmD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"hmE" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/table/steel_reinforced, -/obj/item/ladder_mobile, -/obj/item/ladder_mobile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"hmN" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"hmP" = ( -/obj/wallframe_spawn/reinforced/polarized, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/curtain/black, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"hmT" = ( -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"hmZ" = ( -/obj/structure/closet/crate/internals/fuel, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"hnk" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/random/toolbox{ - pixel_y = 14 - }, -/obj/item/folder/yellow{ - pixel_y = -1; - pixel_x = -5 - }, -/obj/item/screwdriver{ - pixel_y = 11; - pixel_x = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sleep/bunk) -"hnq" = ( -/obj/machinery/light, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"hnw" = ( -/obj/structure/bed/chair/comfy/captain{ - dir = 8 - }, -/obj/landmark/start{ - name = "Captain" - }, -/obj/machinery/button/blast_door{ - id_tag = "bridge_windows"; - name = "Bridge Window Blast Doors"; - pixel_x = 36; - pixel_y = -3 - }, -/obj/machinery/button/blast_door{ - id_tag = "bridge_ent"; - name = "Bridge Entarence Blast Doors"; - pixel_x = 36; - pixel_y = 7 - }, -/obj/floor_decal/corner/darkblue/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"hnx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"hnB" = ( -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/random/tech_supply{ - pixel_y = 5 - }, -/obj/random/tech_supply{ - pixel_y = -7; - pixel_x = -6 - }, -/obj/random/tech_supply{ - pixel_y = 7; - pixel_x = 7 - }, -/obj/random/tool{ - pixel_y = -4; - pixel_x = 4 - }, -/obj/random/tool{ - pixel_y = 9; - pixel_x = -3 - }, -/obj/random/tank{ - pixel_y = 7; - pixel_x = -1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"hnL" = ( -/obj/shuttle_landmark/skipjack/deck4, -/turf/space, -/area/space) -"hnN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"hnT" = ( -/obj/structure/table/woodentable_reinforced, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -24; - dir = 4; - pixel_y = 6 - }, -/obj/machinery/button/windowtint{ - dir = 4; - id = "сhief_steward_windows"; - pixel_x = -24; - pixel_y = -6; - range = 2 - }, -/obj/item/device/flashlight/lamp{ - pixel_y = 10; - pixel_x = -5 - }, -/turf/simulated/floor/wood, -/area/command/chief_steward) -"hoa" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/substation/fourthdeck) -"hof" = ( -/obj/machinery/door/firedoor, -/obj/machinery/navbeacon/sierra/SD_forehallway1, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown2_2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/center) -"hoi" = ( -/obj/structure/table/standard, -/obj/machinery/recharger/wallcharger{ - dir = 4; - pixel_x = -22 - }, -/obj/item/gun/energy/laser/practice, -/obj/structure/window/reinforced, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/security/range) -"hos" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d3port) -"hou" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/sticky_pad/random, -/obj/floor_decal/corner/yellow/half{ - dir = 1 - }, -/obj/item/pen, -/obj/item/storage/box/cups{ - pixel_y = 11; - pixel_x = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/quartermaster/suplocker_room) -"hoJ" = ( -/obj/floor_decal/corner/paleblue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"hoN" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/maintenance, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"hoQ" = ( -/obj/structure/table/standard, -/obj/item/deck/cards, -/obj/item/storage/pill_bottle/dice, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"hpa" = ( -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/item/stool/padded, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/exploration) -"hpb" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"hpc" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/maintenance/bridgedeck/starboard) -"hpd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor/stage) -"hpm" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"hpF" = ( -/obj/item/storage/mirror{ - dir = 8; - pixel_x = -1; - pixel_y = -24 - }, -/obj/structure/hygiene/sink{ - pixel_y = -12 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/breakroom) -"hpL" = ( -/obj/machinery/vending/snack{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"hpO" = ( -/obj/structure/table/standard, -/obj/machinery/recharger/wallcharger{ - dir = 4; - pixel_x = -22 - }, -/obj/item/gun/energy/laser/practice, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/range) -"hpR" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"hpS" = ( -/obj/structure/flora/pottedplant/minitree{ - pixel_y = 6 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"hpT" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"hpV" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - injecting = 1; - use_power = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/thruster/d3starboard) -"hpX" = ( -/obj/structure/closet/emcloset/anchored, -/obj/floor_decal/industrial/outline/yellow, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/aft_stairwell) -"hqa" = ( -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/obj/structure/fuel_port, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/medical) -"hql" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/red, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"hqn" = ( -/obj/floor_decal/corner/darkblue, -/obj/structure/janitorialcart, -/obj/item/mop, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge/storage) -"hqt" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/turf/simulated/floor/plating, -/area/assembly/robotics) -"hqv" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_north = 2; - tag_south = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"hqH" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"hqO" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/hygiene/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/landmark/start{ - name = "Research Director" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/xenobiology/entry) -"hqY" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/corner/darkblue/mono, -/obj/structure/filingcabinet/wallcabinet{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"hrb" = ( -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/seconddeck/forestarboard) -"hrj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"hrr" = ( -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/floor_decal/spline/fancy/black, -/obj/machinery/camera/network/command{ - c_tag = "Command - Bridge Port"; - dir = 1 - }, -/obj/random/clipboard, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/corp, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"hrz" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"hrB" = ( -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/reinforced, -/area/turret_protected/ai_maint) -"hrO" = ( -/obj/structure/bed/sofa/l/black, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"hrT" = ( -/obj/machinery/access_button/airlock_interior{ - master_tag = "prototype_controller"; - pixel_x = -23; - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/prototype/engine) -"hrY" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cargo_r) -"hsd" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 1; - id_tag = "nuke_shuttle_dock_airlock_pump" - }, -/obj/floor_decal/industrial/warning/half, -/obj/machinery/oxygen_pump{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"hse" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"hsm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/sierra/evidence) -"hsn" = ( -/obj/machinery/optable{ - name = "Xenobiology Operating Table" - }, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/xenobiology/level1) -"hsq" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/taperoll/bog{ - pixel_x = -12; - pixel_y = -10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/prison) -"hsw" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/seconddeck/emergency) -"hsT" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/mining/brace{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition/storage) -"hsY" = ( -/obj/decal/cleanable/dirt, -/obj/landmark/start{ - name = "Unknown" - }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/abandoned_hydroponics) -"hsZ" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"htc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/tool{ - pixel_y = -6; - pixel_x = -5 - }, -/obj/random/tool{ - pixel_y = 4; - pixel_x = 4 - }, -/obj/random/tank{ - pixel_y = -1; - pixel_x = 8 - }, -/obj/random/tech_supply{ - pixel_y = 11; - pixel_x = -10 - }, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/hangar) -"htd" = ( -/obj/random/closet, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"htf" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/solar/bridge_port) -"htl" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/forestarboard) -"htn" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - id_tag = "guppy_shuttle_pump_out_external" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"htx" = ( -/obj/floor_decal/corner/red/half{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"htB" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"htI" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"htJ" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/decal/cleanable/greenglow, -/turf/simulated/floor/wood/walnut, -/area/vacant/dormintories) -"htU" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/table/woodentable/maple, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup, -/obj/item/reagent_containers/food/condiment/small/packet/coffee{ - pixel_y = 5; - pixel_x = 7 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"htV" = ( -/obj/floor_decal/carpet/orange{ - dir = 4 - }, -/obj/structure/dogbed, -/mob/living/simple_animal/passive/opossum/poppy, -/turf/simulated/floor/carpet/orange, -/area/crew_quarters/heads/office/ce/cobed) -"htW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/aft) -"htX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"hui" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hux" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"huG" = ( -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"huK" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp{ - pixel_y = 10 - }, -/obj/item/device/camera, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation/second) -"huO" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/stock_parts/circuitboard/atmos_alert, -/obj/item/stock_parts/circuitboard/powermonitor, -/obj/item/stock_parts/circuitboard/stationalert, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech) -"huY" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/blue, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"hva" = ( -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/sleep/cryo/south) -"hvd" = ( -/obj/floor_decal/techfloor, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_upload) -"hvh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light_construct/small, -/turf/simulated/floor/tiled/freezer, -/area/medical/virology/lab) -"hvk" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"hvn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/center) -"hvo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/seconddeck/aftport) -"hvp" = ( -/obj/machinery/door/airlock/atmos, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"hvt" = ( -/obj/structure/curtain/medical, -/obj/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/floor_decal/corner/lime/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"hvF" = ( -/obj/random/closet, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"hvO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/foreport) -"hvR" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - id_tag = "escape_pod_5_pump" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"hvT" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/machinery/computer/upload/ai, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"hvU" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/obj/machinery/meter, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"hvZ" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border, -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 24 - }, -/obj/machinery/button/holosign{ - id_tag = "sierra_surgery2"; - pixel_y = 24 - }, -/obj/machinery/button/windowtint{ - id = "sierra_surgery2"; - pixel_x = -8; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery/second) -"hwe" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"hwk" = ( -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"hwm" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4; - name = "Maintenance Storage" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/backstorage) -"hwv" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/toxins/storage) -"hww" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/obj/structure/closet/hydrant{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"hwE" = ( -/obj/structure/grille, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hwI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/flasher{ - id_tag = "ai_core"; - pixel_y = 24 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"hwN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"hwP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"hwS" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"hwU" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/structure/bed/chair/padded/yellow{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"hwV" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"hwW" = ( -/obj/floor_decal/corner/paleblue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"hwX" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/grille, -/turf/simulated/floor/airless, -/area/space) -"hwZ" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"hxb" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"hxm" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"hxu" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = -21 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/equipment) -"hxy" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/mauve/bordercorner2, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"hxD" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"hxU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"hxY" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"hya" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"hyc" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/black/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"hyf" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"hyg" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/green/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics/third_deck_storage) -"hyj" = ( -/obj/floor_decal/corner/black/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/black/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/black/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics/third_deck_storage) -"hyk" = ( -/obj/structure/catwalk, -/obj/structure/handrail, -/turf/simulated/floor/shuttle_ceiling/sierra, -/area/space) -"hyo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"hys" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"hyu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/paint_stripe/turquoise, -/obj/paint/black, -/obj/paint/black, -/turf/simulated/wall/r_wall/prepainted, -/area/turret_protected/ai_teleport) -"hyz" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Central Hallway - Aft"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"hyA" = ( -/obj/structure/table/rack, -/obj/item/storage/firstaid/regular{ - pixel_y = 10 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular{ - pixel_y = -10 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/equipstorage) -"hyC" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/machinery/vending/snix{ - dir = 8 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"hyD" = ( -/obj/structure/bed/padded, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/bedsheet/brown, -/turf/simulated/floor/carpet, -/area/vacant/dormintories) -"hyH" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/item/modular_computer/telescreen/preset/medical{ - pixel_x = -32 - }, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"hyL" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"hyP" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/bed/chair/armchair/black, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"hyS" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/machinery/door/airlock/civilian{ - dir = 4; - name = "Research General Cabin"; - req_access = list("ACCESS_RESEARCH"); - autoset_access = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"hyW" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/suit_storage_unit/security/sapper, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/suits) -"hzb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"hzh" = ( -/obj/machinery/power/tracker, -/obj/floor_decal/solarpanel, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"hzl" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/structure/bed/sofa/l/brown{ - dir = 4 - }, -/obj/floor_decal/carpet/red, -/obj/floor_decal/carpet/red{ - dir = 8 - }, -/obj/floor_decal/carpet/red{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"hzn" = ( -/obj/structure/sign/thera{ - pixel_y = 32 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"hzv" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "solar_bridge_pump" - }, -/obj/machinery/light/small, -/obj/machinery/oxygen_pump{ - pixel_y = -32 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "solar_bridge_airlock"; - pixel_x = 2; - pixel_y = 24; - req_access = list("ACCESS_EXTERNAL"); - tag_airpump = "solar_bridge_pump"; - tag_chamber_sensor = "solar_bridge_sensor"; - tag_exterior_door = "solar_bridge_outer"; - tag_interior_door = "solar_bridge_inner" - }, -/obj/machinery/airlock_sensor{ - id_tag = "solar_bridge_sensor"; - pixel_x = -12; - pixel_y = 24 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar/bridge_starboard) -"hzN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/cyan, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"hzR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"hzW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"hAc" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"hAe" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/table/steel_reinforced, -/obj/item/paper/sierra/exploration, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"hAt" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"hAu" = ( -/obj/floor_decal/industrial/traffic{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hAz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"hAA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/blue/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/blue/bordercorner2, -/obj/machinery/camera/network/fourth_deck{ - c_tag = "Fourth Deck - Dock Bay - Hallway Two"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"hAB" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"hAD" = ( -/obj/structure/ladder/up, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hAE" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/corner/green/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/virology{ - locked = 1; - id_tag = "virology_access_inner"; - frequency = 1379; - name = "Virology" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "vir_blast_enter"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology) -"hAJ" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"hAO" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"hAP" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"hAV" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/firecloset, -/turf/simulated/floor/tiled/techfloor/grid, -/area/assembly/robotics) -"hAZ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/artifact_scanpad, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/scan) -"hBd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Internal Affairs Agent Dorm"; - secured_wires = 1; - hackProof = 1; - ai_control_disabled = 1 - }, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/iaa/cobed) -"hBn" = ( -/obj/floor_decal/techfloor/corner, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/floor_decal/techfloor/hole{ - dir = 1 - }, -/obj/machinery/flasher{ - id_tag = "security_pod_flash"; - name = "Floor mounted flash" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod5/station) -"hBo" = ( -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"hBq" = ( -/obj/machinery/door/airlock/hatch{ - frequency = 1379; - id_tag = "engine_atmos_airlock_outer"; - name = "Engine Airlock Exterior" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"hBr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"hBs" = ( -/obj/random/vendor/contraband/maintenance, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"hBu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"hBv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"hBx" = ( -/obj/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"hBL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"hBO" = ( -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/medical/virology) -"hBS" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"hBY" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"hBZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"hCb" = ( -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/assembly/office) -"hCt" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plating, -/area/rnd/toxins) -"hCv" = ( -/obj/structure/bed/chair/padded/red{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"hCw" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"hCF" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"hCG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3starboard) -"hCS" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"hCT" = ( -/obj/floor_decal/corner/green/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hCU" = ( -/obj/structure/table/woodentable/mahogany, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"hCY" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id_tag = "hangar_checkpoint_shutters"; - name = "Hangar Deck Checkpoint Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/security/sierra/dockcheck) -"hDf" = ( -/obj/floor_decal/corner/darkblue/full, -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"hDl" = ( -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"hDn" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - id_tag = "misclab"; - name = "Test Chamber Blast Doors"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/rnd/containment) -"hDo" = ( -/obj/structure/hygiene/shower{ - dir = 1 - }, -/obj/structure/hygiene/drain/bath, -/obj/machinery/door/window{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/closet/walllocker{ - pixel_x = -28 - }, -/obj/random/soap, -/obj/item/towel/fleece, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"hDr" = ( -/obj/machinery/atmospherics/valve/shutoff/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"hDt" = ( -/obj/floor_decal/industrial/outline/orange, -/obj/structure/ship_munition/disperser_charge/mining, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/command/bsa) -"hDE" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/nuke_storage) -"hDN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/substation/thirddeck) -"hDS" = ( -/obj/decal/cleanable/dirt, -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"hDW" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/ward) -"hEe" = ( -/obj/random/junk, -/obj/decal/cleanable/generic, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"hEf" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"hEt" = ( -/obj/machinery/camera/motion/command{ - c_tag = "Command - Internal Affairs Communications Relay"; - dir = 1 - }, -/obj/floor_decal/corner/black/full, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"hEw" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/shipsensors, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/bridge) -"hED" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -24; - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/floor_decal/corner/lime/mono, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/center) -"hEE" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"hEH" = ( -/obj/floor_decal/carpet{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/cafe/upper) -"hEI" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"hEJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/eva) -"hEQ" = ( -/obj/structure/railing/mapped, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"hFb" = ( -/obj/structure/sign/warning/hot_exhaust{ - dir = 1 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1starboard) -"hFc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"hFe" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"hFo" = ( -/obj/structure/table/rack/dark, -/obj/item/storage/box/latexgloves, -/obj/item/storage/box/nitrilegloves, -/obj/item/storage/box/bloodpacks, -/obj/item/storage/box/beakers, -/obj/item/storage/box/masks, -/obj/item/storage/box/syringes, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/freezer{ - pixel_y = 13 - }, -/obj/item/storage/med_pouch/burn, -/obj/item/storage/med_pouch/burn, -/obj/item/storage/med_pouch/oxyloss, -/obj/item/storage/med_pouch/oxyloss, -/obj/item/storage/med_pouch/toxin, -/obj/item/storage/med_pouch/toxin, -/obj/item/storage/med_pouch/trauma, -/obj/item/storage/med_pouch/trauma, -/obj/item/roller_bed, -/obj/item/roller_bed, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, -/obj/item/auto_cpr, -/obj/floor_decal/spline/plain/paleblue{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"hFu" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"hFB" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"hFC" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/floor_decal/spline/plain/brown{ - dir = 8 - }, -/obj/machinery/vending/costumes{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/actor) -"hFK" = ( -/obj/structure/largecrate, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"hFN" = ( -/obj/structure/catwalk, -/obj/random/hat, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"hFS" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"hFU" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"hFV" = ( -/obj/structure/railing/mapped, -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"hFW" = ( -/obj/floor_decal/spline/plain/black, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hGd" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"hGe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/red/diagonal, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"hGf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"hGh" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"hGj" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"hGr" = ( -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/sign/deck/fourth{ - pixel_y = 35 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"hGt" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"hGy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"hGC" = ( -/obj/structure/closet/secure_closet/personal/empty, -/obj/floor_decal/corner/green/border{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/sauna) -"hGD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"hGK" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#4c535b" - }, -/area/quartermaster/hangar/upper) -"hGM" = ( -/obj/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hGN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"hGR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "bsa_door2"; - name = "Obstruction Field Disperser Blast Door" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/command/bsa) -"hGU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Fore Hallway"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"hHa" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/constructable_frame/machine_frame, -/obj/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"hHd" = ( -/obj/structure/sign/warning/moving_parts{ - dir = 4; - pixel_x = -32 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"hHm" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/lino, -/area/command/chief_steward) -"hHp" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/coffee{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/docking) -"hHv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/research{ - id_tag = "researchdoor_interior"; - name = "Research Division Access"; - req_access = newlist() - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"hHA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"hHC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/camera/network/fourth_deck{ - c_tag = "Escape Pods - Starboard"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"hHF" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"hHI" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"hHQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"hHX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"hHY" = ( -/obj/structure/table/glass, -/obj/item/device/scanner/spectrometer, -/obj/item/device/scanner/reagent, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/forensic/lab) -"hId" = ( -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"hIf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"hIn" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/engine_setup/coolant_canister, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"hIo" = ( -/obj/machinery/camera/ai/core{ - c_tag = "AI Core - Aft Starboard"; - dir = 4 - }, -/obj/item/device/radio/intercom/locked/ai_private{ - pixel_y = 22 - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"hIq" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/shuttle/petrov/test_room) -"hIr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"hIs" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "teleport3"; - name = "Third Deck Teleporter Access Shutters" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/teleporter) -"hIu" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/corner/black{ - dir = 10 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"hIE" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/obj/structure/sign/nanotrasen{ - dir = 8 - }, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod4/station) -"hIP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"hIT" = ( -/obj/floor_decal/corner/black/full, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"hIX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"hJd" = ( -/obj/structure/flora/pottedplant/orientaltree, -/obj/floor_decal/corner/blue{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/camera/network/command{ - c_tag = "Command - Chief Medical Officer"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"hJi" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/suplocker_room) -"hJk" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"hJw" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/seconddeck/aftport) -"hJE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"hJM" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/selfestructgrid, -/area/security/nuke_storage) -"hJR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"hJT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"hJV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ - dir = 1 - }, -/obj/floor_decal/industrial/warning, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"hKb" = ( -/obj/structure/railing/mapped, -/obj/machinery/bodyscanner{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"hKd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"hKe" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"hKg" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"hKj" = ( -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"hKk" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"hKl" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"hKq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/floor_decal/corner/purple, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry) -"hKx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"hKA" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - id = "o24p_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d1port) -"hKH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"hKK" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown3_3" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass/civilian{ - dir = 4; - autoset_access = 0 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/center) -"hKN" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"hKO" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"hKY" = ( -/turf/simulated/wall/prepainted, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"hLe" = ( -/obj/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"hLf" = ( -/obj/structure/door_assembly, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"hLq" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"hLv" = ( -/obj/floor_decal/spline/plain/black, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hLw" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"hLx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"hLG" = ( -/obj/structure/table/glass, -/obj/item/folder, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"hLJ" = ( -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hLM" = ( -/obj/structure/table/standard, -/obj/item/towel/random, -/obj/item/towel/random, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level2) -"hLO" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/eva) -"hLX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"hMg" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Robotics Backroom"; - req_access = newlist() - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/assembly/robotics) -"hMi" = ( -/obj/random/closet, -/obj/random/maintenance, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"hMp" = ( -/obj/machinery/constructable_frame, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"hMA" = ( -/obj/machinery/computer/modular/preset{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"hMC" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/catwalk, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Shield Subgrid"; - name_tag = "Shield Bypass" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shield/thirddeck) -"hMO" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/nano) -"hMV" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"hMX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"hNf" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"hNk" = ( -/obj/structure/sign/warning/airlock{ - pixel_y = 32 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/obj/machinery/camera/network/fourth_deck{ - dir = 4; - c_tag = "Fourth Deck - Dock Bay - Starboard Two" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"hNm" = ( -/obj/machinery/portable_atmospherics/canister/hydrogen, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins/storage) -"hNn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/utility) -"hNp" = ( -/obj/structure/bed/chair/comfy/teal, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"hNs" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"hNC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "d3portnacelle" - }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"hNE" = ( -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/airlock) -"hNN" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"hNZ" = ( -/obj/structure/railing/mapped, -/obj/structure/closet/firecloset, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"hOi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - req_access = newlist(); - name = "Main Warehouse" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"hOp" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"hOq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/fourthdeck/central_stairwell) -"hOu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d1starboard) -"hOv" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/incinerator) -"hOz" = ( -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/obj/structure/table, -/obj/item/stack/material/wood/walnut{ - amount = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"hOF" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft_stairwell) -"hOL" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/ship_map, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"hOR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "petrov_shuttle_airlock"; - pixel_x = -24; - pixel_y = 22 - }, -/obj/floor_decal/corner/purple, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"hOU" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/table/rack, -/obj/item/wrench, -/obj/item/clothing/mask/breath, -/obj/item/tank/oxygen_emergency_extended, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"hOX" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"hPc" = ( -/obj/machinery/suit_storage_unit/medical/alt, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"hPf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1starboard) -"hPn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 5 - }, -/obj/floor_decal/corner/grey{ - dir = 10 - }, -/obj/machinery/light/small, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"hPx" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod5/station) -"hPy" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/structure/bed/chair/padded/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"hPF" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/machinery/photocopier, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"hPN" = ( -/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ - RCon_tag = "Substation - Bridge Engine" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/substation/bridgedeck) -"hPP" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley/backroom) -"hPR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"hPX" = ( -/obj/structure/catwalk, -/turf/simulated/open, -/area/maintenance/seconddeck/forestarboard) -"hQf" = ( -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"hQn" = ( -/turf/simulated/wall/prepainted, -/area/medical/maintenance_equipstorage) -"hQr" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"hQt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"hQy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"hQA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"hQO" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/spray/cleaner{ - pixel_y = 5; - pixel_x = 4 - }, -/obj/item/reagent_containers/spray/sterilizine, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"hQX" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/tcommsat/chamber) -"hQZ" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "petrov3"; - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell3) -"hRc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"hRh" = ( -/obj/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/structure/closet/emcloset/anchored, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/central_stairwell) -"hRp" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/substation/bridgedeck) -"hRu" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/hallway/primary/seconddeck/center) -"hRz" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - name = "Pump - waste to connector" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/exploration_shuttle/power) -"hRQ" = ( -/obj/floor_decal/corner/yellow/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hRS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/forestarboard) -"hRT" = ( -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"hRW" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "hangar_checkpoint_shutters"; - name = "Hangar Deck Checkpoint Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/security/sierra/dockcheck) -"hRZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/pager/security{ - name = "Call Guards button"; - pixel_x = -12; - pixel_y = 22 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/fore) -"hSc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/hologram/holopad{ - pixel_y = 16; - pixel_x = -16 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"hSf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"hSn" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "xenobotany_access_maintaince"; - name = "Xenobotany Lab Access Console"; - pixel_y = 24; - req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH") - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"hSq" = ( -/obj/machinery/door/airlock/vault/bolted{ - autoset_access = 0; - id_tag = "medsafe_aft"; - name = "Emergency Exit" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"hSu" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/reinforced, -/area/turret_protected/ai_maint) -"hSw" = ( -/obj/machinery/computer/modular/preset/security{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"hSx" = ( -/obj/structure/hygiene/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/storage/mirror{ - pixel_x = 26; - pixel_y = 1 - }, -/turf/simulated/floor/tiled, -/area/assembly/office) -"hSE" = ( -/obj/structure/table/standard, -/obj/floor_decal/corner/blue{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/flora/pottedplant/thinbush{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"hSU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated/white, -/turf/simulated/floor/plating, -/area/vacant/infirmary) -"hTf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/meter, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"hTi" = ( -/obj/floor_decal/techfloor/orange, -/obj/structure/bed/chair/padded/blue{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"hTm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"hTt" = ( -/obj/structure/table/steel_reinforced, -/obj/floor_decal/corner/red/half{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/button/alternate/door{ - pixel_y = 10; - id_tag = "bridge_hallway_doors_starboadr"; - name = "Bridge Hallway Doors Starboard"; - dir = 1 - }, -/obj/machinery/button/blast_door{ - id_tag = "lobb_shutt"; - name = "Lobby shutters control"; - pixel_y = -4; - pixel_x = -4; - dir = 1 - }, -/obj/machinery/button/blast_door{ - id_tag = "lobb_hall_shutt"; - name = "Hallway shutters control"; - pixel_y = -4; - pixel_x = 6; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"hTu" = ( -/obj/structure/table/rack, -/obj/item/stock_parts/circuitboard/bluespacerelay, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech/high_risk) -"hTA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/thirddeck/fore) -"hTK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"hTN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"hTO" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/button/alternate/door{ - id_tag = "med_crit_d1"; - pixel_y = -4; - pixel_x = -5; - dir = 4; - name = "Critical Wing Deck 1 Entrance" - }, -/obj/machinery/button/alternate/door{ - id_tag = "MedbayInf"; - dir = 4; - pixel_y = 6; - pixel_x = -5; - name = "Infirmary Main Entrance" - }, -/obj/machinery/button/alternate/door{ - id_tag = "med_crit_d2"; - dir = 4; - pixel_y = -4; - pixel_x = 5; - name = "Critical Wing Deck 2 Entrance" - }, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"hTP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"hTS" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"hTZ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/tech/high_risk) -"hUq" = ( -/obj/structure/table/standard, -/obj/floor_decal/corner/paleblue/diagonal, -/obj/item/toy/figure/md, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"hUv" = ( -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hUB" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/computer/ship/engines, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"hUE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/bed/chair/padded/red{ - dir = 4 - }, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"hUG" = ( -/obj/structure/bed/sofa/l/teal{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/office) -"hUN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"hUQ" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"hUX" = ( -/obj/machinery/door/airlock/civilian{ - id_tag = "toilet_eng_1"; - name = "Toilet"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head/deck3) -"hUZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/forestarboard) -"hVf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/light, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftstarboard) -"hVg" = ( -/obj/machinery/computer/modular/preset/medical, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/maintenance_equipstorage) -"hVh" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2, -/obj/machinery/vending/coffee{ - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "qm_warehouse2"; - name = "Warehouse Door Control"; - pixel_y = -27; - req_access = list("ACCESS_CARGO"); - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"hVi" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"hVo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"hVv" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/hop) -"hVy" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "cockpit_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cockpit) -"hVE" = ( -/obj/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1; - target_pressure = 40 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"hVF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"hVK" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hVS" = ( -/obj/structure/filingcabinet/chestdrawer{ - dir = 1 - }, -/obj/item/folder/nt, -/obj/item/folder/nt, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/office) -"hVT" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/green/border, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"hWb" = ( -/obj/floor_decal/chapel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"hWe" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - id_tag = "cedoor"; - name = "Chief Engineer"; - req_access = newlist(); - secured_wires = 1; - stripe_color = "#ffbf00" - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/heads/office/ce) -"hWh" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/canister) -"hWm" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"hWt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"hWB" = ( -/turf/unsimulated/mask, -/area/hallway/primary/fourthdeck/center) -"hWR" = ( -/obj/machinery/suit_storage_unit/mining, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/brown/border, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"hWW" = ( -/obj/structure/catwalk, -/turf/simulated/open, -/area/rnd/xenobiology/level1) -"hWZ" = ( -/obj/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"hXe" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown3_1" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft) -"hXj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"hXn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"hXo" = ( -/obj/machinery/door/airlock/command{ - id_tag = "captaindoor"; - name = "Captain"; - secured_wires = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/captain) -"hXp" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/grey, -/obj/random/masks, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"hXt" = ( -/obj/machinery/air_sensor/nacelle/second/co2, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d3port) -"hXy" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/spot, -/obj/structure/sign/warning/airlock{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"hXB" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"hXE" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"hXG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"hXP" = ( -/obj/machinery/atmospherics/unary/vent_pump/engine{ - dir = 8; - external_pressure_bound = 100; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "cooling_out"; - initialize_directions = 1; - pump_direction = 0; - use_power = 1 - }, -/obj/floor_decal/industrial/warning/corner, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/engineering/engine_room) -"hXT" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/shuttlefuel) -"hXU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/office) -"hXZ" = ( -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/plating, -/area/engineering/fuelbay) -"hYf" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"hYi" = ( -/obj/shuttle_landmark/lift/rndmaint_bottom, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"hYl" = ( -/obj/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/obj/item/tape_roll{ - pixel_y = 6; - pixel_x = 5 - }, -/obj/item/reagent_containers/chem_disp_cartridge/coffee{ - pixel_y = 3; - pixel_x = -7 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/beaglemug{ - pixel_y = -5; - pixel_x = 9 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"hYm" = ( -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"hYy" = ( -/obj/structure/bed/padded, -/turf/simulated/floor/tiled/white, -/area/vacant/infirmary) -"hYz" = ( -/obj/machinery/seed_storage/random, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"hYB" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"hYN" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"hYX" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d1port) -"hZc" = ( -/obj/structure/closet/walllocker{ - pixel_y = 28 - }, -/obj/item/storage/candle_box/scented, -/obj/structure/bed/sofa/l/lime, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/cafe/upper) -"hZf" = ( -/obj/floor_decal/corner/black/mono, -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"hZn" = ( -/turf/simulated/wall/prepainted, -/area/vacant/cargo) -"hZo" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"hZp" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/firstdeck/aft) -"hZy" = ( -/obj/machinery/vending/cigarette, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"hZF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"hZG" = ( -/obj/machinery/door/blast/regular, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/maintenance/seconddeck/hangar) -"hZK" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/purple/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"hZL" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"hZN" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"hZQ" = ( -/obj/structure/bookcase/manuals, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"hZR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"iah" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"ian" = ( -/obj/structure/table/rack, -/obj/item/device/radio, -/obj/item/device/flashlight, -/obj/item/crowbar/red, -/obj/item/device/megaphone, -/obj/floor_decal/industrial/outline/grey, -/obj/item/device/binoculars, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"ias" = ( -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3port) -"iau" = ( -/obj/structure/largecrate, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"iaM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"iaQ" = ( -/obj/machinery/vending/sovietsoda{ - dir = 1 - }, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"iaT" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/glass/civilian{ - dir = 8; - name = "Hallway" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/center) -"iaX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 - }, -/turf/simulated/wall/r_wall/hull, -/area/engineering/engine_room) -"ibi" = ( -/obj/landmark{ - name = "xeno_spawn"; - pixel_x = -1 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/vacant/mess) -"ibt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/heads/office/cmo/cobed) -"ibv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"ibw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"iby" = ( -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"ibC" = ( -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"ibE" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"ibF" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins/storage) -"ibG" = ( -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/floor_decal/corner/red/bordercee, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ibJ" = ( -/obj/structure/table/steel_reinforced, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"ibQ" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "outercheckwindow"; - name = "Outer Checkpoint Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/opscheck) -"ibS" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"ibU" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_s" - }, -/obj/paint/red, -/obj/paint_stripe/red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod7/station) -"ibW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d3port) -"ich" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/b_green/bordercorner2{ - dir = 5 - }, -/obj/structure/bed/chair/shuttle/green{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/airlock) -"ick" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"icv" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/fourthdeck/starboard) -"icw" = ( -/obj/machinery/smartfridge/foods, -/obj/machinery/door/blast/shutters{ - id_tag = "cafe"; - name = "Cafe Shutters"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"icG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"icI" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"icR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"icT" = ( -/obj/structure/closet/walllocker{ - pixel_y = -28 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/bio_suit/anomaly, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/bio_hood/anomaly, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/corner/purple/half{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"icW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/empty, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"idc" = ( -/obj/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"idj" = ( -/obj/floor_decal/chapel{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"idk" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/industrial/danger{ - dir = 5 - }, -/obj/machinery/vending/cigarette{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"idp" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/firstdeck) -"idq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"idr" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins/storage) -"idu" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins/storage) -"idw" = ( -/obj/structure/flora/pottedplant/flower, -/obj/floor_decal/carpet/green{ - dir = 8 - }, -/obj/floor_decal/carpet/green{ - dir = 1 - }, -/obj/floor_decal/carpet/green{ - dir = 9 - }, -/turf/simulated/floor/carpet/green, -/area/medical/mentalhealth/therapyroom) -"idA" = ( -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/space) -"idB" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"idD" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/medical{ - name = "Auxiliary Medical Storage" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/equipstorage) -"idG" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/cafe) -"idH" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"idI" = ( -/obj/machinery/computer/modular/preset/cardslot/command{ - dir = 4 - }, -/obj/floor_decal/corner/black/full, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/command/bsa) -"idK" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"idQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Fore Hallway Aft"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"idY" = ( -/obj/structure/table/rack/wooden, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"iej" = ( -/obj/machinery/atmospherics/unary/tank/air, -/obj/floor_decal/industrial/outline/orange, -/obj/machinery/rotating_alarm/security_alarm{ - pixel_y = 13 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"iel" = ( -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/camera/network/command{ - c_tag = "Telecommunications - Control Room"; - network = list("Command","Engineering") - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"iep" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"ier" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/photocopier, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"ies" = ( -/obj/structure/closet/emcloset, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"ieu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"iew" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external/glass/bolted/cycling{ - frequency = 1380; - id_tag = "merchant_shuttle_station_inner"; - name = "Docking Port Airlock" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"ieD" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"ieG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/maintenance/firstdeck/forestarboard) -"ieJ" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"ieR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3port) -"ifd" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/prepainted, -/area/security/sierra/forensic) -"ife" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/light/spot, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/corner/grey/three_quarters, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"ifh" = ( -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"ifq" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"ift" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/white, -/area/vacant/infirmary) -"ifv" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - dir = 4; - id_tag = "escape_pod_7"; - name = "escape pod seven controller"; - pixel_x = -20; - tag_door = "escape_pod_7_hatch"; - frequency = 1380 - }, -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/escape_pod/escape_pod7/station) -"ify" = ( -/obj/floor_decal/corner/red, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"ifz" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/safe_room/seconddeck) -"ifH" = ( -/obj/machinery/power/terminal, -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/item/cell/high{ - pixel_x = 1 - }, -/obj/item/cell/high{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"ifL" = ( -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light/led/small{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/vending/wallbartender{ - pixel_y = 30 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 6 - }, -/obj/machinery/reagentgrinder/juicer{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"ifM" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/prepainted, -/area/security/range) -"igs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Security Sergeant's Desk"; - req_access = newlist(); - id_tag = "bo_windows" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/paint_stripe/red, -/obj/machinery/door/blast/shutters{ - dir = 4; - id_tag = "security_sergeant_shutters"; - name = "Warden Desk" - }, -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf/steel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/sierra/sergeant) -"igx" = ( -/obj/machinery/status_display, -/turf/simulated/wall/prepainted, -/area/crew_quarters/visitors) -"igy" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"igz" = ( -/obj/floor_decal/techfloor, -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/corp, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"igB" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/forestarboard) -"igD" = ( -/obj/structure/railing/mapped, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"igE" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"igF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood, -/area/maintenance/firstdeck/forestarboard) -"igH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"igN" = ( -/obj/floor_decal/carpet/purple{ - dir = 8 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/captain/beach) -"igT" = ( -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hydroponics) -"igU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"igY" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/sofa/r/brown, -/obj/floor_decal/carpet/red{ - dir = 1 - }, -/obj/floor_decal/carpet/red{ - dir = 4 - }, -/obj/floor_decal/carpet/red{ - dir = 5 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Mess Hall - Canteen - Lounge"; - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"ihc" = ( -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"ihh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"ihl" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/structure/window/boron_reinforced, -/obj/structure/window/boron_reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"ihs" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"ihx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/engine_room) -"ihy" = ( -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/bikehorn, -/obj/item/storage/candle_box, -/obj/item/device/toner, -/obj/item/device/taperecorder, -/obj/structure/closet/crate, -/obj/item/laserframe, -/obj/machinery/light, -/obj/floor_decal/spline/plain/purple{ - dir = 1 - }, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"ihA" = ( -/obj/floor_decal/industrial/danger{ - dir = 5 - }, -/obj/floor_decal/industrial/danger, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"ihM" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"ihT" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/atmos/bridge) -"ihU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"ihX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"iia" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 - }, -/obj/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"iib" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"iid" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/random_multi/single_item/space_rabbit, -/turf/simulated/floor/airless, -/area/solar/starboard) -"iif" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"iij" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"iim" = ( -/obj/structure/closet/walllocker{ - pixel_y = 28 - }, -/obj/item/stack/material/plasteel/ten, -/obj/item/stack/material/steel/fifty, -/obj/item/stack/material/steel/fifty, -/obj/item/stack/material/rods/fifty, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"iip" = ( -/obj/shuttle_landmark/sierra/deck4/event, -/turf/space, -/area/space) -"iir" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_to_maint" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"iiu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - id_tag = "observation_shielding"; - name = "Observation Shield" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/dungeon_master_lounge) -"iix" = ( -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"iiG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"iiS" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/ce/cobed) -"iiX" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"iiZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/lime/bordercorner, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"ijh" = ( -/obj/structure/table/rack, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/item/device/radio/off, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"ijj" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"ijo" = ( -/obj/structure/cart{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking_burned{ - pixel_x = -26 - }, -/obj/floor_decal/spline/plain/yellow{ - dir = 4 - }, -/obj/decal/cleanable/cobweb, -/obj/decal/cleanable/ash, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"ijv" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/green/border{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft_stairwell) -"ijx" = ( -/obj/machinery/optable, -/obj/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery/second) -"ijE" = ( -/obj/structure/table/steel_reinforced, -/obj/item/reagent_containers/chem_disp_cartridge/tea, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{ - desc = "A metal tea cup. You're sure it is for tea, do not try to put coffe in."; - name = "metal tea cup"; - pixel_x = 10; - pixel_y = 6 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"ijM" = ( -/obj/machinery/shield_diffuser, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ijN" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/table/standard, -/obj/machinery/reagent_temperature, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/scan) -"ijO" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Fore Hallway - Actors" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"ijP" = ( -/obj/floor_decal/industrial/traffic{ - dir = 4; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/office) -"ijU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"ika" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar_atmos) -"ikb" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"ike" = ( -/obj/machinery/door/airlock/highsecurity{ - locked = 1; - name = "AI Core Access" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/turret_protected/ai) -"ikg" = ( -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Chemistry Refrigerator" - }, -/obj/machinery/smartfridge/secure/medbay{ - req_access = list(list("ACCESS_CHEMISTRY","ACCESS_MEDICAL_EQUIP")) - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"iko" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - id_tag = "escape_pod_6_berth"; - name = "escape pod six berth controller"; - pixel_x = -32; - pixel_y = 21; - tag_door = "escape_pod_6_berth_hatch"; - frequency = 1380 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"ikr" = ( -/obj/machinery/door/airlock/glass/mining{ - name = "Shuttle Fuel Bay Interior"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/shuttlefuel) -"ikx" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/camera/network/fourth_deck{ - c_tag = "Fourth Deck - Dock Bay - Hallway One" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"ikB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"ikC" = ( -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/office) -"ikH" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/bed/chair/shuttle, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - dir = 4; - id_tag = "escape_pod_10"; - name = "escape pod ten controller"; - pixel_x = -20; - tag_door = "escape_pod_10_hatch"; - frequency = 1380 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/escape_pod/escape_pod10/station) -"ikK" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"ikN" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 8; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/obj/structure/sign/warning/vacuum{ - pixel_y = 32 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/incinerator) -"ile" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/barrier, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"ilr" = ( -/obj/structure/table/woodentable/mahogany, -/obj/item/storage/candle_box, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"ils" = ( -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/modular/preset/civilian, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"ilt" = ( -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"ily" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/navbeacon/sierra/TD_starboard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"ilz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/eva) -"ilB" = ( -/obj/machinery/door/blast/regular{ - id_tag = "petrovcell3"; - name = "Test Chamber Blast Doors" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell3) -"ilO" = ( -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"ilR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"ilV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"imi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"imm" = ( -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"imn" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/structure/bed/chair/padded/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"imr" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"ims" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/actor) -"imx" = ( -/obj/catwalk_plated/dark, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/bridge/nano) -"imA" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - id_tag = "calypso_shuttle_pump_out_internal" - }, -/obj/floor_decal/industrial/warning/full, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/exploration_shuttle/airlock) -"imE" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"imH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"imJ" = ( -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/maintenance/firstdeck/forestarboard) -"imM" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"imR" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/wallframe_spawn/reinforced/hull, -/turf/simulated/floor/plating, -/area/bridge) -"imY" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/hallway/primary/firstdeck/aft_stairwell) -"ina" = ( -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"inb" = ( -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/filth, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"inh" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated/dark, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/safe_room/bridge) -"inl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"inI" = ( -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"inO" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 8; - id_tag = "escape_pod_2_pump" - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/grey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod2/station) -"inQ" = ( -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hardstorage) -"inS" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"inU" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 4; - id_tag = "escape_pod_1_pump" - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/grey/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod1/station) -"ioc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ioi" = ( -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d1starboard) -"iok" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"ioI" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"ioU" = ( -/obj/machinery/papershredder, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"ipa" = ( -/obj/structure/bed/sofa/r/black, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Lounge - Library" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"ipg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/atm{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"ipj" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"ipo" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"ipp" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"ipu" = ( -/obj/machinery/camera/network/research{ - c_tag = "Research - Misc. Test Chamber"; - network = list("Research","Miscellaneous Reseach") - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"ipR" = ( -/obj/paint_stripe/yellow, -/obj/paint/dark_gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/wall/r_titanium, -/area/guppy_hangar/start) -"ipU" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/computer/modular/preset/cardslot/command{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"ipX" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 4 - }, -/obj/floor_decal/corner/green/half{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"ipZ" = ( -/obj/machinery/door/airlock/glass/command{ - autoset_access = 0; - dir = 4; - name = "Primary Docking Port Control"; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"iqa" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"iqb" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sleep/bunk) -"iqc" = ( -/obj/machinery/door/airlock/research{ - name = "Equipment Storage" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/equipment) -"iqg" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/sauna_bench/middle/north, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sauna) -"iqj" = ( -/obj/floor_decal/carpet/purple{ - dir = 1 - }, -/obj/floor_decal/carpet/purple{ - dir = 4 - }, -/obj/floor_decal/carpet/purple{ - dir = 5 - }, -/obj/structure/table/woodentable/walnut, -/obj/item/device/flashlight/lamp/lava/purple{ - pixel_y = 5; - pixel_x = -8 - }, -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/office/rd/cobed) -"iql" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/central_stairwell) -"iqw" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"iqx" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/access_button/airlock_exterior{ - pixel_y = -24; - master_tag = "solar_bridge_port_airlock"; - pixel_x = -26 - }, -/turf/simulated/floor, -/area/solar/bridge_port) -"iqy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"iqA" = ( -/obj/structure/table/rack/dark, -/obj/item/stack/material/ocp/ten, -/obj/item/stack/material/ocp/ten, -/obj/item/stack/material/plasteel/fifty, -/obj/structure/railing/mapped, -/obj/floor_decal/spline/plain/black, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"iqH" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"iqL" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"iqM" = ( -/obj/structure/table/rack, -/obj/item/device/flashlight, -/obj/item/device/radio, -/obj/item/crowbar, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"iqR" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/virology/lab) -"irc" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"irx" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/bed/padded, -/obj/item/bedsheet/orange, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/bunk) -"irA" = ( -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"irD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"irE" = ( -/obj/structure/table/glass, -/obj/machinery/keycard_auth/sierra, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"irG" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/bluespace/chamber) -"irS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "eng4_inner"; - name = "First Deck Port Nacelle Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/thruster/d1port) -"irV" = ( -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/glass, -/obj/structure/fireaxecabinet{ - dir = 4; - pixel_y = 30 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/random/clipboard, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"irZ" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"isi" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"isq" = ( -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/corner, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"isu" = ( -/turf/simulated/wall/prepainted, -/area/assembly/office) -"isv" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "mining_internal"; - name = "mining conveyor" - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar) -"isx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"isA" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"isH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"isJ" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"isN" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/exploration/eva) -"isX" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"isY" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/bed/sofa/m/brown, -/obj/floor_decal/carpet{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/cafe/upper) -"isZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "observation_shielding"; - name = "Observation Shield" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/dungeon_master_lounge) -"iti" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"itj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"itm" = ( -/obj/floor_decal/ntlogo, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"itA" = ( -/obj/item/stack/tile/floor{ - pixel_y = -12; - pixel_x = -7 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"itC" = ( -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"itG" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/titanium, -/area/shuttle/petrov/test_room) -"itJ" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"itQ" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "xenobioaqua"; - name = "Containment Blast Doors" - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/water_cell) -"iud" = ( -/obj/floor_decal/corner/research/mono, -/obj/machinery/computer/robotics{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"iue" = ( -/obj/floor_decal/borderfloorwhite, -/obj/floor_decal/corner/lime/border, -/obj/structure/curtain/medical, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"iui" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/machinery/camera/network/hangar, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"iul" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"ius" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/catwalk_plated/white, -/turf/simulated/floor/plating, -/area/vacant/infirmary) -"iuu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/navbeacon/sierra/FD_afthallway1, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"iuv" = ( -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"iuB" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation/second) -"iuE" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/sergeant) -"iuK" = ( -/obj/structure/bed/chair/office/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"iuS" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/prepainted, -/area/security/sierra/equipment) -"iuW" = ( -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "cChamber4pV"; - name = "Chamber Vent" - }, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d1port) -"iuZ" = ( -/obj/machinery/power/apc/high{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/green, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"ivb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"ivd" = ( -/obj/machinery/door/blast/regular{ - id_tag = "d4portnacelle" - }, -/obj/machinery/atmospherics/valve/digital{ - id_tag = "RE4F"; - name = "RE4 digital valve" - }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"ivl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/foreport) -"ivu" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/sign/warning/radioactive{ - dir = 4; - pixel_x = -32 - }, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for engine core."; - dir = 4; - id_tag = "gravgen-antirad-shielding"; - name = "Gravitational Generator Radiation Shielding Control"; - pixel_x = -21; - pixel_y = 10 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/power/apc/high{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"ivv" = ( -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - id_tag = "guppy_shuttle_pump_out_external" - }, -/obj/machinery/airlock_sensor/airlock_exterior{ - frequency = 1331; - id_tag = "guppy_shuttle_exterior_sensor"; - master_tag = "guppy_shuttle"; - pixel_x = 25; - pixel_y = -24 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"ivw" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/simulated/floor/tiled/white, -/area/vacant/infirmary) -"ivz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"ivB" = ( -/turf/simulated/wall/prepainted, -/area/rnd/storage) -"ivC" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/landmark{ - name = "JoinLateCyborg" - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"ivD" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"ivJ" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "briefing_windows" - }, -/turf/simulated/floor/plating, -/area/bridge/marine_room) -"ivL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway/aft) -"ivM" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_eva) -"ivP" = ( -/obj/machinery/photocopier, -/obj/floor_decal/corner/yellow/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"ivT" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Warden"; - destination = "NanoTrasen Central Command" - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"ivW" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"iwb" = ( -/obj/structure/catwalk, -/obj/random/junk, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"iwf" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/b_green/border, -/obj/machinery/cell_charger, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/seats_place) -"iwh" = ( -/obj/machinery/reagentgrinder, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/equipment) -"iwi" = ( -/obj/machinery/power/smes/buildable/preset/patrol/engine_gyrotron, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"iwk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"iwz" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"iwE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/firstdeck) -"iwY" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"iwZ" = ( -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/machinery/computer/cryopod{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/bridge) -"ixb" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/random/tool, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/beacon/explosion_watcher, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"ixc" = ( -/obj/paint_stripe/nt_red, -/obj/paint/nt_white, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod11/station) -"ixd" = ( -/obj/floor_decal/industrial/outline/red, -/obj/structure/ship_munition/disperser_charge/fire, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/command/bsa) -"ixk" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/fourthdeck/central_stairwell) -"ixu" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen{ - pixel_x = -1 - }, -/obj/item/folder/red, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/corner/black/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation) -"ixA" = ( -/obj/floor_decal/corner/green/border{ - dir = 10 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ixH" = ( -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ixK" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"ixM" = ( -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/red/bordercorner, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"ixQ" = ( -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"ixU" = ( -/obj/wallframe_spawn/reinforced/polarized/full{ - id = "bridge_windows" - }, -/obj/structure/cable/green, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "bridge_ent"; - name = "Bridge Lockdown" - }, -/turf/simulated/floor/plating, -/area/bridge) -"iyb" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - id_tag = "xenobio1"; - name = "Containment Blast Doors" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level1) -"iyd" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4; - target_pressure = 200 - }, -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/bridge_starboard) -"iyi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/obj/machinery/power/terminal, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Substation - Second Deck" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/seconddeck) -"iyk" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"iyn" = ( -/obj/machinery/light_switch{ - pixel_x = 21; - dir = 8 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/item/stool/wood, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/breakroom) -"iyp" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/cooker/fryer, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"iyv" = ( -/obj/floor_decal/corner/darkblue/half, -/obj/floor_decal/corner/darkblue{ - dir = 5 - }, -/obj/structure/holoplant, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"iyx" = ( -/obj/structure/ladder, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/seconddeck/foreport) -"iyA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research{ - dir = 4; - name = "RND - Servers"; - secured_wires = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/servers) -"iyB" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/compactor) -"iyC" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"iyF" = ( -/obj/floor_decal/corner/lightgrey/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/generic{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/docking) -"iyG" = ( -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"iyO" = ( -/obj/machinery/disposal, -/obj/item/mop, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"iyZ" = ( -/obj/machinery/papershredder, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/machinery/camera/network/expedition{ - c_tag = "Expedition - Leader"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"izf" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/ship/navigation{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"izh" = ( -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"izi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"izj" = ( -/obj/machinery/vending/cola{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/fore) -"izk" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "Mail" - }, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"izl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"izp" = ( -/obj/machinery/honey_extractor, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/machinery/light/spot, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics/third_deck_storage) -"izs" = ( -/obj/machinery/computer/air_control{ - dir = 1; - input_tag = "waste_in"; - name = "Waste Tank Control"; - output_tag = "waste_out"; - sensor_name = "Waste Tank"; - sensor_tag = "waste_sensor" - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"izt" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/turf/simulated/floor/wood/yew, -/area/crew_quarters/heads/office/ce/cobed) -"izv" = ( -/obj/structure/rubble/war, -/obj/structure/rubble/war, -/obj/fluid_mapped, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"izz" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/obj/structure/sign/directions/security{ - pixel_y = -24; - pixel_x = 32 - }, -/obj/structure/sign/directions/infirmary{ - pixel_y = -31; - pixel_x = 32 - }, -/obj/structure/sign/directions/science{ - pixel_y = -38; - pixel_x = 32 - }, -/obj/machinery/camera/network/second_deck{ - dir = 8; - c_tag = "Second Deck - Aft Stairwell" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft_stairwell) -"izE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/floor_decal/corner/grey/border, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"izW" = ( -/obj/structure/bed/sofa/l/red{ - dir = 4 - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"iAj" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/aft) -"iAm" = ( -/obj/structure/catwalk, -/obj/structure/sign/warning/hot_exhaust{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/open, -/area/space) -"iAq" = ( -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/seconddeck/starboard) -"iAt" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/solar/bridge_starboard) -"iAv" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar) -"iAD" = ( -/obj/wallframe_spawn/reinforced/polarized/full{ - id = "infimary_staging" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_crit1"; - name = "Infirmary Staging Shutters" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/plating, -/area/medical/sleeper) -"iAP" = ( -/obj/machinery/atmospherics/binary/pump/on{ - target_pressure = 200 - }, -/obj/structure/closet/medical_wall/filled{ - pixel_x = 32 - }, -/obj/random/firstaid, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"iAQ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/infirmreception) -"iAT" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1; - icon_state = "railing0-1" - }, -/turf/simulated/open, -/area/maintenance/seconddeck/aftstarboard) -"iAW" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/structure/bed/chair/padded/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"iBa" = ( -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/green/bordercorner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"iBd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 6 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3starboard) -"iBl" = ( -/obj/floor_decal/corner/yellow/three_quarters{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/storage/firstaid/regular{ - pixel_y = 7 - }, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"iBt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"iBu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs) -"iBA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"iBB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/valve/shutoff/supply, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"iBH" = ( -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"iBJ" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/hangar_atmos) -"iBN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"iBO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/selfestructgrid, -/area/security/nuke_storage) -"iBT" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"iBZ" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/table/woodentable/maple, -/obj/item/reagent_containers/food/condiment/small/packet/sugar{ - pixel_y = 3; - pixel_x = 8 - }, -/obj/item/reagent_containers/food/condiment/small/packet/sugar{ - pixel_x = 8; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/condiment/small/packet/sugar{ - pixel_y = -5; - pixel_x = 8 - }, -/obj/item/reagent_containers/food/drinks/pitcher{ - pixel_y = 5; - pixel_x = -3 - }, -/obj/machinery/reagent_temperature{ - pixel_x = -3 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"iCa" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"iCf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"iCg" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/vacant/cargo) -"iCj" = ( -/obj/shuttle_landmark/ninja/deck1, -/turf/space, -/area/space) -"iCl" = ( -/obj/structure/railing/mapped{ - color = "#46698c"; - init_color = "#46698c" - }, -/turf/simulated/open, -/area/hallway/primary/bridgedeck/central_stairwell) -"iCD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"iCF" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/development) -"iCK" = ( -/obj/floor_decal/steeldecal/steel_decals_central7, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"iCS" = ( -/obj/decal/cleanable/dirt, -/obj/structure/synthesized_instrument/synthesizer/piano, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"iDb" = ( -/obj/machinery/computer/modular/preset/medical{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"iDf" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/structure/sign/botany{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"iDj" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"iDl" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/waterstore) -"iDo" = ( -/obj/machinery/atmospherics/valve/shutoff/fuel{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/fuelbay) -"iDp" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"iDr" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/table/standard, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/stamp/cargo{ - name = "supply rubber stamp" - }, -/obj/floor_decal/corner/yellow/half{ - dir = 1 - }, -/obj/item/device/eftpos{ - pixel_y = 11; - pixel_x = -7 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"iDB" = ( -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"iDE" = ( -/obj/structure/window/basic, -/obj/machinery/door/window{ - autoset_access = 0; - dir = 4 - }, -/obj/structure/curtain/open/privacy, -/obj/item/stool/padded, -/obj/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"iDK" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/black/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/floor_decal/corner/grey/border{ - dir = 5 - }, -/obj/machinery/vending/lavatory{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile, -/area/crew_quarters/head) -"iDP" = ( -/obj/structure/largecrate, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"iDU" = ( -/obj/structure/mattress, -/turf/simulated/floor/tiled, -/area/maintenance/firstdeck/aftstarboard) -"iEb" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/ship_munition/disperser_charge/explosive, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/command/bsa) -"iEl" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/mauve/border, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"iEm" = ( -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"iEq" = ( -/obj/floor_decal/industrial/outline/red, -/obj/structure/ship_munition/disperser_charge/fire, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/command/bsa) -"iEt" = ( -/obj/floor_decal/corner/grey{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/computer/air_control{ - input_tag = "CO22p_in"; - name = "Propellent Supply Control"; - output_tag = "CO22p_out"; - sensor_name = "Tank"; - sensor_tag = "ReacEngCO22" - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"iEv" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/multi_tile/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/starboard) -"iEy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"iEB" = ( -/obj/floor_decal/corner/black/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack/corner, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"iEJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"iEL" = ( -/obj/item/device/radio/intercom/locked/ai_private{ - pixel_y = 22 - }, -/turf/simulated/floor/reinforced, -/area/turret_protected/ai_maint) -"iEY" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/gas) -"iFe" = ( -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/darkblue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"iFg" = ( -/obj/shuttle_landmark/sierra/deck4/vox_raider, -/turf/space, -/area/space) -"iFo" = ( -/obj/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/machinery/sleeper/survival_pod{ - dir = 1 - }, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 1; - pixel_y = -13 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"iFx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"iFD" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/machinery/vending/soda{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"iFF" = ( -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/lime/bordercorner, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"iFH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"iFP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/crystal, -/area/crew_quarters/adherent) -"iGb" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/table/rack{ - dir = 8 - }, -/obj/random/maintenance, -/obj/random/gloves, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"iGf" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"iGg" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/green/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"iGi" = ( -/obj/machinery/pointdefense_control{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"iGl" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"iGm" = ( -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"iGp" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"iGv" = ( -/obj/structure/closet/crate/critter, -/obj/item/device/scanner/health, -/obj/item/device/scanner/gas, -/obj/item/device/scanner/mining, -/obj/item/autopsy_scanner, -/obj/item/device/scanner/plant, -/obj/item/device/scanner/price, -/obj/item/device/scanner/xenobio, -/obj/item/device/t_scanner, -/obj/item/device/gps, -/obj/item/device/gps, -/obj/floor_decal/spline/plain/purple{ - dir = 9 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Supply Office - Warehouse - Shutters"; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"iGy" = ( -/obj/machinery/door/airlock/research{ - dir = 4; - name = "RND - Servers"; - secured_wires = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/servers) -"iGA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"iGD" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/iaa/iso_quarters) -"iGE" = ( -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"iGS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/center) -"iGV" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"iGY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"iGZ" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"iHc" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"iHg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"iHh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"iHn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/incinerator) -"iHt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"iHw" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"iHy" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/door/window{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head) -"iHA" = ( -/obj/structure/hygiene/shower{ - pixel_y = 15 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"iHF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"iHT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"iHU" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/paint_stripe/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced/polarized{ - id = "forensicswindow" - }, -/turf/simulated/floor/plating, -/area/security/sierra/forensic) -"iHX" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/escape_pod/escape_pod6/station) -"iIc" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/hangar/upper) -"iIe" = ( -/obj/floor_decal/corner/black/border{ - dir = 9 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"iIk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"iIm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"iIp" = ( -/obj/item/stack/tile/floor{ - pixel_y = 4; - pixel_x = 3 - }, -/obj/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"iIr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"iIz" = ( -/obj/machinery/door/window/westright{ - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/door/window/eastleft{ - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "xenobio1"; - name = "Containment Blast Doors" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"iIA" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/item/storage/secure/safe{ - pixel_y = 32 - }, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/folder/nt, -/obj/item/folder/blue{ - pixel_y = 5; - pixel_x = 5 - }, -/obj/item/folder/red{ - pixel_y = 4; - pixel_x = -3 - }, -/obj/item/stamp/internalaffairs{ - pixel_y = 2; - pixel_x = -4 - }, -/obj/item/stamp/denied, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/iaa/cobed) -"iIC" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"iIE" = ( -/obj/structure/railing/mapped, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"iIF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"iIJ" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"iIK" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"iJh" = ( -/obj/machinery/portable_atmospherics/canister/hydrogen, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"iJi" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "mining_internal" - }, -/turf/simulated/floor, -/area/quartermaster/hangar) -"iJp" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"iJr" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"iJE" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/papershredder, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"iJH" = ( -/obj/decal/cleanable/dirt, -/obj/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"iJK" = ( -/obj/machinery/atmospherics/valve/shutoff/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"iJL" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/green/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics/third_deck_storage) -"iJM" = ( -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"iJQ" = ( -/obj/decal/cleanable/blood/drip, -/obj/decal/cleanable/blood/splatter, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/foreport) -"iJU" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"iKb" = ( -/obj/structure/flora/seaweed/glow, -/obj/fluid_mapped, -/mob/living/simple_animal/aquatic/fish, -/turf/simulated/floor/beach/sand, -/area/rnd/xenobiology/level2) -"iKf" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/stock_parts/circuitboard/robotics, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech/high_risk) -"iKi" = ( -/obj/structure/catwalk, -/obj/structure/sign/warning/moving_parts{ - dir = 8; - pixel_x = 34 - }, -/obj/structure/railing/mapped, -/obj/machinery/conveyor_switch/oneway{ - id = "charon_cargo_in"; - name = "charon external conveyor switch"; - pixel_x = 10; - pixel_y = 15 - }, -/turf/simulated/floor/reinforced, -/area/exploration_shuttle/airlock) -"iKj" = ( -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"iKp" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"iKs" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"iKt" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 - }, -/obj/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"iKu" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bookcase/manuals/security, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"iKw" = ( -/obj/floor_decal/industrial/warning/full, -/obj/machinery/airlock_sensor/airlock_exterior{ - frequency = 1331; - id_tag = "calypso_shuttle_exterior_sensor"; - master_tag = "calypso_shuttle"; - pixel_x = -2; - pixel_y = 27; - req_access = list("ACCESS_EXPEDITION_SHUTTLE") - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - id_tag = "calypso_shuttle_pump_out_external" - }, -/obj/structure/catwalk, -/turf/simulated/floor/reinforced, -/area/exploration_shuttle/airlock) -"iKy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"iKC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"iKK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/ladder/up, -/obj/floor_decal/industrial/warning/fulltile, -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"iKQ" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/fabricator, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Hard Storage" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"iKU" = ( -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "d2portnacelle" - }, -/obj/machinery/atmospherics/valve/digital{ - id_tag = "RE2F"; - name = "RE2F digital valve" - }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"iLc" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"iLd" = ( -/obj/floor_decal/industrial/warning, -/obj/structure/closet/crate/secure/biohazard, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"iLh" = ( -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/obj/random/junkfood, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"iLG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"iLJ" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"iLM" = ( -/obj/structure/dispenser/oxygen, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/suits) -"iLO" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"iLZ" = ( -/obj/machinery/air_sensor/nacelle/third/plasma, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d1starboard) -"iMa" = ( -/turf/simulated/wall/prepainted{ - can_open = 1 - }, -/area/maintenance/firstdeck/foreport) -"iMf" = ( -/obj/structure/railing/mapped, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"iMg" = ( -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/thirddeck/aftport) -"iMh" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "ai_starboard_inner"; - name = "Engineering External Access" - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftport) -"iMi" = ( -/obj/floor_decal/industrial/traffic, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"iMo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/button/ignition{ - id_tag = "Isocell3"; - pixel_x = -6; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"iMs" = ( -/obj/floor_decal/corner/paleblue/diagonal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"iMu" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/vending/cigarette, -/obj/machinery/rotating_alarm/security_alarm{ - pixel_y = 13 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"iMx" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"iMy" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"iMB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"iMF" = ( -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/glass, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"iMM" = ( -/obj/machinery/door/airlock/security{ - autoset_access = 0; - name = "Escape Pod Cell"; - req_access = list("ACCESS_BRIG") - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod5/station) -"iMO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"iMS" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"iMW" = ( -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge/upper) -"iMY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"iNb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/light_switch{ - pixel_x = 24; - dir = 8; - pixel_y = -5 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"iNd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "EVA Maintenance"; - req_access = newlist() - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"iNg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/selfestructgrid, -/area/security/nuke_storage) -"iNj" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"iNm" = ( -/obj/random/obstruction, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"iNo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/industrial/warning, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"iNp" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/item/paper/sierra/engineering_SMairlock, -/obj/machinery/access_button/airlock_exterior{ - master_tag = "engine_airlock"; - name = "Cycle to Engineering"; - pixel_x = -24; - pixel_y = 24 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"iNv" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/powercell, -/obj/machinery/cell_charger, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/spline/plain/purple{ - dir = 5 - }, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"iNw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/nuke_storage) -"iNG" = ( -/obj/shuttle_landmark/supply/station, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"iNH" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/landmark/start{ - name = "Unknown" - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"iNN" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/industrial/danger/corner, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft_stairwell) -"iNW" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d1port) -"iOc" = ( -/obj/structure/table/steel, -/obj/structure/sign/warning/nosmoking_1{ - dir = 8; - pixel_x = 32 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/cell_charger, -/obj/item/cell/high, -/obj/random/powercell, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/shuttlefuel) -"iOj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/structure/sign/warning/vacuum{ - dir = 8 - }, -/turf/simulated/wall/r_wall/hull, -/area/engineering/engine_room) -"iOl" = ( -/obj/structure/closet/crate/secure/biohazard{ - req_access = list(list("ACCESS_RESEARCH","ACCESS_EXPLORER")) - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"iOt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/center) -"iOu" = ( -/obj/machinery/atmospherics/unary/tank{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"iOw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"iOy" = ( -/obj/structure/table/standard, -/obj/item/book/manual/ripley_build_and_repair, -/obj/item/book/manual/robotics_cyborgs, -/obj/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/assembly/office) -"iOE" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"iOH" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/down, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/maintenance/firstdeck/centralstarboard) -"iOJ" = ( -/obj/item/bodybag, -/obj/structure/table/standard, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/item/storage/box/autoinjectors, -/turf/simulated/floor/tiled/white, -/area/vacant/infirmary) -"iOP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/central_stairwell) -"iPd" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"iPj" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"iPk" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/module/power_control, -/obj/item/module/power_control, -/obj/item/module/power_control, -/obj/item/airlock_electronics, -/obj/item/airlock_electronics, -/obj/item/airlock_electronics, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech) -"iPl" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/auxpower) -"iPp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1port) -"iPs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"iPw" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = 26; - pixel_y = 2 - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"iPB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/space) -"iPQ" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/office) -"iPW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/button/alternate/door/bolts{ - id_tag = "shower2"; - name = "Lock"; - pixel_y = 21 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"iPZ" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"iQc" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 4; - id_tag = "sd_port_pump" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"iQd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lightgrey/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lightgrey/bordercorner2, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"iQe" = ( -/obj/floor_decal/techfloor/orange, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"iQh" = ( -/obj/machinery/photocopier/faxmachine{ - department = "Research Director's Office"; - destination = "NanoTrasen Central Command" - }, -/obj/item/book/manual/nt_regs, -/obj/structure/table/glass/boron, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/purple/border, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"iQl" = ( -/obj/floor_decal/industrial/danger/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/armory) -"iQn" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/space) -"iQp" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/security{ - name = "Break Room" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/range) -"iQy" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/oxygen_pump{ - pixel_y = -32 - }, -/obj/structure/closet/hydrant{ - pixel_x = 28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"iQz" = ( -/obj/structure/filingcabinet/chestdrawer{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"iQB" = ( -/turf/simulated/wall/r_wall/hull, -/area/turret_protected/ai_upload) -"iQF" = ( -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"iQG" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/infirmreception) -"iQH" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"iQR" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/iv_stand, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/staging) -"iQS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/glass/civilian{ - name = "Bartenders'"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/spline/fancy/black, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/grey, -/obj/structure/curtain/open/shower/security{ - name = "bar curtain" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/bar) -"iQX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"iQY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/closet/l3closet/scientist, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/xenobio) -"iRb" = ( -/obj/floor_decal/corner/black/full, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"iRg" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/seconddeck/fore) -"iRm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"iRr" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/heads/captain/secret_room/level_one) -"iRu" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"iRv" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/prepainted, -/area/security/sierra/sergeant) -"iRA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"iRB" = ( -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cargo_r) -"iRD" = ( -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/floor_decal/corner/green/border, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"iRF" = ( -/obj/floor_decal/corner/darkblue/full, -/obj/floor_decal/corner/black/three_quarters, -/obj/structure/table/steel_reinforced, -/obj/item/device/taperecorder, -/obj/item/device/tape, -/obj/item/device/tape, -/obj/item/device/tape, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"iRI" = ( -/obj/machinery/power/breakerbox{ - RCon_tag = "Shield Substation Bypass" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/shield/thirddeck) -"iRR" = ( -/obj/structure/table/woodentable/walnut, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/curtain/bed{ - pixel_y = 32 - }, -/obj/item/reagent_containers/food/drinks/bottle/premiumvodka{ - pixel_y = 4; - pixel_x = -6 - }, -/obj/item/reagent_containers/food/drinks/glass2/shot{ - pixel_y = 9; - pixel_x = 7 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/heads/office/rd/cobed) -"iSd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"iSe" = ( -/obj/floor_decal/corner/blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"iSn" = ( -/obj/machinery/crusher_base{ - icon_state = "middle" - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"iSy" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"iSK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"iSR" = ( -/obj/structure/railing/mapped{ - dir = 8; - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/floor_decal/corner/purple/half{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"iSW" = ( -/obj/structure/lattice, -/obj/structure/handrail{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/open, -/area/space) -"iSY" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"iSZ" = ( -/obj/floor_decal/corner/red/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/photocopier, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"iTa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/sofa/r/red{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/carpet/magenta, -/area/crew_quarters/cafe) -"iTh" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/thruster/d1port) -"iTl" = ( -/obj/structure/closet/secure_closet/CMO_sierra, -/obj/floor_decal/corner/blue{ - dir = 5 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"iTp" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor/hole{ - dir = 8 - }, -/obj/machinery/shieldgen, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"iTq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"iTv" = ( -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"iTy" = ( -/obj/structure/railing/mapped, -/obj/structure/closet/crate/secure/phoron{ - req_access = list(list("ACCESS_ENGINE_EQUIP","ACCESS_HEADS")); - name = "Emergency backup phoron crate" - }, -/obj/item/stack/material/phoron/ten, -/obj/item/stack/material/phoron/ten, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"iTz" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/red/bordercorner2, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"iTD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/navbeacon/sierra/TD_fore9, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"iTH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/office) -"iTM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/mining{ - dir = 8; - name = "Hangar Bay"; - req_access = newlist() - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown3_1" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/aft) -"iTQ" = ( -/obj/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/assembly/office) -"iTR" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/quartermaster/exploration/briefing_room) -"iTX" = ( -/obj/structure/bed/chair/padded/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"iTZ" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"iUf" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/medbay{ - c_tag = "Equipment - First Aid"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/equipstorage) -"iUm" = ( -/obj/machinery/light/small, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -21 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hardstorage) -"iUA" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/towel/random{ - pixel_y = -4; - pixel_x = -5 - }, -/obj/item/towel/random{ - pixel_y = -4; - pixel_x = -5 - }, -/obj/item/towel/random{ - pixel_y = -4; - pixel_x = -5 - }, -/obj/item/towel/random{ - pixel_y = -4; - pixel_x = -5 - }, -/obj/item/towel/random{ - pixel_y = -4; - pixel_x = -5 - }, -/obj/floor_decal/corner/green/border{ - dir = 9 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/sauna) -"iUC" = ( -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"iUN" = ( -/obj/structure/hygiene/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/green/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"iUO" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/structure/filingcabinet, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"iVd" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"iVe" = ( -/obj/machinery/chem_master, -/obj/floor_decal/corner/beige/three_quarters{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 6 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"iVf" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"iVg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced/polarized/full{ - id = "mental_health_windows" - }, -/turf/simulated/floor/plating, -/area/medical/mentalhealth) -"iVs" = ( -/obj/machinery/door/airlock/engineering{ - name = "SMES Maintenance"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Master Grid"; - name_tag = "Master" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id_tag = "eng_lockdown_emg3"; - name = "Emergency Exit" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_smes) -"iVt" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"iVA" = ( -/obj/floor_decal/corner/black/three_quarters{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"iVJ" = ( -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"iVK" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"iVN" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/fourthdeck/central_stairwell) -"iVQ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"iVR" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"iVV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"iVZ" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/wallframe_spawn/reinforced/polarized/full{ - id = "rd_windows" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/rd) -"iWe" = ( -/obj/machinery/atmospherics/unary/tank/air{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod1/station) -"iWf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/wall/r_wall/prepainted, -/area/quartermaster/expedition/storage) -"iWp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"iWs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"iWt" = ( -/obj/structure/table/woodentable/mahogany, -/obj/item/storage/bible/bible, -/obj/item/storage/bible/bible, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"iWB" = ( -/obj/machinery/body_scanconsole{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/maintenance_equipstorage) -"iWD" = ( -/obj/machinery/space_heater, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"iWF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"iWG" = ( -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_5_hatch"; - name = "Escape Pod Five Hatch" - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod5/station) -"iWK" = ( -/obj/machinery/computer/modular/preset/civilian, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"iWM" = ( -/obj/structure/holoplant, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/lime/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 6 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Fore Hallway - Mantenance"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"iWV" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/bridgedeck/aft) -"iWX" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 5 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"iXp" = ( -/obj/structure/bed/chair/padded/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"iXz" = ( -/obj/structure/flora/seaweed, -/obj/fluid_mapped, -/mob/living/simple_animal/aquatic/fish/grump, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/beach/sand, -/area/rnd/xenobiology/level2) -"iXA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"iXM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"iXS" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/oxygen_pump{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "xenobotany_access"; - name = "Xenobotany Lab Access Console"; - req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH"); - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"iYa" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/valve/shutoff/supply, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"iYp" = ( -/turf/simulated/wall/r_wall/hull, -/area/bridge) -"iYx" = ( -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"iYy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"iYD" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"iYE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/cistern) -"iYI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/engineering/engine_eva) -"iYR" = ( -/obj/decal/cleanable/dirt, -/turf/simulated/floor/wood{ - icon_state = "wood_broken5" - }, -/area/vacant/sauna) -"iYT" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"iYZ" = ( -/obj/machinery/computer/fusion/fuel_control{ - dir = 4; - initial_id_tag = "aux_fusion_plant"; - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"iZc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"iZg" = ( -/obj/structure/catwalk, -/obj/structure/ladder/up, -/turf/simulated/floor/airless, -/area/space) -"iZs" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"iZu" = ( -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/structure/closet/secure_closet/warden/sierra, -/obj/item/device/scanner/price, -/obj/item/device/eftpos{ - eftpos_name = "Warden's EFTPOS scanner" - }, -/obj/item/device/radio/off, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"iZx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/grey/border, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"iZP" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/engineering/engine_eva) -"iZZ" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atm{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"jac" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/equipment) -"jal" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/paint_stripe/red, -/obj/wallframe_spawn/reinforced/polarized{ - id = "hos_windows" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/hos) -"jan" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"jaq" = ( -/obj/machinery/papershredder, -/obj/floor_decal/corner/black/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"jar" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"jav" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"jay" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/south) -"jaJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"jaO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/atmos/bridge) -"jaU" = ( -/obj/structure/girder/displaced, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"jaZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"jbe" = ( -/obj/machinery/door/airlock/glass/civilian{ - name = "Primary Tool Storage" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"jbr" = ( -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"jbw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "d2portnacelle" - }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"jbH" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell1) -"jbJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"jbK" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/floodlight{ - dir = 8 - }, -/obj/structure/sign/emergonly{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"jbN" = ( -/obj/structure/table/woodentable/walnut, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet, -/area/crew_quarters/cafe/upper) -"jbO" = ( -/obj/catwalk_plated/dark, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/bridge/nano) -"jbQ" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"jce" = ( -/obj/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"jcg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/heads/captain/secret_room/level_one) -"jcn" = ( -/obj/machinery/photocopier, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_y = 30 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"jcy" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"jcz" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/random/maintenance, -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"jcA" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"jcE" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/random/vendor/contraband/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"jcJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"jcL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/pew, -/obj/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/actor/stage) -"jcM" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/bridgedeck/starboard) -"jcU" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - id_tag = "xenohight_airlock_inner"; - name = "Xenobiology External Airlock"; - frequency = 1379; - locked = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/xenobiology/entry) -"jdc" = ( -/obj/structure/closet/fridge, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/floor_decal/snow, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/galley/freezer) -"jdd" = ( -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/lime/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"jdg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/bluegrid, -/area/engineering/bluespace/chamber) -"jdm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"jdy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"jdC" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/flora/pottedplant/decorative, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"jdD" = ( -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"jdW" = ( -/obj/floor_decal/industrial/warning, -/obj/structure/railing/mapped, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"jdX" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"jdY" = ( -/obj/machinery/door/airlock/multi_tile/research{ - dir = 8; - frequency = 1379; - id_tag = "xenolow_airlock_inner"; - locked = 1; - name = "Xenobiology Internal Airlock" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/xenobiology/entry2) -"jee" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/hallway/primary/fourthdeck/central_stairwell) -"jej" = ( -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"jes" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"jev" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"jey" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/equipment) -"jeH" = ( -/obj/structure/bed/sofa/l/black{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"jeK" = ( -/obj/structure/morgue{ - dir = 2 - }, -/obj/floor_decal/industrial/outline/blue, -/obj/structure/closet/walllocker{ - pixel_y = 28 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay - Morgue - Cadavers" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"jeV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"jeX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"jfc" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/glass/medical{ - name = "Patient Ward" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"jfg" = ( -/obj/item/stool, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/solar/bridge_port) -"jfh" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/hos) -"jfi" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"jfm" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"jfo" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/clothing/mask/gas/half, -/obj/item/tape/research, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"jfq" = ( -/obj/structure/table/standard, -/obj/item/paper{ - pixel_y = 5; - pixel_x = 4 - }, -/obj/item/folder{ - pixel_y = -6; - pixel_x = -5 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"jfu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"jfv" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/captain/secret_room/level_one) -"jfy" = ( -/obj/structure/closet/l3closet/security, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/clothing/suit/bio_suit/security, -/obj/item/clothing/head/bio_hood/security, -/obj/item/clothing/mask/gas/half, -/obj/item/tank/oxygen_emergency_extended, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/suits) -"jfA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod4/station) -"jfF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry2) -"jfH" = ( -/obj/structure/hygiene/shower{ - dir = 8; - pixel_x = 9 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"jfR" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/vacant/cargo) -"jfS" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor, -/obj/machinery/flasher{ - dir = 1; - id_tag = "ai_core"; - pixel_y = -24 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"jfY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/black/border{ - dir = 9 - }, -/obj/structure/filingcabinet/wallcabinet{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation) -"jga" = ( -/obj/structure/closet/emcloset/anchored, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo/bridge) -"jgb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"jgL" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"jgM" = ( -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"jgT" = ( -/turf/simulated/wall/r_wall/hull, -/area/engineering/atmos/bridge) -"jhb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/command/bsa) -"jhc" = ( -/obj/shuttle_landmark/merc/deck4, -/turf/space, -/area/space) -"jhd" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/foreport) -"jhh" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"jhl" = ( -/obj/machinery/radio_beacon, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"jhm" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/no_grille/regular{ - id = "сhief_steward_windows" - }, -/turf/simulated/floor/plating, -/area/command/chief_steward) -"jhq" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"jhr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"jhy" = ( -/obj/structure/sign/warning/nosmoking_1{ - dir = 8; - pixel_x = 32 - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/empty, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"jhB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"jhF" = ( -/obj/structure/bed/sofa/m/brown{ - dir = 4 - }, -/obj/floor_decal/corner/black/full, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"jhJ" = ( -/obj/structure/filingcabinet{ - pixel_x = -10 - }, -/obj/structure/filingcabinet, -/obj/structure/filingcabinet{ - pixel_x = 10 - }, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"jhN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/deckofficer) -"jhQ" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/firstaid/radiation{ - pixel_y = 9 - }, -/obj/item/storage/firstaid/trauma{ - pixel_y = 2 - }, -/obj/item/storage/firstaid/adv{ - pixel_y = -6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"jhS" = ( -/obj/structure/table/standard, -/obj/item/storage/box/monkeycubes{ - pixel_y = 10 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"jhY" = ( -/obj/floor_decal/carpet/purple{ - dir = 4 - }, -/obj/structure/bookcase/manuals/research_and_development, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/captain/beach) -"jic" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"jid" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/floor_decal/corner/grey{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"jil" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"jit" = ( -/obj/floor_decal/corner/black/full, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/cobed) -"jiv" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"jiA" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"jiD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"jiE" = ( -/obj/item/ladder_mobile, -/turf/simulated/floor/tiled/white, -/area/maintenance/firstdeck/aftstarboard) -"jiI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"jiQ" = ( -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/modular_computer/laptop/preset/custom_loadout/advanced{ - dir = 8 - }, -/obj/machinery/button/alternate/door/bolts{ - id_tag = "bridgesafe_back"; - name = "Emergency Exit door-control"; - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"jiT" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"jiU" = ( -/obj/structure/table/standard, -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/item/paper_bin, -/obj/item/pen/multi, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"jiV" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/space, -/area/space) -"jja" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/bed/chair/armchair/black{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"jjh" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 10 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"jjj" = ( -/turf/simulated/floor/greengrid{ - map_airless = 1 - }, -/area/engineering/engine_room) -"jjn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals_central6, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"jjo" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/machinery/sparker{ - id_tag = "engines"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - injecting = 1; - use_power = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d1starboard) -"jjp" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "solar_bridge_airlock"; - name = "interior access button"; - pixel_x = 24; - pixel_y = 24; - req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") - }, -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/bridge_starboard) -"jjB" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Lab" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"jjF" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet, -/area/chapel/main) -"jjH" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ - RCon_tag = "Substation - Bluespace Engine" - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"jjJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"jjV" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/tele_beacon, -/obj/floor_decal/corner/purple/border, -/obj/machinery/button/alternate/door{ - desc = "A remote control-switch for the cargo doors."; - dir = 1; - id_tag = "researchdoor_interior"; - name = "Research Door Control"; - pixel_x = 6; - pixel_y = -24; - req_access = list("ACCESS_RESEARCH") - }, -/obj/machinery/button/blast_door{ - dir = 1; - id_tag = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -6; - pixel_y = -24; - req_access = list("ACCESS_RESEARCH") - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"jkc" = ( -/obj/structure/bed/chair/office/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/suplocker_room) -"jkg" = ( -/obj/structure/table/woodentable, -/obj/item/book/manual/detective, -/obj/item/device/camera, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"jkq" = ( -/obj/machinery/door/airlock/hatch/maintenance{ - name = "First Deck Starboard Nacelle"; - req_access = newlist() - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/thruster/d1starboard) -"jkr" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/mopbucket, -/obj/item/mop, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"jky" = ( -/obj/structure/closet/radiation, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"jkC" = ( -/obj/machinery/door/blast/regular{ - id_tag = "sensor_shutters" - }, -/turf/simulated/floor/reinforced, -/area/exploration_shuttle/seats_place) -"jkH" = ( -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/cell_charger, -/obj/item/cell/high, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"jkL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id_tag = "med_pub_hall"; - name = "Infirmary Entry Shutters" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors"; - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/hallway/infirmary) -"jkN" = ( -/obj/structure/table/woodentable_reinforced/mahogany/walnut, -/obj/floor_decal/spline/fancy/black, -/obj/item/spirit_board, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"jkR" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"jkS" = ( -/obj/structure/handrail, -/turf/simulated/floor/reinforced, -/area/space) -"jkU" = ( -/obj/structure/bed/chair/comfy/brown, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"jll" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"jlp" = ( -/obj/machinery/recharge_station, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/brown/bordercorner2, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/prison) -"jlt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft) -"jlK" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/obj/machinery/meter, -/obj/machinery/button/blast_door{ - id_tag = "disvent"; - name = "Incinerator Vent Control"; - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"jlU" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/bed/sofa/l/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"jmb" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"jmc" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "specops_dock_sensor"; - master_tag = "specops_dock"; - pixel_x = -24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - id_tag = "specops_dock_pump" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"jme" = ( -/obj/structure/bed/chair/pew/mahogany{ - dir = 1; - icon_state = "chair_pewchapel_middle_over" - }, -/obj/decal/cleanable/dirt, -/obj/item/towel/random, -/obj/structure/bed/chair/pew/left/mahogany, -/turf/simulated/floor/wood/walnut, -/area/vacant/sauna) -"jmm" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/machine/jukebox_custom, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"jms" = ( -/obj/floor_decal/industrial/outline/blue, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery) -"jmt" = ( -/obj/machinery/computer/modular/preset/supply_public, -/obj/floor_decal/corner/purple/half{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/security) -"jmu" = ( -/obj/structure/bed/chair/office/comfy/teal, -/obj/floor_decal/corner/blue/diagonal, -/obj/landmark/start{ - name = "Chief Medical Officer" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"jmx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"jmz" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftstarboard) -"jmE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/medical{ - dir = 4; - id_tag = "mental_health_door"; - name = "Mental Health" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/mentalhealth) -"jmI" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/heads/office/ce) -"jmN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"jmP" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee, -/obj/machinery/airlock_sensor{ - id_tag = "fd_starboard_sensor"; - master_tag = "fd_starboard"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "fd_starboard_pump" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"jmW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"jny" = ( -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/obj/floor_decal/corner/yellow/mono, -/obj/structure/table/rack, -/obj/item/rig/ce/equipped, -/obj/item/clothing/mask/gas/half, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/eastright{ - name = "suit storage"; - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/heads/office/ce) -"jnD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sauna) -"jnG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 9 - }, -/obj/machinery/computer/air_control{ - dir = 1; - name = "Nacelle Chamber Monitoring"; - sensor_name = "Chamber"; - sensor_tag = "ReacEng1" - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"jnJ" = ( -/obj/floor_decal/techfloor/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"jnK" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/flora/pottedplantsmall/leaf{ - pixel_x = 6 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/cafe/upper) -"jnT" = ( -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/center) -"jnY" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/barrier, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"joa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"jol" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"joo" = ( -/obj/random/closet, -/obj/random/coin, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"jor" = ( -/obj/structure/bed/sofa/r/brown{ - dir = 8 - }, -/obj/floor_decal/carpet{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/cafe/upper) -"jou" = ( -/obj/structure/hygiene/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/vacant/dormintories) -"joA" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/suit_cooling_unit/miniature, -/obj/item/device/suit_cooling_unit/miniature, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"joT" = ( -/obj/structure/flora/pottedplant/minitree, -/obj/floor_decal/spline/fancy/wood/corner, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"jpb" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/bridgedeck/port) -"jpo" = ( -/obj/floor_decal/industrial/warning/corner, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Energy Storage - First Deck" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/auxpower) -"jpD" = ( -/obj/structure/bed/chair/padded/green, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"jpF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 - }, -/turf/simulated/wall/r_wall/hull, -/area/space) -"jpS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/power/terminal, -/obj/floor_decal/industrial/warning, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/auxpower) -"jpT" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"jqb" = ( -/obj/structure/bookcase, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/item/book/manual/anomaly_testing, -/obj/item/book/manual/excavation, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"jqf" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/starboard) -"jqk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"jqv" = ( -/obj/structure/table/rack, -/obj/random/firstaid, -/obj/random/firstaid, -/obj/random/firstaid, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"jqG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"jqI" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"jqP" = ( -/obj/machinery/button/blast_door{ - id_tag = "cafe"; - name = "Cafe Shutters"; - pixel_x = 26; - req_access = list("ACCESS_KITCHEN") - }, -/obj/floor_decal/corner/grey/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/grey/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/corner/grey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"jqX" = ( -/obj/floor_decal/corner/red, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/vending/cola{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"jrj" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/vacant/gambling) -"jrw" = ( -/obj/machinery/door/airlock/external{ - autoset_access = 0; - frequency = 1331; - id_tag = "calypso_shuttle_inner"; - name = "Charon External Access"; - req_access = list(list("ACCESS_EXPEDITION_SHUTTLE")) - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/airlock) -"jrx" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"jry" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/bar/cobed) -"jrz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/red, -/obj/machinery/door_timer/cell_2{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"jrD" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/structure/hygiene/sink{ - pixel_y = -12 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery) -"jrF" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/floodlight{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"jrK" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - id_tag = "guppy_shuttle_pump" - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"jrL" = ( -/obj/structure/sign/warning/nosmoking_1{ - dir = 8; - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"jrQ" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - target_pressure = 200 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"jrX" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"jsb" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/floor_decal/corner/grey/full, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"jse" = ( -/obj/structure/catwalk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"jsg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"jsk" = ( -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"jsl" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"jsn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"jsq" = ( -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/cryo/firstdeck) -"jsr" = ( -/obj/structure/bed/chair/rounded/blue{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/mono, -/obj/landmark/start{ - name = "Internal Affairs Agent" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"jss" = ( -/obj/structure/catwalk, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"jsz" = ( -/obj/structure/bed/chair/office/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloorblack, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"jsD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/reagent_containers/dropper, -/obj/item/stack/material/steel, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"jsG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"jsH" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"jsP" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - id_tag = "cedoor"; - name = "Chief Engineer Dorm"; - req_access = newlist(); - secured_wires = 1; - stripe_color = "#ffbf00" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/ce/cobed) -"jsR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"jsU" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/atm{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"jsV" = ( -/obj/structure/mattress, -/obj/random/drinkbottle, -/obj/random/snack, -/obj/random/snack, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/foreport) -"jsW" = ( -/obj/floor_decal/corner/purple/bordercorner, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/exploration) -"jsY" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/gym) -"jtf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/navbeacon/sierra/SD_fore2, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"jtg" = ( -/obj/fluid_mapped, -/obj/item/clothing/under/shorts/grey, -/obj/random/trash, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/item/soap, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"jtu" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/wood/bamboo{ - name = "stairs" - }, -/area/crew_quarters/garden_room) -"jtx" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor/hole/right{ - dir = 4 - }, -/obj/machinery/shieldgen, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"jtD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Sensors Maintenance"; - req_access = newlist() - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - id_tag = "bridge_ent"; - name = "Bridge Lockdown" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/bridge) -"jtL" = ( -/obj/floor_decal/corner/black/border{ - dir = 6 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"jtY" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Substation - Bridge Deck"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/substation/bridgedeck) -"juk" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/navbeacon/sierra/SD_afthallway2, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"jul" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/critical{ - name = "south bump"; - pixel_y = -21 - }, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"jun" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"juu" = ( -/obj/structure/bed/chair/padded/blue{ - dir = 4 - }, -/obj/floor_decal/corner/blue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"juH" = ( -/obj/machinery/hologram/holopad/longrange, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/cockpit) -"juR" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/hallway) -"juZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass/civilian{ - name = "Cryogenic Storage" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/bunk) -"jvi" = ( -/obj/machinery/hologram/holopad{ - pixel_x = -16 - }, -/obj/floor_decal/corner/red, -/obj/machinery/button/blast_door{ - id_tag = "security_permabrig_fitst_cell_shutters"; - name = "1st Cell Shutters"; - req_access = list("ACCESS_SECURITY"); - pixel_x = 21; - dir = 8 - }, -/obj/machinery/button/flasher{ - dir = 8; - pixel_x = 22; - pixel_y = -9; - id_tag = "security_first_cell_flash"; - req_access = list("ACCESS_SECURITY") - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"jvu" = ( -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/armory) -"jvv" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/fourthdeck/foreport) -"jvA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/carpet/magenta, -/area/crew_quarters/cafe) -"jvK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/computer/air_control/supermatter_core{ - dir = 8; - input_tag = "cooling_in"; - name = "Engine Cooling Control"; - output_tag = "cooling_out"; - pressure_setting = 100; - sensor_name = "Engine Core"; - sensor_tag = "engine_sensor" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"jvL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation) -"jvP" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"jwe" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "fd_starboard_outer"; - name = "First Deck Port Airlock" - }, -/obj/machinery/access_button/airlock_exterior{ - dir = 1; - master_tag = "fd_starboard"; - name = "exterior access button"; - pixel_x = 24; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"jwh" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"jwl" = ( -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation) -"jwp" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 8 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "32-8"; - d1 = 32 - }, -/obj/structure/lattice, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/engineering/atmos/bridge) -"jws" = ( -/obj/machinery/power/smes/buildable/preset/sierra/shuttle{ - RCon_tag = "Shuttle - Petrov" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"jwx" = ( -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/body_scanconsole{ - dir = 1 - }, -/obj/machinery/button/alternate/door{ - id_tag = "MedbayInf"; - dir = 8; - pixel_y = 24; - pixel_x = 23; - name = "Treatment Center Exit" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/staging) -"jwM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/vault/bolted{ - autoset_access = 0; - id_tag = "bridgesafe_back"; - name = "Emergency Exit" - }, -/obj/item/airlock_brace{ - req_access = list("ACCESS_BRIDGE") - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/bridge) -"jwN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Incinerator" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/incinerator) -"jwX" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"jwZ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dormintories) -"jxi" = ( -/obj/item/stool/padded, -/obj/floor_decal/corner/black/half{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/ship) -"jxj" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs/upper) -"jxp" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/obj/machinery/status_light{ - id_tag = "ReacEng4"; - name = "Deck One Port status indicator"; - pixel_y = 32 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"jxv" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"jxw" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"jxz" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/exploration_shuttle/airlock) -"jxH" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/heads/office/rd/cobed) -"jxI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/spot, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"jxR" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"jxW" = ( -/obj/machinery/vending/hydronutrients{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"jxX" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/equipment) -"jxY" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"jyb" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/medical{ - name = "Critical Wing"; - id_tag = "med_crit_d2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_crit2"; - name = "Infirmary Staging Shutters" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"jyh" = ( -/obj/random/obstruction, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/vacant/dungeon) -"jyp" = ( -/obj/fluid_mapped, -/obj/random/trash, -/obj/random/soap, -/mob/living/simple_animal/aquatic/fish, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"jyr" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/obj/machinery/photocopier, -/obj/floor_decal/corner/black/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"jyD" = ( -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"jyG" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/item/storage/box/donut, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"jyO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Aft Hallway Starboard"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"jyU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red{ - dir = 6 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"jyV" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/office) -"jyW" = ( -/obj/structure/table/steel, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/item/clothing/gloves/insulated, -/obj/item/device/multitool{ - pixel_x = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_smes) -"jyX" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"jze" = ( -/obj/structure/disposalpipe/junction/mirrored{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals6, -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"jzf" = ( -/obj/floor_decal/chapel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"jzm" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/quartermaster/expedition/storage) -"jzv" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/ocp_wall, -/area/shuttle/petrov/gas) -"jzA" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"jzJ" = ( -/obj/structure/bed, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell2) -"jzL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"jzN" = ( -/obj/floor_decal/industrial/warning/corner, -/obj/structure/bed/chair/armchair/beige{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"jzR" = ( -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"jAd" = ( -/turf/simulated/floor/airless, -/area/space) -"jAm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"jAr" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/nosmoking_1{ - dir = 4; - pixel_x = -32 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"jAx" = ( -/obj/floor_decal/chapel{ - dir = 8 - }, -/obj/structure/bed/chair/pew/mahogany, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"jAF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/orange, -/area/security/range) -"jAH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"jAJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 10 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/techfloor/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"jAU" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/civilian{ - autoset_access = 0; - name = "Comissary" - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"jAV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/actor) -"jAW" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/computer/cryopod{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod1/station) -"jAY" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"jBb" = ( -/turf/unsimulated/mask, -/area/hallway/primary/thirddeck/center) -"jBc" = ( -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/folder/nt, -/obj/item/pen, -/obj/structure/railing/mapped{ - dir = 4; - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/structure/filingcabinet/wallcabinet{ - pixel_y = 30 - }, -/obj/floor_decal/corner/purple/three_quarters{ - dir = 1 - }, -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"jBi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/structure/bed/chair/rounded/blue{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"jBp" = ( -/obj/floor_decal/industrial/traffic{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"jBt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"jBz" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/substation/fourthdeck) -"jBE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"jBO" = ( -/obj/structure/sign/warning/high_voltage{ - dir = 8 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/substation/seconddeck) -"jBQ" = ( -/obj/machinery/bluespacerelay, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"jBS" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"jBT" = ( -/obj/floor_decal/spline/fancy/black, -/obj/floor_decal/corner/red/border, -/obj/machinery/light/led/small, -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"jBX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 - }, -/obj/machinery/meter, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"jBY" = ( -/obj/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"jCd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 10 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"jCo" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/thirddeck/fore) -"jCp" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"jCr" = ( -/obj/machinery/atmospherics/unary/vent_pump/tank{ - dir = 8; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "toxins_petrov_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/gas) -"jCA" = ( -/obj/machinery/door/airlock/glass{ - autoclose = 0; - frequency = 1379; - heat_proof = 1; - id_tag = "incinerator_airlock_interior"; - locked = 1; - name = "Mixing Room Interior Airlock" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"jCI" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"jCQ" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"jCW" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"jCZ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"jDc" = ( -/obj/floor_decal/corner/grey/full, -/obj/machinery/papershredder, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"jDf" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"jDi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/storage) -"jDj" = ( -/obj/floor_decal/industrial/outline/blue, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/cistern) -"jDk" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"jDq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"jDr" = ( -/obj/structure/table/standard, -/obj/item/storage/box/checkers/chess, -/obj/item/storage/box/checkers, -/obj/item/storage/box/checkers/chess/red, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"jDs" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/floor_decal/corner/black/border{ - dir = 4 - }, -/obj/floor_decal/corner/black/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics/third_deck_storage) -"jDv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"jDJ" = ( -/obj/machinery/artifact_scanpad, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"jDK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"jDO" = ( -/obj/machinery/door/airlock/research{ - name = "Cockpit" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/cockpit) -"jDS" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"jDW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"jEc" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"jEd" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/space) -"jEh" = ( -/obj/floor_decal/corner_techfloor_grid, -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"jEl" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"jEo" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Air to Supply" - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"jEq" = ( -/obj/structure/lattice, -/turf/simulated/wall/r_wall/prepainted, -/area/bridge) -"jEt" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/largecrate, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"jED" = ( -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"jEE" = ( -/obj/machinery/portable_atmospherics/canister/hydrogen, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"jEI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 6 - }, -/turf/simulated/wall/r_wall/hull, -/area/engineering/engine_room) -"jEJ" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"jEL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"jET" = ( -/turf/simulated/wall/r_wall/hull, -/area/security/sierra/brig) -"jFl" = ( -/obj/random/vendor/contraband/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"jFo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"jFp" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"jFr" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"jFv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/fourthdeck/central_stairwell) -"jFy" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"jFF" = ( -/obj/structure/railing/mapped, -/obj/machinery/constructable_frame, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"jFG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"jFH" = ( -/obj/machinery/door/airlock/civilian{ - autoset_access = 0; - name = "Long Term Toilet"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/prison) -"jFK" = ( -/obj/structure/bed/chair/padded/red{ - dir = 4 - }, -/obj/floor_decal/corner/red/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"jFL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"jGi" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/nt, -/obj/item/folder/nt, -/obj/item/folder/red, -/obj/item/folder/yellow, -/obj/item/folder, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"jGr" = ( -/obj/floor_decal/techfloor/orange, -/obj/structure/closet/crate/freezer/rations, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"jGz" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"jGA" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Fusion Generator"; - name_tag = "Fusion Generator" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"jGD" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "lounge_windows" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/garden_room) -"jGP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"jGQ" = ( -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"jGV" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"jGW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"jGY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"jGZ" = ( -/obj/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/obj/item/dice/d10, -/obj/item/dice/d4, -/obj/item/dice/d8, -/turf/simulated/floor/tiled/dark, -/area/vacant/dungeon) -"jHd" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"jHe" = ( -/obj/machinery/computer/fusion/core_control{ - dir = 4; - initial_id_tag = "aux_fusion_plant"; - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"jHh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/decal/graffiti_bam{ - desc = "Something scribbled on the wall. It reads: 'HoS xyecoc' " - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"jHi" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"jHq" = ( -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"jHu" = ( -/obj/machinery/ntnet_relay, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"jHB" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "cockpit_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cockpit) -"jHC" = ( -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/cart{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"jHG" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/green/border{ - dir = 9 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"jHH" = ( -/obj/floor_decal/corner/grey{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"jHS" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/storage) -"jHX" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/grey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"jHY" = ( -/obj/structure/ladder, -/obj/structure/cable{ - d1 = 32; - d2 = 2; - icon_state = "32-2" - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/firstdeck/centralstarboard) -"jIa" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/obj/structure/shuttle/engine/heater{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/escape_pod5/station) -"jIl" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"jIs" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"jIv" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/random/soap, -/obj/item/storage/box/lights/led_neon, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/firstdeck/centralport) -"jIA" = ( -/obj/structure/closet/crate, -/obj/random/firstaid, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"jIF" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"jIH" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/machinery/ship_map, -/turf/simulated/floor/tiled, -/area/security/brig) -"jIQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"jIR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/obj/machinery/navbeacon/sierra/SD_fore3, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"jJa" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"jJh" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"jJm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"jJw" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"jJA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"jJY" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"jKa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/mining{ - name = "Port Auxiliary Storage"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/item/airlock_brace{ - req_access = list("ACCESS_QUARTERMASTER") - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"jKd" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/item/modular_computer/laptop/preset/custom_loadout/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"jKg" = ( -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/generic, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"jKh" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"jKs" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"jKE" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/waterstore) -"jKH" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/dressheels, -/obj/item/clothing/shoes/dressheels, -/obj/item/clothing/shoes/dressheels, -/obj/item/clothing/shoes/dressheels, -/obj/item/clothing/under/dress, -/obj/item/clothing/under/dress, -/obj/item/clothing/under/dress, -/obj/item/clothing/under/dress, -/obj/item/clothing/gloves/color/evening, -/obj/item/clothing/gloves/color/evening, -/obj/item/clothing/gloves/color/evening, -/obj/item/clothing/gloves/color/evening, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"jKJ" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted{ - can_open = 1 - }, -/area/maintenance/firstdeck/foreport) -"jKL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"jKQ" = ( -/obj/structure/table/marble, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/item/book/manual/chef_recipes{ - pixel_y = -1; - pixel_x = 6 - }, -/obj/item/sticky_pad/random{ - pixel_x = -8; - pixel_y = 11 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"jKU" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/device/flashlight/lamp/green, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood/yew, -/area/crew_quarters/cafe) -"jKV" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"jLc" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"jLf" = ( -/obj/machinery/computer/modular/preset/dock{ - dir = 4 - }, -/obj/floor_decal/corner/blue/mono, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"jLm" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"jLr" = ( -/obj/structure/bed/chair/padded/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"jLt" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/fuelbay) -"jLA" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"jLB" = ( -/obj/wallframe_spawn/reinforced/polarized{ - id = "rbtk_office" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/turf/simulated/floor/plating, -/area/assembly/office) -"jLI" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"jLK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"jLN" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/bunk) -"jLV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"jMh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/green/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"jMp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command{ - name = "Internal Affairs Agent"; - secured_wires = 1; - hackProof = 1; - ai_control_disabled = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/iaa/high_sec) -"jME" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"jMM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"jMS" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"jMY" = ( -/obj/structure/sign/warning/hot_exhaust, -/turf/simulated/wall/r_wall/hull, -/area/vacant/cargo) -"jMZ" = ( -/obj/machinery/papershredder, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"jNk" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/medical{ - name = "Critical Wing" - }, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_crit2"; - name = "Infirmary Staging Shutters" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"jNm" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "packageSort1" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/quartermaster/office/post) -"jNq" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"jNv" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/tank{ - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "fuel1p_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d3starboard) -"jNE" = ( -/obj/structure/table/standard, -/obj/floor_decal/corner/yellow/half, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/stack/material/glass/ten, -/obj/item/stack/material/aluminium/ten, -/obj/item/stack/material/plastic/ten, -/obj/item/stack/material/steel/ten, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"jNK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/civilian{ - name = "Kitchen Cold Storage" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/galley/freezer) -"jOa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 5 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"jOh" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"jOi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"jOq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"jOC" = ( -/obj/structure/bed/chair/pew/left, -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/actor/stage) -"jOL" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"jON" = ( -/obj/machinery/light/led/small, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"jOT" = ( -/obj/machinery/door/airlock/external/bolted{ - frequency = 1380; - id_tag = "escape_pod_2_hatch"; - name = "Escape Pod Two Hatch" - }, -/obj/machinery/shield_diffuser, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod2/station) -"jOU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals_central6, -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"jOZ" = ( -/obj/structure/table/standard, -/obj/item/paper_bin{ - pixel_x = 6 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/deckofficer) -"jPb" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/turf/simulated/floor/plating, -/area/crew_quarters/cafe/upper) -"jPd" = ( -/obj/structure/flora/pottedplant/crystal, -/turf/simulated/floor/tiled, -/area/rnd/locker) -"jPe" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"jPh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"jPi" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/hallway/primary/seconddeck/aft_stairwell) -"jPk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/storage) -"jPr" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/scan) -"jPs" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/modular_computer/tablet/lease/preset/command, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/iaa/cobed) -"jPx" = ( -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/industrial/traffic/corner{ - dir = 8; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/office) -"jPB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/item/toy/figure/ninja{ - desc = "A \"Space Life\" brand Exploration Team action figure."; - name = "Exploration Team Hero action figure"; - pixel_x = -6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/table/steel, -/obj/item/storage/firstaid/light{ - pixel_x = 6; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cockpit) -"jPN" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"jPS" = ( -/obj/structure/table/steel_reinforced, -/obj/floor_decal/corner/red/half{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/button/alternate/door{ - pixel_y = -6; - id_tag = "bridge_hallway_doors_port"; - name = "Bridge Hallway Doors Port" - }, -/obj/machinery/button/blast_door{ - id_tag = "lobb_shutt"; - name = "Lobby shutters control"; - pixel_y = 8; - pixel_x = -4 - }, -/obj/machinery/button/blast_door{ - id_tag = "lobb_hall_shutt"; - name = "Hallway shutters control"; - pixel_y = 8; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"jPZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"jQa" = ( -/obj/structure/table/steel, -/obj/item/soap, -/obj/item/soap, -/obj/item/soap, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/utility) -"jQd" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/solar) -"jQk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"jQo" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/floor_decal/corner/blue/three_quarters{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"jQx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft) -"jQy" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/constructable_frame/machine_frame, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"jQz" = ( -/obj/floor_decal/corner/green/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/disease2/incubator, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology/lab) -"jQG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod1/station) -"jQS" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d3starboard) -"jQU" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/random/maintenance/solgov, -/obj/random/maintenance/solgov, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"jQX" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"jQY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"jRa" = ( -/obj/floor_decal/corner/grey/diagonal, -/obj/machinery/computer/modular/preset/civilian/professional{ - dir = 4 - }, -/obj/item/wrench{ - name = "spanner 10"; - color = "#a2819e" - }, -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - dir = 1; - color = "#8c911d" - }, -/obj/floor_decal/industrial/traffic{ - dir = 1; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/windowtint{ - pixel_y = -21; - dir = 1; - pixel_x = 2; - id = "rbtk_office" - }, -/obj/machinery/button/alternate/door{ - id_tag = "rbtk_door"; - pixel_y = -22; - dir = 1; - pixel_x = -8 - }, -/turf/simulated/floor/tiled, -/area/assembly/office) -"jRh" = ( -/obj/machinery/crusher_base{ - icon_state = "leftcap" - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"jRt" = ( -/obj/structure/table/woodentable/maple, -/obj/floor_decal/carpet/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/office) -"jRw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/device/scanner/reagent, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"jRJ" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"jRK" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/green/border{ - dir = 10 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"jRN" = ( -/obj/structure/flora/pottedplant/minitree, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"jSg" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"jSh" = ( -/obj/structure/table/rack, -/obj/item/stack/material/tritium{ - amount = 50 - }, -/obj/item/stack/material/deuterium/fifty, -/obj/item/stack/material/deuterium/fifty, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"jSi" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "compactor" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"jSj" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"jSl" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/obj/structure/closet/emcloset, -/obj/machinery/camera/network/bridge_deck{ - dir = 8; - c_tag = "Bridge Deck - Cryogenics" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"jSm" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cargo_l) -"jSn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"jSB" = ( -/obj/structure/bed/chair/wood/walnut, -/obj/floor_decal/carpet/purple{ - dir = 8 - }, -/obj/floor_decal/carpet/purple{ - dir = 1 - }, -/obj/floor_decal/carpet/purple{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/main) -"jSD" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"jSE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"jSF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"jSI" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/thirddeck) -"jSM" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"jSR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"jSW" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d1port) -"jSZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"jTc" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/mining{ - dir = 8; - name = "Hangar Bay"; - req_access = newlist() - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar/upper) -"jTg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/obj/floor_decal/snow, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/galley/freezer) -"jTn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/command/chief_steward) -"jTo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"jTr" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/hydrant{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"jTw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"jTy" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/thirddeck) -"jTC" = ( -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border, -/obj/structure/curtain/medical, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"jTE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/civilian{ - name = "Gym" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/gym) -"jTJ" = ( -/obj/floor_decal/corner/black/full, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/iso_quarters) -"jTL" = ( -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/port) -"jTN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"jTO" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/button/alternate/door/bolts{ - dir = 1; - id_tag = "bsa_safe_room"; - name = "Lock"; - pixel_x = -6; - pixel_y = -21 - }, -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/obj/item/storage/mirror{ - dir = 4; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/freezer, -/area/command/bsa) -"jUc" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/camera/network/expedition{ - c_tag = "Expedition - Briefing Room"; - dir = 4 - }, -/obj/item/collector{ - pixel_x = 12 - }, -/obj/item/collector{ - pixel_x = -6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"jUf" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"jUl" = ( -/obj/structure/closet/secure_closet/guncabinet/sierra_armory/militia, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"jUp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"jUt" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "bsa" - }, -/obj/machinery/disperser/back{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/command/bsa) -"jUv" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"jUA" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/railing/mapped{ - dir = 8; - init_color = "#8c911d"; - color = "#8c911d" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"jUG" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"jUL" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/civilian{ - id_tag = "shower1"; - name = "First Private Shower" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/head_big) -"jUZ" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"jVc" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen{ - pixel_x = -1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"jVe" = ( -/obj/floor_decal/corner/green/border{ - dir = 6 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"jVf" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"jVh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"jVl" = ( -/obj/floor_decal/corner/black/border{ - dir = 4 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"jVn" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/yellow, -/obj/structure/bed/chair/shuttle/blue, -/turf/simulated/floor/tiled, -/area/guppy_hangar/start) -"jVo" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"jVp" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"jVv" = ( -/obj/structure/table/standard, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/machinery/power/apc/high{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/item/device/geiger, -/obj/item/device/scanner/health, -/obj/item/device/scanner/gas, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"jVy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"jVC" = ( -/obj/structure/table/rack, -/obj/item/shield/riot, -/obj/item/shield/riot, -/obj/item/shield/riot, -/obj/item/shield/riot/metal, -/obj/item/shield/riot/metal, -/obj/item/shield/riot/metal, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/recharger/wallcharger{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"jVE" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 1; - name = "Security RC"; - pixel_x = -32 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"jVH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"jVJ" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"jVO" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"jVP" = ( -/obj/decal/cleanable/dirt, -/obj/structure/bed/chair/pew/mahogany, -/turf/simulated/floor/wood/walnut, -/area/vacant/sauna) -"jVS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"jVT" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/firstdeck/aftport) -"jVV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"jVZ" = ( -/obj/floor_decal/spline/plain/black, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"jWb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"jWe" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/tank/air, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"jWg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"jWo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"jWq" = ( -/obj/floor_decal/carpet/purple, -/obj/floor_decal/carpet/purple{ - dir = 8 - }, -/obj/floor_decal/carpet/purple{ - dir = 10 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/office/rd/cobed) -"jWr" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"jWt" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hydroponics) -"jWw" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"jWA" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/solar/bridge_starboard) -"jWE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/hydrogen, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/hangar) -"jWL" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/firstdeck/aftstarboard) -"jWM" = ( -/obj/machinery/conveyor{ - id = "packageSort1"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/office/post) -"jWO" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/computer/modular/preset/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai) -"jWW" = ( -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/docking) -"jXb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad{ - pixel_y = 16; - pixel_x = 16 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/floor_decal/corner/purple/bordercorner, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"jXi" = ( -/obj/structure/sign/nanotrasen, -/turf/simulated/wall/r_wall/hull, -/area/hallway/primary/fourthdeck/center) -"jXl" = ( -/obj/structure/closet/secure_closet{ - name = "Secure Morgue Locker"; - req_access = list("ACCESS_MEDICAL") - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"jXo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"jXs" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"jXA" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/petrov{ - c_tag = "Petrov - Isolation Cell Two"; - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell2) -"jXC" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"jXE" = ( -/obj/floor_decal/corner/blue/diagonal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"jXF" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar/upper) -"jXK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"jXN" = ( -/obj/item/stool/padded, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"jYc" = ( -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/cistern) -"jYh" = ( -/obj/structure/table/woodentable_reinforced, -/obj/structure/flora/pottedplant/stoutbush{ - pixel_y = 10 - }, -/turf/simulated/floor/wood, -/area/command/chief_steward) -"jYi" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"jYm" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"jYs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch{ - id_tag = "engine_access_hatch"; - locked = 1; - req_access = newlist() - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "SupermatterDoor"; - name = "Supermatter Access Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"jYu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"jYx" = ( -/obj/structure/sign/warning/engineering_access{ - dir = 4; - pixel_x = -32 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"jYB" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"jYC" = ( -/obj/shuttle_landmark/sierra/deck4/exploration_shuttle, -/turf/space, -/area/space) -"jYJ" = ( -/obj/machinery/light/spot, -/obj/floor_decal/corner/red/mono, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/machinery/computer/station_alert/security{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"jYP" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/assembly/robotics) -"jYQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"jYU" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/obj/shuttle_landmark/escape_pod/start/pod5, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod5/station) -"jYV" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Medical Smoke Room" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_main_reg"; - name = "Infirmary Entry Shutters" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/office) -"jZa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"jZk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"jZl" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"jZq" = ( -/obj/structure/sign/warning/high_voltage{ - dir = 8; - pixel_x = 32 - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 1; - id_tag = "nuke_shuttle_dock_airlock_pump" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"jZr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/bridge) -"jZI" = ( -/obj/structure/sign/warning/radioactive{ - dir = 4; - pixel_x = -32 - }, -/obj/structure/catwalk, -/turf/simulated/floor/shuttle_ceiling/sierra, -/area/space) -"jZO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/atmos) -"jZR" = ( -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -32 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/computer/modular/preset/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"jZW" = ( -/obj/machinery/camera/ai/core{ - dir = 1; - c_tag = "AI Core - Auxiliary Access" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/device/radio/intercom/locked/ai_private{ - pixel_y = 22 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/turret_protected/ai_maint) -"jZY" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"jZZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"kad" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"kae" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "eva_shutters"; - name = "EVA Shutters" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"kaf" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/structure/table/standard, -/obj/item/device/integrated_circuit_printer, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"kap" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cargo_l) -"kaz" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"kaB" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"kaG" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"kaH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/actor) -"kaL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"kaP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/meter, -/obj/wallframe_spawn/reinforced_phoron/hull, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/black, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"kaS" = ( -/obj/structure/hygiene/sink{ - dir = 8; - pixel_x = -12 - }, -/turf/simulated/floor/tiled/white, -/area/medical/sleeper) -"kaU" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"kaX" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"kbd" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - id_tag = "xenobio3_vent"; - name = "Chamber Vent" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"kbe" = ( -/obj/structure/bed/chair/rounded/blue{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/mono, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"kbm" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/flora/ausbushes/leafybush, -/turf/simulated/floor/grass/cut, -/area/hallway/primary/bridgedeck/center) -"kbn" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"kbq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"kbt" = ( -/obj/structure/bed/chair/comfy/teal, -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"kby" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"kbB" = ( -/obj/paint_stripe/nt_red, -/obj/paint/nt_white, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod9/station) -"kbM" = ( -/obj/structure/disposalpipe/down{ - dir = 2 - }, -/obj/structure/lattice, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 4 - }, -/turf/simulated/open, -/area/maintenance/firstdeck/aftport) -"kbR" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/stairs/north, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/hallway) -"kbW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external/bolted/cycling{ - dir = 4; - id_tag = "eng2_inner"; - name = "Third Deck Port Nacelle Access" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/thruster/d3port) -"kcf" = ( -/obj/floor_decal/corner/blue{ - dir = 10 - }, -/obj/machinery/computer/air_control{ - dir = 1; - input_tag = "o24p_in"; - name = "Oxygen Supply Control"; - output_tag = "o24p_out"; - sensor_name = "Tank"; - sensor_tag = "ReacEngOxygen4" - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"kch" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/commissary) -"kcj" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"kcn" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"kcp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"kcx" = ( -/obj/structure/table/woodentable/walnut, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/item/clothing/head/festive, -/obj/item/clothing/head/festive, -/obj/item/clothing/head/festive, -/obj/item/clothing/head/festive, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor) -"kcA" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"kcF" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/maintenance, -/obj/random/firstaid, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"kcK" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftport) -"kcR" = ( -/obj/structure/table/woodentable_reinforced/ebony, -/obj/item/boombox{ - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/small/lager{ - pixel_y = -3; - pixel_x = -4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/sleep/cryo/south) -"kcS" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"kda" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"kdd" = ( -/turf/simulated/wall/prepainted, -/area/storage/eva) -"kdg" = ( -/obj/machinery/atmospherics/valve/open, -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/storage) -"kdh" = ( -/obj/structure/bookcase/manuals/research_and_development, -/obj/item/book/manual/psionics, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"kdk" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/lime/border{ - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"kdm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/aft) -"kdq" = ( -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"kdr" = ( -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/papershredder, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"kdv" = ( -/obj/structure/ladder/up, -/obj/floor_decal/industrial/warning/fulltile, -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/structure/cable, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/forestarboard) -"kdy" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"kdA" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/rnd/development) -"kdF" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/field_generator, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"kdO" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"kdQ" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"kdR" = ( -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"kdS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"keb" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"kei" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/breakroom) -"kej" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/flora/ausbushes/reedbush, -/turf/simulated/floor/grass/cut, -/area/hallway/primary/bridgedeck/center) -"kek" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Unused Chamber"; - autoset_access = 0; - req_access = list("ACCESS_SEC_DOORS") - }, -/obj/structure/barricade, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"kem" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Starboard Solar Access"; - req_access = newlist() - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar/starboard) -"kes" = ( -/obj/machinery/floodlight{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/airlock) -"ket" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cargo_r) -"keA" = ( -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/structure/closet/medical_wall/filled{ - pixel_x = 32 - }, -/obj/random/firstaid, -/obj/random/firstaid, -/obj/random/medical, -/obj/random/drinkbottle, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 1; - pixel_y = -13 - }, -/obj/item/bodybag/rescue, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"keJ" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"keN" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/office) -"keP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/item/storage/box/lights/mixed, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/assembly/robotics) -"keQ" = ( -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for the engine thruster blast doors."; - dir = 1; - id_tag = "ThrusterVents"; - name = "Thruster Blast Door control"; - pixel_y = -21; - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/obj/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/omni/filter{ - tag_east = 2; - tag_north = 1; - tag_west = 6 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/outline/grey, -/obj/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"keS" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/structure/bed/chair/rounded/blue{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"keU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"kfc" = ( -/obj/machinery/vending/dinnerware{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/bar/cobed) -"kfm" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"kfs" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cargo_r) -"kfu" = ( -/obj/random/obstruction, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"kfA" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/vacant/prototype/control) -"kfH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"kfS" = ( -/obj/item/storage/firstaid/brute, -/turf/space, -/area/space) -"kfW" = ( -/obj/structure/railing/mapped, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"kga" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/high/critical{ - dir = 4; - pixel_x = 24; - name = "east bump" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/bluespace/chamber) -"kgb" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5; - pixel_y = 16 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"kgc" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"kgj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/displaycase{ - req_access = list("ACCESS_CAPTAIN") - }, -/obj/item/gun/projectile/revolver/medium/captain, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"kgk" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"kgs" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"kgu" = ( -/obj/structure/railing/mapped, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"kgy" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"kgB" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"kgE" = ( -/obj/structure/closet/crate/freezer, -/turf/simulated/floor/tiled, -/area/maintenance/firstdeck/aftstarboard) -"kgG" = ( -/obj/machinery/light/spot, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"kgI" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagent_temperature, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/floor_decal/corner/beige{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"kgN" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d1starboard) -"kgX" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"kha" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass/civilian{ - name = "Holodeck" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/holocontrol) -"khc" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/atmospherics/valve/digital{ - dir = 8; - name = "External connector to thrusters" - }, -/obj/machinery/suit_cycler/pilot, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"khd" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/largecrate, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"khm" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/bed/sofa/l/brown{ - dir = 8 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Bar - Chief Steward"; - dir = 8 - }, -/turf/simulated/floor/wood/yew, -/area/crew_quarters/cafe) -"khu" = ( -/obj/machinery/button/crematorium{ - pixel_x = 24; - pixel_y = 10 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"khA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"khC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/computer/air_control{ - name = "Nacelle Chamber Monitoring"; - sensor_name = "Chamber"; - sensor_tag = "ReacEng4" - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"khG" = ( -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"khO" = ( -/turf/simulated/wall/prepainted, -/area/turret_protected/ai_cyborg_station) -"khP" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/porta_turret{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/turret_protected/ai_maint) -"khQ" = ( -/obj/structure/table/glass, -/obj/floor_decal/corner/darkblue/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"kib" = ( -/obj/floor_decal/corner/red/diagonal, -/obj/decal/cleanable/vomit, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"kid" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/turf/simulated/floor/plating, -/area/maintenance/cistern) -"kim" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"kin" = ( -/obj/floor_decal/corner/green/three_quarters, -/obj/machinery/vending/hydronutrients{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/floor_decal/corner/purple/bordercorner2, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"kiw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "xenolow_airlock"; - name = "Xenobiology Access Console"; - req_access = list("ACCESS_XENOBIO"); - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"kiD" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"kiH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"kiK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"kiS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"kiU" = ( -/mob/living/simple_animal/hostile/scarybat, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"kiZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"kjc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"kjg" = ( -/obj/structure/bed, -/obj/item/bedsheet/yellow, -/turf/simulated/floor/wood/walnut, -/area/maintenance/firstdeck/aftstarboard) -"kjo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/iaa/iso_quarters) -"kjp" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"kjw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - dir = 4; - name = "Miscellaneous Laboratory"; - req_access = newlist() - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"kjC" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 1; - id_tag = "petrov_shuttle_dock_pump" - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"kjL" = ( -/obj/structure/catwalk, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"kjX" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/handrail, -/turf/simulated/floor/airless, -/area/space) -"kka" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/bridgedeck/port) -"kkg" = ( -/obj/structure/railing/mapped, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"kkq" = ( -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/seconddeck/center) -"kkr" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/space) -"kks" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"kkx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/book/manual/nt_sop, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft_stairwell) -"kkC" = ( -/obj/structure/lattice, -/turf/simulated/wall/r_wall/hull, -/area/bridge) -"kkG" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"kkI" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/foreport) -"kkJ" = ( -/obj/machinery/door/blast/regular/escape_pod{ - id_tag = "escape_pod_1" - }, -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/forestarboard) -"kkL" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters{ - id_tag = "vir_isol" - }, -/turf/simulated/floor/plating, -/area/medical/virology/lab) -"kkN" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"kkO" = ( -/obj/decal/cleanable/blood, -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/foreport) -"klp" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/closet/cabinet, -/obj/random/drinkbottle, -/obj/random/mre/dessert, -/obj/random/single/lighter, -/turf/simulated/floor/wood/walnut, -/area/vacant/gambling) -"klq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"klu" = ( -/obj/machinery/portable_atmospherics/powered/pump, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"kly" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"klB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"klJ" = ( -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/turbolift/medical_lift) -"klK" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"klM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"klO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"klQ" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftstarboard) -"klZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/industrial/danger/corner, -/obj/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"kmc" = ( -/obj/machinery/atmospherics/pipe/cap/visible{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"kmn" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/thirddeck/aft_stairwell) -"kmy" = ( -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"kmE" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"kmH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"kmI" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"kmK" = ( -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"kmO" = ( -/obj/floor_decal/industrial/hatch/red, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"kmV" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"kmZ" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"knb" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"knd" = ( -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/maintenance_equipstorage) -"kno" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar/upper) -"knr" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/machinery/camera/network/command{ - c_tag = "Command - Captain's Quarters"; - dir = 8 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"knv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/utility) -"knz" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"knC" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/device/camera{ - pixel_y = 9; - pixel_x = 5 - }, -/obj/item/device/camera_film{ - pixel_y = -3; - pixel_x = -6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/sleep/bunk) -"knD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/fourthdeck/central_stairwell) -"knI" = ( -/obj/structure/ladder/up, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"knP" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"knQ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/vacant/cargo) -"knS" = ( -/obj/machinery/door/airlock/command{ - name = "Internal Affairs Agent"; - secured_wires = 1; - hackProof = 1; - ai_control_disabled = 1 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/iaa) -"knX" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/structure/bed/chair/padded/blue, -/obj/machinery/rotating_alarm/security_alarm{ - pixel_y = 13 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"koe" = ( -/obj/machinery/shieldgen, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"kog" = ( -/obj/machinery/door/airlock/hatch{ - id_tag = "prototype_access_hatch"; - locked = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"koh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"kok" = ( -/obj/structure/railing/mapped, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"koo" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"kot" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"kov" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"koy" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"koE" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/structure/filingcabinet{ - pixel_x = -10 - }, -/obj/structure/filingcabinet, -/obj/structure/filingcabinet{ - pixel_x = 10 - }, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"koH" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/abandoned_hydroponics) -"koI" = ( -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/green/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/green/bordercorner, -/obj/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"koW" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"koZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id_tag = "hangar_hallway_shutters"; - name = "Hangar Deck Hallway Shutters"; - opacity = 0 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown3_4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/civilian{ - name = "Visitors"; - id_tag = "hangar_hallway_doors"; - autoset_access = 0 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/fore) -"kpb" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"kph" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/recharger, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/structure/panic_button{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cockpit) -"kpk" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/toolcloset/excavation, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/equipment) -"kpt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"kpz" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"kpM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/xenobio) -"kpO" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"kpP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"kpR" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/rotating_alarm/security_alarm{ - pixel_y = 13 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"kpV" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"kqh" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/exploration/eva) -"kqn" = ( -/obj/machinery/door/window/southright{ - dir = 1; - name = "Test Chamber" - }, -/obj/machinery/door/window/southright{ - name = "Test Chamber" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell1) -"kqq" = ( -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation) -"kqt" = ( -/obj/floor_decal/carpet/blue2{ - dir = 4 - }, -/obj/floor_decal/carpet/blue2, -/obj/floor_decal/carpet/blue2{ - dir = 6 - }, -/obj/structure/table/woodentable/walnut, -/obj/item/device/flashlight/lamp/lava/cyan{ - pixel_y = 9; - pixel_x = 4 - }, -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/turf/simulated/floor/carpet/blue3, -/area/crew_quarters/heads/office/cmo/cobed) -"kqy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"kqA" = ( -/obj/floor_decal/industrial/outline/blue, -/obj/structure/sign/xenoflora{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"kqE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"kqQ" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"kqT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"kqY" = ( -/obj/machinery/atmospherics/binary/passive_gate{ - dir = 4; - target_pressure = 15000; - regulate_mode = 1; - unlocked = 1 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/atmos) -"kre" = ( -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"krm" = ( -/obj/floor_decal/corner/black{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"krn" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"kro" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1starboard) -"krs" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"kru" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/shipping_wall/filled{ - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/development) -"krA" = ( -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"krI" = ( -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"krK" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/structure/fireaxecabinet{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/seconddeck) -"krL" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/vendor/contraband/maintenance{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"krN" = ( -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"krT" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "sd_port_outer"; - name = "Second Deck Port Airlock" - }, -/obj/machinery/access_button/airlock_exterior{ - master_tag = "sd_port"; - name = "exterior access button"; - pixel_x = 24; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/machinery/shield_diffuser, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/foreport) -"krZ" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_upload) -"ksk" = ( -/obj/machinery/camera/network/second_deck{ - c_tag = "Chapel - Entry"; - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"kso" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 8 - }, -/obj/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"ksp" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/bridgedeck/starboard) -"ksr" = ( -/obj/machinery/vending/tool/adherent{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/crystal, -/area/crew_quarters/adherent) -"ksu" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/reinforced, -/area/turret_protected/ai_maint) -"ksv" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "pathfinder_office" - }, -/turf/simulated/floor/plating, -/area/command/exploration_leader) -"ksw" = ( -/obj/machinery/door/airlock/research{ - name = "Storage and Power" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/ship) -"ksC" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/medical/mortus{ - name = "Morgue"; - req_access = newlist() - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "med_morg"; - name = "Infirmary Emergency Quarantine Shutters"; - opacity = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"ksE" = ( -/obj/machinery/vending/snack, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"ksI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/entry) -"ksM" = ( -/obj/machinery/computer/ship/helm{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/guppy_hangar/start) -"kte" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/structure/sign/deck/second{ - dir = 4; - pixel_x = -32; - pixel_y = 32 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/emcloset/anchored, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/aft_stairwell) -"ktg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"ktq" = ( -/obj/floor_decal/techfloor, -/obj/structure/closet/crate/plastic, -/obj/decal/cleanable/dirt, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"ktr" = ( -/obj/floor_decal/industrial/warning, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"ktt" = ( -/obj/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 9 - }, -/obj/machinery/light/small, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"ktu" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"kty" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/navbeacon/sierra/FD_afthallway2, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"ktE" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/floor_decal/carpet/blue2{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/garden_room) -"ktQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/machinery/navbeacon/sierra/TD_fore2, -/obj/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lightgrey/bordercorner2, -/obj/structure/holoplant, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"ktT" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/plating, -/area/maintenance/solar/bridge_port) -"kut" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/cyan{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/space) -"kuu" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"kuy" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4 - }, -/obj/structure/sign/warning/pods/south{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals_central6, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"kuI" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/lime/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"kuJ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/thirddeck/fore) -"kuK" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - dir = 4; - name = "Bridge Access"; - id_tag = "bridge_hallway_doors_port" - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lob_bridge_lock" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/hallway) -"kuQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "petrov_shuttle_dock_inner"; - name = "Docking Port Airlock"; - autoset_access = 0; - req_access = list(list("ACCESS_PETROV","ACCESS_SEC_DOORS")); - frequency = 1380 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"kuV" = ( -/obj/floor_decal/corner/brown/mono, -/obj/machinery/computer/modular/preset/supply_public{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"kuY" = ( -/obj/machinery/atmospherics/tvalve/digital{ - dir = 1; - id_tag = "fuelmode" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"kvc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/computer/modular/preset/security{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"kvk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/navbeacon/sierra/TD_port, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"kvm" = ( -/obj/structure/closet/crate/plastic, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"kvu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"kvv" = ( -/obj/machinery/computer/ship/sensors, -/obj/item/modular_computer/telescreen/preset/generic{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cockpit) -"kvz" = ( -/obj/machinery/light/led/small{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/jukebox/custom_tape/old, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"kvF" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/green/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/green/bordercorner2, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/button/blast_door{ - dir = 1; - pixel_y = -24; - id_tag = "vir_isol"; - name = "Virology isolator" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"kvH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"kvL" = ( -/obj/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmospherics - North"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"kvN" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/docking) -"kvW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"kwa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"kwc" = ( -/obj/machinery/photocopier/faxmachine{ - department = "Exploration Leader"; - destination = "NanoTrasen Central Command" - }, -/obj/structure/table/reinforced, -/obj/machinery/light, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/mauve/border{ - dir = 10 - }, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"kwf" = ( -/obj/structure/table/steel, -/obj/item/board, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"kwm" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"kwt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell1) -"kwG" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/grass/cut, -/area/hallway/primary/bridgedeck/center) -"kwI" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/xenobiology/atmos) -"kwZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"kxg" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"kxh" = ( -/obj/structure/table/steel, -/obj/item/storage/box/bodybags, -/obj/machinery/light, -/obj/item/clothing/mask/gas, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/utility) -"kxi" = ( -/obj/floor_decal/industrial/warning/fulltile, -/obj/structure/ladder/up, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"kxv" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"kxy" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/exploration_shuttle/power) -"kxB" = ( -/obj/machinery/computer/modular/preset/civilian/professional, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/floor_decal/carpet/purple{ - dir = 1 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/office) -"kxC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/table/woodentable_reinforced/mahogany, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/material/ashtray/bronze{ - pixel_y = 11; - pixel_x = -6 - }, -/obj/item/paper/sierra, -/turf/simulated/floor/carpet/magenta, -/area/crew_quarters/cafe) -"kxG" = ( -/obj/structure/filingcabinet/wallcabinet{ - pixel_x = 28 - }, -/obj/item/folder/nt, -/obj/item/folder/nt, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"kxH" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 10 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"kxI" = ( -/obj/machinery/computer/modular/preset/civilian{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"kxQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"kxZ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/aft_stairwell) -"kya" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sleep/bunk) -"kyc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/tech) -"kye" = ( -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"kyf" = ( -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"kyg" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"kyh" = ( -/obj/structure/closet/crate, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"kyj" = ( -/obj/structure/sign/directions/bridge{ - pixel_y = -13; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/seconddeck/aft_stairwell) -"kyp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/civilian{ - autoset_access = 0; - name = "Comissary" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"kyt" = ( -/obj/structure/bed/chair/office/comfy/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/landmark/start{ - name = "Research Director" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"kyw" = ( -/obj/catwalk_plated, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"kyx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"kyz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/tele_beacon, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft_stairwell) -"kyB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/mob/living/bot/cleanbot{ - name = "Crewman"; - will_patrol = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"kyC" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp/green, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"kyH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/item/device/multitool/multimeter, -/obj/item/device/multitool/multimeter, -/obj/item/device/multitool/multimeter, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"kyI" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled, -/area/vacant/cargo) -"kyL" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"kyT" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"kzg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"kzm" = ( -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"kzn" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"kzo" = ( -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/bridgedeck/port) -"kzx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"kzF" = ( -/obj/shuttle_landmark/sierra/deck3/exploration_shuttle, -/turf/space, -/area/space) -"kzH" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/closet/medical_wall/filled{ - pixel_y = 24 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"kzJ" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/exploration/eva) -"kzL" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/bunk) -"kzO" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#4c535b" - }, -/area/quartermaster/hangar/upper) -"kzR" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"kzS" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/command/bsa) -"kzX" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"kzZ" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"kAa" = ( -/obj/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel_reinforced, -/obj/item/storage/box/donkpocket_mixed{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration) -"kAg" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d3port) -"kAi" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"kAo" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/hand_labeler{ - pixel_x = -2; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"kAq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"kAy" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/bed/chair/comfy/blue, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"kAE" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/floor_decal/corner/purple{ - pixel_y = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"kAJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"kAK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/catwalk_plated/dark, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/plating, -/area/bridge/hallway) -"kAL" = ( -/obj/floor_decal/corner/purple/half{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"kAQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"kAZ" = ( -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/window/brigdoor/northright{ - autoset_access = 0; - dir = 4; - name = "Test Chamber"; - req_access = list("ACCESS_TOXINS") - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "misclab"; - name = "Test Chamber Blast Doors"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"kBc" = ( -/turf/simulated/wall/r_wall/hull, -/area/vacant/bar) -"kBe" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/corner/white{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"kBk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"kBm" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"kBr" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Shield Subgrid"; - name_tag = "Shield Subgrid" - }, -/obj/structure/cable/cyan, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Shield Generator"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/shield/thirddeck) -"kBs" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"kBt" = ( -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/structure/sign/emergonly{ - dir = 8; - pixel_x = 32 - }, -/obj/structure/bed/chair/padded/teal{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/maintenance_equipstorage) -"kBu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/forestarboard) -"kBw" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"kBD" = ( -/obj/structure/sign/warning/fire{ - dir = 8; - pixel_x = 32 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"kBS" = ( -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/quartermaster/hangar_stairs) -"kBW" = ( -/obj/machinery/door/blast/regular{ - dir = 8; - id_tag = "armory_lethal" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/sierra/armory) -"kBZ" = ( -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/machinery/camera/network/command{ - c_tag = "Command - Bridge Starboard" - }, -/obj/random/drinkbottle, -/obj/item/reagent_containers/food/drinks/glass2/rocks, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"kCh" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"kCj" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"kCm" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/hangar_atmos) -"kCy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"kCz" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/stock_parts/circuitboard/rdserver, -/obj/item/stock_parts/circuitboard/protolathe, -/obj/item/stock_parts/circuitboard/destructive_analyzer, -/obj/item/stock_parts/circuitboard/rdconsole, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech) -"kCD" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular{ - id_tag = "vir_blast_window" - }, -/turf/simulated/floor/plating, -/area/medical/virology/lab) -"kCE" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"kCI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"kCN" = ( -/obj/structure/bed/sofa/r/black{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"kCS" = ( -/obj/machinery/navbeacon/sierra/SD_fore6, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"kCT" = ( -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sauna) -"kCZ" = ( -/obj/structure/bed/chair/padded/green, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"kDb" = ( -/obj/structure/table/woodentable, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/circuitboard/autolathe, -/obj/decal/cleanable/dirt, -/obj/random/maintenance, -/obj/machinery/light/small, -/turf/simulated/floor/wood, -/area/maintenance/firstdeck/forestarboard) -"kDh" = ( -/obj/structure/filingcabinet, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/floor_decal/industrial/outline/blue, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"kDj" = ( -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"kDn" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai) -"kDz" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"kDC" = ( -/obj/structure/sign/warning/vent_port{ - dir = 4; - pixel_x = -32 - }, -/obj/structure/catwalk, -/turf/simulated/floor/shuttle_ceiling/sierra, -/area/space) -"kDM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/sleeper{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod1/station) -"kDO" = ( -/obj/structure/table/woodentable, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - pixel_y = 12 - }, -/obj/item/storage/box/cups{ - pixel_y = 4; - pixel_x = -11 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo/south) -"kDQ" = ( -/obj/machinery/media/music_writer{ - pixel_y = 28 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge/upper) -"kDS" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/sparker{ - id_tag = "engines-4"; - pixel_x = -24 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d1port) -"kEe" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod5/station) -"kEk" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"kEx" = ( -/obj/floor_decal/corner/purple/three_quarters, -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/railing/mapped{ - dir = 8; - init_color = "#8c911d"; - color = "#8c911d" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"kEB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/thirddeck/fore) -"kEC" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftstarboard) -"kEE" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/atmospherics/portables_connector, -/obj/structure/sign/warning/nosmoking_1{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"kEJ" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"kFn" = ( -/obj/structure/bed/chair/padded/green{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/turf/simulated/floor/tiled, -/area/holocontrol) -"kFs" = ( -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/item/storage/box/mousetraps, -/obj/machinery/camera/network/second_deck{ - c_tag = "Janitor"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"kFB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"kFC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/corner/paleblue{ - dir = 10 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"kFE" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"kFJ" = ( -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"kFL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"kFQ" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4 - }, -/obj/engine_setup/pump_max, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"kFT" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/titanium, -/area/shuttle/petrov/airlock) -"kFV" = ( -/obj/structure/railing/mapped, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/item/tank/oxygen, -/turf/simulated/floor/plating, -/area/vacant/cargo) -"kFW" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/structure/closet/hydrant{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"kGk" = ( -/obj/machinery/atmospherics/unary/tank/air, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"kGl" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"kGw" = ( -/obj/machinery/optable, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"kGy" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "xenobio4_vent"; - name = "Chamber Vent" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"kGC" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/power/rad_collector, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"kGD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"kGG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"kGH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"kGL" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals_central6, -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"kGM" = ( -/obj/structure/table/rack/dark, -/obj/item/stack/material/plastic/fifty, -/obj/item/stack/material/plastic/fifty, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/spline/plain/black{ - dir = 5 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"kGN" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"kGT" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"kGU" = ( -/obj/structure/catwalk, -/obj/random/junk, -/obj/item/roller_bed{ - pixel_y = 16 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"kHd" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"kHe" = ( -/obj/floor_decal/industrial/warning/half, -/obj/machinery/computer/air_control{ - input_tag = "toxin_in"; - name = "Test Chamber Gas Monitor"; - output_tag = "toxin_out"; - sensor_name = "Test Chamber"; - sensor_tag = "testchamber_sensor" - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"kHk" = ( -/obj/machinery/computer/HolodeckControl{ - dir = 8; - linkedholodeck_area = /area/holodeck/alphadeck; - programs_list_id = "SierraMainPrograms" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/lime/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/holocontrol) -"kHm" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"kHr" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"kHz" = ( -/obj/floor_decal/corner/black/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"kHF" = ( -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"kHK" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralport) -"kHQ" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"kHT" = ( -/obj/machinery/door/airlock/science{ - name = "Exploration Leader"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/command/exploration_leader) -"kHX" = ( -/obj/structure/closet/emcloset/anchored, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"kHY" = ( -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/vacant/sauna) -"kHZ" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_east = 2; - tag_south = 5; - tag_west = 1 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/green, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"kIk" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/waterstore) -"kIl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/blue/border, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"kIm" = ( -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"kIn" = ( -/obj/machinery/shield_diffuser, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"kIp" = ( -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/crew_quarters/visitors) -"kIq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/incinerator) -"kIx" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Bridge Air Storage to Bridge Supply" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"kIy" = ( -/obj/machinery/suit_storage_unit/engineering/alt, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"kIz" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"kIR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"kIT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"kJa" = ( -/turf/simulated/wall/prepainted, -/area/engineering/engineering_monitoring) -"kJg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Cistern"; - req_access = newlist() - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/waterstore) -"kJw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"kJA" = ( -/obj/floor_decal/industrial/traffic{ - dir = 10; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/office) -"kJC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"kJI" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/fore) -"kJJ" = ( -/obj/structure/table/steel, -/obj/item/storage/belt/utility/full, -/obj/item/flame/lighter/zippo, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/red/bordercorner2, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"kJO" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/item/stool/padded, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"kJP" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/stock_parts/circuitboard/borgupload, -/obj/item/stock_parts/circuitboard/aiupload, -/obj/machinery/camera/network/engineering{ - c_tag = "Tech Storage - Secure" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech/high_risk) -"kJV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/alarm/monitor/isolation/xenobio{ - alarm_id = "xenobio1_alarm"; - dir = 8; - name = "Xenobiology First Xenopen"; - pixel_x = 23 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"kJW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange, -/obj/machinery/conveyor{ - dir = 4; - id = "compactor" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/compactor) -"kJX" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "td_port" - }, -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"kJY" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/structure/bed/chair/pew, -/obj/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/breakroom) -"kKl" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"kKs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/lime/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"kKt" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/tcommsat/chamber) -"kKv" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/decal/cleanable/dirt, -/obj/structure/sign/directions/medical{ - pixel_y = -21 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"kKz" = ( -/obj/structure/cryofeed, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"kKC" = ( -/obj/floor_decal/corner/blue/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"kKF" = ( -/obj/machinery/atmospherics/valve/shutoff/supply, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"kKI" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/machinery/disposal, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"kKL" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - injecting = 1; - use_power = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/thruster/d3port) -"kKP" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"kKR" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/thirddeck/aftport) -"kKT" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"kKU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/silver{ - autoset_access = 0; - name = "Resource Storage"; - req_access = list("ACCESS_CENT_GENERAL"); - secured_wires = 1 - }, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"kLd" = ( -/obj/structure/bed/chair/comfy/purple{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"kLe" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/firstdeck) -"kLl" = ( -/obj/structure/undies_wardrobe, -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 10 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"kLn" = ( -/obj/machinery/jukebox/custom_tape/old, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"kLp" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"kLx" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/floor_decal/techfloor/hole/right{ - dir = 1 - }, -/obj/machinery/shieldgen, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"kLB" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/random/firstaid, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/storage/tech) -"kLD" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Aft Stairwell"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"kLF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"kLM" = ( -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/gym) -"kLQ" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 1 - }, -/obj/structure/bed/chair/shuttle/green, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/seats_place) -"kLS" = ( -/obj/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1; - target_pressure = 3500 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"kLV" = ( -/obj/machinery/suit_storage_unit/explorer, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/eva) -"kLY" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"kMb" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"kMd" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/gas) -"kMf" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/random/cash, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/cockpit) -"kMn" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 10 - }, -/obj/machinery/camera/network/engine{ - c_tag = "Engine - Control"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"kMu" = ( -/obj/floor_decal/corner/research/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/obj/item/device/camera, -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/office) -"kMA" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "armory" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/sierra/armory/lobby) -"kMJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/center) -"kMK" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/chair/wood/walnut{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor) -"kMO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/grey/bordercorner, -/obj/floor_decal/corner/grey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"kMP" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/floor_decal/industrial/outline/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"kMT" = ( -/obj/machinery/power/solar_control{ - id = "auxsolarstarboard"; - name = "Starboard Solar Control" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"kMW" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"kMY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"kNi" = ( -/obj/structure/disposalpipe/tagger/partial{ - dir = 8; - name = "Sorting Office"; - sort_tag = "Sorting Office" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/mining{ - name = "Delivery Office"; - req_access = newlist() - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office/post) -"kNr" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"kNv" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"kNw" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/machinery/airlock_sensor{ - id_tag = "ai_core_sensor"; - pixel_x = 24 - }, -/obj/floor_decal/industrial/warning/corner, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/turret_protected/ai_teleport) -"kNJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/tank/air{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/grey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"kNL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"kNR" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "lounge_windows" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/garden_room) -"kNS" = ( -/obj/machinery/computer/ship/sensors{ - dir = 1 - }, -/obj/machinery/power/apc/hyper{ - dir = 8; - name = "east bump"; - pixel_x = -24; - req_access = list(list("ACCESS_ENGINE_EQUIP","ACCESS_GUPPY")) - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/button/blast_door{ - active = "guppy_shield_left"; - dir = 1; - id_tag = "guppy_shield_left"; - name = "Left Window Shield Control"; - pixel_x = -6; - pixel_y = -20; - req_access = list("ACCESS_GUPPY") - }, -/obj/machinery/button/blast_door{ - airflow_od = -6; - dir = 1; - id_tag = "guppy_shield"; - name = "Window Shield Control"; - pixel_x = 6; - pixel_y = -20; - req_access = list("ACCESS_GUPPY") - }, -/obj/machinery/button/blast_door{ - dir = 1; - id_tag = "guppy_hatch"; - name = "Rear Hatch Control"; - pixel_y = -32; - req_access = list("ACCESS_GUPPY") - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/guppy_hangar/start) -"kNU" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"kNV" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/solar/bridge_port) -"kNX" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"kOi" = ( -/obj/floor_decal/industrial/traffic{ - dir = 5; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/office) -"kOo" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"kOt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/padded/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"kOu" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"kOy" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/thirddeck) -"kOz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"kOA" = ( -/obj/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"kOF" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/item/stool/padded, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"kOJ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/green/border{ - dir = 5 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/obj/machinery/camera/network/fourth_deck{ - c_tag = "Fourth Deck - Dock Bay - Commissary"; - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"kPc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"kPk" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/hull, -/area/security/sierra/prison) -"kPn" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/ocp_wall, -/area/shuttle/petrov/gas) -"kPq" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/power) -"kPx" = ( -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"kPB" = ( -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"kPK" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/corner/red/border, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"kPL" = ( -/obj/structure/bed/sofa/r/brown{ - dir = 1 - }, -/obj/machinery/light, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/actor/stage) -"kPV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"kPX" = ( -/obj/floor_decal/corner/paleblue, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology - General Ward"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/ward) -"kQa" = ( -/obj/machinery/door/airlock/glass/command{ - name = "Flight Control Tower" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/quartermaster/hangar/upper) -"kQd" = ( -/obj/structure/rubble, -/obj/decal/cleanable/dirt, -/obj/random/junk, -/obj/decal/cleanable/filth, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"kQg" = ( -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"kQl" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"kQq" = ( -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"kQx" = ( -/obj/structure/closet/secure_closet/security/sierra/cadet, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"kQA" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"kQE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/command{ - name = "E.V.A."; - req_access = newlist(); - secured_wires = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"kQF" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"kQH" = ( -/obj/structure/curtain/bed, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"kQK" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/machinery/power/apc/high{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"kQN" = ( -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/modular/preset/civilian, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"kQP" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/fourthdeck/foreport) -"kQU" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/exploration/eva) -"kQW" = ( -/obj/item/stack/material/steel, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"kQX" = ( -/obj/floor_decal/corner/darkblue/full, -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/floor_decal/corner/black/bordercorner{ - dir = 1 - }, -/obj/machinery/button/windowtint{ - pixel_y = 22; - id = "briefing_windows"; - range = 12 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"kRb" = ( -/obj/structure/table/steel, -/obj/random/snack, -/obj/item/reagent_containers/food/drinks/teapot{ - pixel_x = 4; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{ - desc = "A metal tea cup. You're sure it is for tea, do not try to put coffe in."; - name = "metal tea cup"; - pixel_x = 10; - pixel_y = 6 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"kRl" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"kRm" = ( -/obj/floor_decal/borderfloor, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft_stairwell) -"kRJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/table/woodentable_reinforced/mahogany, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/device/flashlight/lamp/lava/purple{ - pixel_y = 14; - pixel_x = -4 - }, -/obj/item/paper/sierra, -/turf/simulated/floor/carpet/green, -/area/crew_quarters/cafe) -"kRK" = ( -/obj/machinery/constructable_frame/machine_frame, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"kRL" = ( -/obj/floor_decal/industrial/warning, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"kRS" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/table/steel, -/obj/item/folder/yellow, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"kRW" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/paint_stripe/red, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/wallframe_spawn/reinforced/polarized{ - id = "sec_equip_windows" - }, -/turf/simulated/floor/plating, -/area/security/sierra/equipment) -"kSk" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/camera/network/command{ - c_tag = "Command - Conference Room"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"kSr" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/random/maintenance, -/obj/machinery/door/window/westleft{ - name = "Commissary rack"; - req_access = newlist() - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/random/single/cola, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"kSs" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters/open{ - id_tag = "security_permabrig_lobby_shutters" - }, -/obj/paint_stripe/red, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/turf/simulated/floor/plating, -/area/security/sierra/brig) -"kSu" = ( -/obj/structure/bed/chair/pew/left, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"kSw" = ( -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/drinkbottle, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/single/playing_cards, -/obj/machinery/button/blast_door{ - id_tag = "comissary_shutters"; - name = "Counter Shutters"; - pixel_y = 24; - req_access = list(list("ACCESS_HEADS","ACCESS_COMMISSARY")) - }, -/obj/machinery/requests_console{ - department = "Commissary"; - departmentType = 6; - name = "Commissary Requests Console"; - pixel_x = -32; - req_access = list(list("ACCESS_HEADS","ACCESS_COMMISSARY")) - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"kSG" = ( -/obj/floor_decal/corner/black/full, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"kSS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"kSW" = ( -/obj/structure/railing/mapped, -/obj/structure/closet/crate/trashcart, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"kTb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/thirddeck/center) -"kTd" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"kTe" = ( -/obj/floor_decal/industrial/outline/blue, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/staging) -"kTh" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/hallway/primary/firstdeck/center) -"kTi" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack{ - dir = 8 - }, -/obj/random/maintenance, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/compactor) -"kTn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/gas) -"kTu" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/rnd/xenobiology/xenoflora) -"kTD" = ( -/obj/machinery/ai_status_display, -/turf/simulated/wall/r_wall/prepainted, -/area/hallway/primary/fourthdeck/center) -"kTG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"kTQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/aft) -"kTS" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/closet/hydrant{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"kTV" = ( -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"kTW" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -21 - }, -/obj/item/device/suit_cooling_unit/miniature, -/obj/item/device/suit_cooling_unit/miniature, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"kUj" = ( -/obj/structure/table/marble, -/obj/item/material/rollingpin, -/obj/floor_decal/corner/red/diagonal, -/obj/machinery/light_construct, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"kUs" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - dir = 8; - initial_id_tag = "aux_fusion_plant" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) -"kUy" = ( -/turf/simulated/floor/tiled/techmaint, -/area/storage/tech/high_risk) -"kUD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"kUF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation/second) -"kUV" = ( -/obj/floor_decal/chapel, -/obj/structure/bed/chair/pew/left/mahogany, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"kUW" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"kVd" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/servers) -"kVf" = ( -/obj/structure/flora/pottedplant/minitree, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"kVg" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"kVi" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"kVD" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/substation/bridgedeck) -"kVG" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"kVJ" = ( -/obj/engine_setup/smes, -/obj/machinery/power/smes/buildable/preset/sierra/engine_main{ - RCon_tag = "Engine - Main" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_smes) -"kVY" = ( -/obj/machinery/door/airlock/research{ - name = "Suit Storage" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/eva) -"kVZ" = ( -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_upload) -"kWb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/maintenance_equipstorage) -"kWd" = ( -/obj/machinery/suit_storage_unit/medical, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"kWm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/water_cell) -"kWo" = ( -/obj/machinery/flasher{ - id_tag = "security_first_cell_flash"; - name = "Floor mounted flash" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"kWq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"kWA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"kWB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"kWC" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"kWG" = ( -/obj/structure/railing/mapped{ - dir = 8; - init_color = "#8c911d"; - color = "#8c911d" - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"kWI" = ( -/obj/machinery/power/shield_generator, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/cyan, -/obj/machinery/light/small, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/shield/thirddeck) -"kWT" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"kXa" = ( -/obj/item/target, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"kXd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/button/blast_door{ - id_tag = "firingspace"; - name = "Firing Range Shields"; - req_access = list("ACCESS_SEC_DOORS"); - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"kXm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"kXu" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"kXz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"kXA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/engineering{ - name = "Equipment" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/engineering/locker_room) -"kXI" = ( -/obj/structure/table/rack, -/obj/random/tech_supply, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"kXK" = ( -/obj/machinery/computer/modular/preset/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"kXN" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/gravitaional_generator) -"kXO" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"kXS" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"kXW" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"kYd" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"kYf" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/galley/backroom) -"kYg" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"kYh" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"kYo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"kYs" = ( -/obj/machinery/vending/coffee{ - dir = 1 - }, -/obj/floor_decal/corner/lime/mono, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/center) -"kYu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"kYw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Second Deck Subgrid"; - name_tag = "Second Deck Subgrid" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/seconddeck) -"kYz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"kYE" = ( -/obj/structure/table/standard, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/purple/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"kYH" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"kYN" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/camera/network/hangar, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar) -"kYW" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"kZg" = ( -/obj/structure/bed/sofa/m/black{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"kZn" = ( -/obj/machinery/air_sensor{ - id_tag = "o2_sensor" - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos) -"kZq" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Engineering"; - name = "Engineering RC"; - pixel_x = 32 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Lobby"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"kZr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/breakroom) -"kZw" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - id_tag = "solar_starboard_pump" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"kZC" = ( -/obj/machinery/atmospherics/valve/digital{ - name = "Emergency Cooling Bypass valve"; - dir = 1 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/red, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"kZG" = ( -/obj/structure/bed/chair/office/comfy/teal, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"kZI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"kZK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"lac" = ( -/obj/paint_stripe/yellow, -/obj/paint/dark_gunmetal, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/wall/r_titanium, -/area/guppy_hangar/start) -"lad" = ( -/obj/structure/table/standard, -/obj/item/clothing/mask/gas/aquabreather, -/obj/item/clothing/mask/gas/aquabreather, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level2) -"lau" = ( -/obj/structure/bed/chair/padded/blue, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"laz" = ( -/obj/item/stool/padded, -/obj/floor_decal/corner/yellow/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/suplocker_room) -"laG" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"laP" = ( -/obj/machinery/shield_diffuser, -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_8_berth_hatch"; - name = "Escape Pod Eeigh" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"laV" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"lbg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"lby" = ( -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"lbF" = ( -/obj/floor_decal/techfloor, -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/cell/high{ - pixel_x = 1 - }, -/obj/item/cell/high{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/item/cell/high{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/floor_decal/techfloor/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/servers) -"lbK" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "xenobioaqua"; - name = "Containment Blast Doors" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/water_cell) -"lbL" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/folder/red{ - pixel_y = 11; - pixel_x = 7 - }, -/obj/structure/sign/poster/nyc/know_the_enemy{ - pixel_y = -32 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"lbY" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"lbZ" = ( -/obj/machinery/power/apc/hyper{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/radiation, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"lci" = ( -/obj/structure/cryofeed{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo/firstdeck) -"lcn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft_stairwell) -"lcv" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"lcB" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"lcF" = ( -/obj/structure/disposalpipe/down{ - dir = 1 - }, -/obj/structure/lattice, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/fuel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 32; - icon_state = "32-1" - }, -/turf/simulated/open, -/area/maintenance/thirddeck/aftport) -"lda" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/port) -"ldg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "d1portnacelle" - }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"ldn" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/multi_tile/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftport) -"lds" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"ldz" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"ldC" = ( -/obj/structure/table/steel, -/obj/item/modular_computer/laptop/preset/custom_loadout/standard{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/sleep/bunk) -"ldI" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_r) -"ldP" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/door/blast/shutters{ - dir = 4; - id_tag = "hangar_atmos_storage"; - name = "Storage Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar_atmos) -"ldQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/bed/chair/comfy/red{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"ldT" = ( -/obj/floor_decal/borderfloorblack, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/bunk) -"ldV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"ldY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/padded/red{ - dir = 4 - }, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"lea" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"leb" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Exterior Vent" - }, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/titanium, -/area/shuttle/petrov/gas) -"lek" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"lel" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"lem" = ( -/obj/machinery/atmospherics/binary/pump/on{ - target_pressure = 200; - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"leq" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id_tag = "med_pat_ward"; - name = "Infirmary Window Shutters" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/plating, -/area/medical/wardhallway) -"lex" = ( -/obj/machinery/libraryscanner, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"lez" = ( -/obj/machinery/computer/modular/preset/cardslot/command{ - dir = 8 - }, -/obj/floor_decal/corner/blue{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/machinery/button/blast_door{ - id_tag = "med_morg"; - name = "Mogrue Exit Lockdown"; - pixel_x = 20; - pixel_y = 10; - req_access = list("ACCESS_MEDICAL"); - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "med_crit2"; - name = "Critical Wing 2 Lockdown"; - pixel_x = 28; - pixel_y = 10; - req_access = list("ACCESS_MEDICAL"); - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "med_crit1"; - name = "Critical Wing 1 Lockdown"; - pixel_x = 36; - req_access = list("ACCESS_MEDICAL"); - pixel_y = 10; - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "med_quar_lock"; - name = "QUARANTINE FULL LOCKDOWN"; - dir = 8; - pixel_x = 43; - color = "#ff5500"; - req_access = list("ACCESS_MEDICAL") - }, -/obj/machinery/button/blast_door{ - id_tag = "med_to_maint"; - name = "Infirmary to Maintenance Lockdown"; - req_access = list("ACCESS_MEDICAL"); - dir = 8; - pixel_x = 20 - }, -/obj/machinery/button/blast_door{ - id_tag = "med_pat_ward"; - name = "Infirmary Patient Ward Lockdown"; - pixel_y = -10; - req_access = list("ACCESS_MEDICAL"); - pixel_x = 20; - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "med_main_reg"; - name = "Infirmary Main Entrance Lockdown"; - pixel_y = -10; - req_access = list("ACCESS_MEDICAL"); - pixel_x = 28; - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "med_pub_hall"; - name = "Infirmary Public Hallway Lockdown"; - pixel_x = 36; - req_access = list("ACCESS_MEDICAL"); - pixel_y = -10; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"leB" = ( -/obj/structure/hygiene/toilet{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/material/utensil/fork/plastic{ - pixel_x = 10; - name = "prisoners fork" - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/prison) -"leD" = ( -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/machinery/computer/arcade/orion_trail, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/decal/cleanable/cobweb, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"leE" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft_stairwell) -"leG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/firstdeck/aft) -"leL" = ( -/obj/structure/hygiene/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/storage/mirror{ - pixel_x = 24; - pixel_y = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head/deck3) -"leM" = ( -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"leO" = ( -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_8_hatch"; - name = "Escape Pod Eight Hatch" - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod8/station) -"leU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"leW" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/largecrate, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"lfg" = ( -/obj/machinery/nuclearbomb/station{ - name = "ship self-destruct terminal" - }, -/turf/simulated/floor/selfestructgrid, -/area/security/nuke_storage) -"lfh" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor, -/obj/item/material/bell, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "bar<-cafe"; - name = "Bar Shutters" - }, -/obj/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/bar) -"lfm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"lfs" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"lfB" = ( -/obj/machinery/computer/modular/preset/dock{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/half, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"lfD" = ( -/obj/shuttle_landmark/specops/out, -/turf/space, -/area/space) -"lfF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/center) -"lfG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking_1{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"lfH" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"lfN" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"lfO" = ( -/obj/structure/table/steel, -/obj/machinery/light_switch{ - pixel_x = 24; - dir = 8 - }, -/obj/item/book/manual/engineering_hacking, -/obj/item/book/manual/engineering_guide, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"lfP" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/green/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 9 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"lfV" = ( -/obj/structure/hygiene/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/requests_console{ - department = "Hydroponics"; - departmentType = 4; - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"lfW" = ( -/obj/machinery/light, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/red/bordercorner2, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"lgm" = ( -/obj/structure/table/rack, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/maintenance, -/obj/random/medical, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"lgo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/office) -"lgy" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"lgz" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 1; - id_tag = "toxin_lab_access"; - name = "Toxin Lab Access Console"; - pixel_y = -20; - req_access = list("ACCESS_TOX_STORAGE") - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"lgB" = ( -/obj/structure/fuel_port{ - pixel_y = 32 - }, -/obj/structure/girder/displaced, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"lgE" = ( -/obj/structure/window/reinforced, -/obj/structure/table/standard, -/obj/item/device/integrated_circuit_printer, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/equipment) -"lgH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"lgN" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"lgS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"lgW" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1443; - id = "air_in"; - use_power = 1 - }, -/obj/machinery/sparker{ - id_tag = "Incinerator"; - pixel_y = -20 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/incinerator) -"lgZ" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod1/station) -"lhc" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"lhg" = ( -/obj/floor_decal/corner/green/bordercee, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"lhv" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/assembly/chargebay) -"lhF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"lhU" = ( -/obj/decal/cleanable/greenglow, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/crucian_hangar/start) -"lhY" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"lif" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"lih" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning/corner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"lim" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"lis" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 4; - internal_pressure_bound = 35000; - internal_pressure_bound_default = 35000 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d1starboard) -"liy" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/structure/table/rack, -/obj/item/stack/material/steel{ - amount = 30 - }, -/obj/item/stack/material/steel{ - amount = 30 - }, -/obj/item/stack/material/steel/fifty, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"liA" = ( -/obj/structure/hygiene/sink/kitchen{ - dir = 4; - pixel_x = -20 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"liJ" = ( -/turf/simulated/wall/r_wall/hull, -/area/chapel/main) -"liK" = ( -/obj/floor_decal/corner/yellow/three_quarters, -/obj/structure/filingcabinet{ - pixel_x = -10 - }, -/obj/structure/filingcabinet, -/obj/structure/filingcabinet{ - pixel_x = 10 - }, -/obj/item/folder/yellow{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/folder/yellow{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/folder/yellow{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/folder/yellow{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/machinery/button/blast_door{ - id_tag = "qm_office"; - name = "QM Shutter Control"; - pixel_x = 2; - pixel_y = -24; - req_access = list("ACCESS_CARGO"); - dir = 1 - }, -/obj/machinery/button/alternate/door{ - desc = "A remote control-switch for the office door."; - dir = 1; - id_tag = "qmdoor-supply"; - name = "supply door control"; - pixel_x = -9; - req_access = list("ACCESS_QUARTERMASTER"); - pixel_y = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"liM" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/ward) -"liR" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"liW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"liY" = ( -/obj/structure/table/glass, -/obj/machinery/keycard_auth/sierra, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"ljf" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - id_tag = "escape_pod_8_berth"; - name = "escape pod eight berth controller"; - pixel_x = -32; - pixel_y = 21; - tag_door = "escape_pod_8_berth_hatch"; - frequency = 1380 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"ljg" = ( -/obj/machinery/cryopod/robot{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"ljm" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/structure/bed/sofa/m/brown{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"ljn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"ljA" = ( -/obj/structure/bed/sofa/l/teal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"ljC" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"ljL" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 24 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/firstdeck) -"ljR" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d3starboard) -"ljT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/compactor) -"ljV" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"lkg" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/rnd/xenobiology/xenoflora) -"lkl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/center) -"lko" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/foreport) -"lkt" = ( -/obj/floor_decal/corner/green/half, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"lkA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/access_button/airlock_interior{ - frequency = 1380; - master_tag = "nuke_shuttle_dock_airlock"; - name = "interior access button"; - pixel_x = -32; - pixel_y = -24; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"lkB" = ( -/obj/machinery/power/apc/high{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"lkC" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "First Deck - Port Necelle"; - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"lkG" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"lkM" = ( -/obj/machinery/fusion_fuel_injector/mapped{ - initial_id_tag = "aux_fusion_plant"; - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) -"lkP" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/titanium, -/area/shuttle/petrov/scan) -"lkQ" = ( -/obj/paint_stripe/red, -/obj/paint/red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod3/station) -"lla" = ( -/obj/machinery/light, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/security/brig) -"llb" = ( -/obj/structure/table/standard, -/obj/machinery/reagentgrinder/juicer, -/obj/floor_decal/corner/green/half{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"lld" = ( -/obj/structure/closet/emcloset, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"llm" = ( -/obj/machinery/button/alternate/door/bolts{ - dir = 8; - id_tag = "cafe_private_room"; - name = "Unlock"; - pixel_x = 24; - pixel_y = 7; - req_access = list("ACCESS_BAR") - }, -/obj/structure/bed/chair/rounded/brown{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/floor_decal/carpet/blue{ - dir = 4 - }, -/obj/floor_decal/carpet/blue, -/obj/floor_decal/carpet/blue{ - dir = 1 - }, -/obj/floor_decal/carpet/blue{ - dir = 6 - }, -/obj/floor_decal/carpet/blue{ - dir = 5 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/cafe/upper) -"lln" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"llq" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"llr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/sign/warning/high_voltage{ - dir = 8; - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"lls" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"llw" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"llx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"llM" = ( -/obj/floor_decal/techfloor, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"llO" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/firstdeck/centralport) -"llP" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"llT" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"llX" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"lmb" = ( -/obj/structure/closet/secure_closet/guncabinet/sierra_armory/laser, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory) -"lmg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"lmj" = ( -/obj/machinery/stasis_cage, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"lmE" = ( -/obj/machinery/status_light{ - alert_temperature = 340; - id_tag = "BSDrive"; - name = "Bluespace Drive status indicator"; - pixel_x = 24 - }, -/turf/simulated/floor/bluegrid, -/area/engineering/bluespace/chamber) -"lmM" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"lmQ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 1 - }, -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/power) -"lmT" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"lnc" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/bed/sofa/l/brown{ - dir = 4 - }, -/turf/simulated/floor/wood/yew, -/area/crew_quarters/cafe) -"lnd" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/airless, -/area/shuttle/escape_pod/escape_pod3/station) -"lnj" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"lnp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"lnu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"lny" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d3starboard) -"lnC" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"lnE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge/upper) -"lnL" = ( -/obj/floor_decal/corner/purple/full, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/rd/cobed) -"lnN" = ( -/obj/machinery/door/airlock/vault/bolted{ - name = "AI Core Backup Access" - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "AICore"; - name = "AI Core Security Shutters" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/turret_protected/ai) -"lnO" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"lnR" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"lob" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"lod" = ( -/obj/structure/bed/sofa/r/black{ - dir = 8 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/sleep/cryo/south) -"loi" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"lok" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"lou" = ( -/obj/machinery/photocopier, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"loz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"loC" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/empty, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"loO" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/tcommsat/computer) -"loY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/window{ - autoset_access = 0; - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"lpg" = ( -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/office) -"lpk" = ( -/turf/simulated/floor/reinforced, -/area/maintenance/incinerator) -"lpB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/catwalk, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"lpG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - target_pressure = 15000 - }, -/obj/machinery/button/ignition{ - dir = 1; - id_tag = "engines-3"; - pixel_y = -34 - }, -/obj/machinery/button/blast_door{ - dir = 1; - id_tag = "cChamber3pV"; - name = "First Deck Starboard Chamber Vent"; - pixel_x = 8; - pixel_y = -24 - }, -/obj/machinery/button/blast_door{ - dir = 1; - id_tag = "d3portnacelle"; - name = "Combustion Chamber Blast Door Control"; - pixel_x = -8; - pixel_y = -24 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"lpI" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"lpQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"lpT" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"lpY" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"lpZ" = ( -/obj/floor_decal/corner/grey/diagonal, -/obj/structure/closet/secure_closet/explorer/medic, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/storage/box/nitrilegloves, -/obj/item/storage/box/masks, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration) -"lqa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftport) -"lqj" = ( -/obj/machinery/computer/guestpass{ - pixel_y = 29 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"lqu" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Cryogenics"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/thirddeck) -"lqA" = ( -/obj/fluid_mapped, -/turf/simulated/floor/reinforced, -/area/maintenance/waterstore) -"lqB" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"lqC" = ( -/obj/structure/bed, -/obj/item/clothing/mask/muzzle, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"lqE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id_tag = "hangar_hallway_shutters"; - name = "Hangar Deck Hallway Shutters"; - opacity = 0 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown3_4" - }, -/obj/machinery/door/airlock/civilian{ - name = "Visitors"; - id_tag = "hangar_hallway_doors"; - autoset_access = 0 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/fore) -"lqH" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"lqI" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/heads/office/iaa) -"lqX" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/window/boron_reinforced{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"lra" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"lrf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"lrl" = ( -/obj/machinery/light/spot, -/obj/floor_decal/corner/grey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"lrn" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"lru" = ( -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light/led/small{ - dir = 1 - }, -/obj/structure/shotgun_rack{ - pixel_y = 29 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/chemical_dispenser/bar_alc/full{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"lrw" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "fd_starboard_pump" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"lrC" = ( -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -9; - pixel_y = -21 - }, -/obj/floor_decal/corner/black/full, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"lrH" = ( -/obj/floor_decal/corner/green, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sauna) -"lrL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs/upper) -"lrR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/thirddeck) -"lrU" = ( -/obj/floor_decal/industrial/warning/full, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "firing_range_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 8; - id_tag = "firing_range"; - pixel_x = 20; - pixel_y = 4; - req_access = list(list("ACCESS_SECURITY","ACCESS_EXTERNAL")) - }, -/obj/machinery/airlock_sensor{ - id_tag = "firing_range_sensor"; - master_tag = "firing_range"; - pixel_x = 24; - pixel_y = -8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"lrV" = ( -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"lrY" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/computer/shuttle_control/lift/rndmaint, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"lsb" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/cmo/cobed) -"lsd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"lsj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "xenohight_airlock"; - name = "Xenobiology Access Console"; - pixel_y = 22; - req_access = list("ACCESS_XENOBIO") - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry) -"lsk" = ( -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"lsC" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/seconddeck) -"lsE" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/critical{ - name = "north bump"; - pixel_y = 21; - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/auxpower) -"lsL" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/tele_pad, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_teleport) -"lsM" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft_stairwell) -"lsV" = ( -/obj/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"ltl" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"ltp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"ltr" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/vacant/prototype/engine) -"lts" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"ltu" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"lty" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/random/closet, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"ltH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"ltN" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/machinery/camera/network/bridge_deck{ - dir = 1; - c_tag = "Bridge Deck - Aft Hallway - Turbolift" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"ltO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"ltP" = ( -/obj/machinery/recharge_station, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"ltU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/hygiene/sink{ - pixel_y = -12 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/laundry) -"lub" = ( -/obj/structure/bed/chair/padded/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"luc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"lui" = ( -/obj/structure/railing/mapped{ - dir = 1; - icon_state = "railing0-1"; - init_color = "#aa5f61"; - color = "#aa5f61" - }, -/turf/simulated/open, -/area/hallway/primary/firstdeck/central_stairwell) -"lun" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"luo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"lur" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - frequency = 1380; - id_tag = "centcom_shuttle_dock_outer"; - name = "Docking Port Airlock" - }, -/obj/machinery/shield_diffuser, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"luJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black/corner, -/obj/floor_decal/snow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/galley/freezer) -"luL" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/solar/bridge_port) -"luO" = ( -/obj/structure/bed/chair/wood/maple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"luT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"luU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"luY" = ( -/obj/machinery/power/apc/charon{ - name = "south bump"; - pixel_y = -24; - req_access = list(list("ACCESS_EXPLORER","ACCESS_ENGINEERING")) - }, -/obj/structure/cable/cyan, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/b_green/bordercorner2{ - dir = 6 - }, -/obj/structure/bed/chair/shuttle/green{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/seats_place) -"lva" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/airlock) -"lvf" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/tele_beacon, -/turf/simulated/floor/plating, -/area/exploration_shuttle/power) -"lvi" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"lvm" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/exploration/eva) -"lvn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/sign/warning/lethal_turrets{ - pixel_y = 32 - }, -/obj/structure/table/rack, -/obj/item/clothing/suit/space, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/fishbowl, -/obj/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/dark/monotile, -/area/turret_protected/ai_teleport) -"lvs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/medical/virology/atmos) -"lvu" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/obj/structure/closet/secure_closet/infotech_sierra, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"lvv" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 1 - }, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/power) -"lvy" = ( -/obj/structure/bed/chair/rounded/blue{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/mono, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"lvz" = ( -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"lvB" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d3starboard) -"lvD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"lvI" = ( -/obj/structure/bed/sofa/r/beige, -/obj/floor_decal/spline/fancy/black{ - dir = 5 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/cafe) -"lvN" = ( -/obj/structure/table/standard, -/obj/item/auto_cpr, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/ward) -"lwd" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/cryopod/robot{ - pixel_x = 31 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"lwg" = ( -/obj/machinery/button/blast_door{ - id_tag = "eng_lockdown_emg1"; - name = "Main Enterence Control"; - pixel_y = 28; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"lwj" = ( -/obj/paint_stripe/yellow, -/obj/paint/dark_gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/wall/r_titanium, -/area/guppy_hangar/start) -"lwm" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/item/stock_parts/circuitboard/batteryrack, -/obj/item/stock_parts/circuitboard/batteryrack, -/obj/item/stock_parts/circuitboard/smes, -/obj/item/stock_parts/smes_coil, -/obj/item/stock_parts/smes_coil, -/obj/item/stock_parts/smes_coil/super_capacity, -/obj/item/stock_parts/smes_coil/super_capacity, -/obj/item/stock_parts/smes_coil/super_io, -/obj/item/stock_parts/smes_coil/super_io, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech) -"lwn" = ( -/obj/machinery/atmospherics/unary/heater, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"lwp" = ( -/obj/structure/table/steel, -/obj/item/storage/bible, -/obj/item/circular_saw, -/obj/item/scalpel/basic, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"lwt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"lwu" = ( -/obj/structure/closet/crate, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/lightreplacer, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/glowsticks, -/obj/item/tape_roll, -/obj/item/stock_parts/smes_coil/weak, -/obj/item/storage/box/lights/led_neon, -/obj/floor_decal/spline/plain/purple{ - dir = 1 - }, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"lwD" = ( -/obj/floor_decal/techfloor/corner, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"lwJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"lwK" = ( -/obj/structure/sign/warning/airlock{ - dir = 1; - pixel_y = -32 - }, -/obj/machinery/recharge_station, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"lwU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"lwY" = ( -/obj/shuttle_landmark/escape_pod/start/pod10, -/obj/wallframe_spawn/reinforced/titanium, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/escape_pod10/station) -"lxb" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"lxd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/security{ - name = "Forensics" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/forensic) -"lxg" = ( -/obj/structure/bed/chair/office/teal{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"lxi" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/zpipe/down/cyan, -/turf/simulated/open, -/area/space) -"lxj" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/infirmreception) -"lxl" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown2_2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/fore) -"lxq" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "prototype_exhaust" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"lxz" = ( -/obj/machinery/chem_master, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/vacant/infirmary) -"lxJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/walnut, -/area/vacant/gambling) -"lxK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"lxQ" = ( -/obj/machinery/computer/station_alert/security, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"lxY" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "xenobio1_vent"; - name = "Chamber Vent" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"lxZ" = ( -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/random/tech_supply{ - pixel_y = -6 - }, -/obj/random/tech_supply{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/random/tech_supply{ - pixel_y = -6; - pixel_x = 8 - }, -/obj/random/tool{ - pixel_y = 5; - pixel_x = 10 - }, -/obj/random/tool{ - pixel_y = -2; - pixel_x = -3 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"lyk" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/bed/sofa/r/brown{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/wood/yew, -/area/crew_quarters/cafe) -"lyr" = ( -/obj/machinery/telecomms/server/presets/supply, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"lyu" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/infirmreception) -"lyw" = ( -/obj/machinery/shield_diffuser, -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_9_berth_hatch"; - name = "Escape Pod Nine" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralport) -"lyE" = ( -/obj/floor_decal/industrial/warning, -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"lyK" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/structure/bed/chair/padded/blue, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"lyO" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/storage/medical_lolli_jar{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_main_reg"; - name = "Infirmary Entry Shutters" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/infirmreception) -"lyR" = ( -/obj/machinery/camera/ai/core{ - c_tag = "AI Core - Fore Starboard Access"; - dir = 8 - }, -/obj/item/device/radio/intercom/locked/ai_private{ - pixel_y = 22 - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"lyS" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d1starboard) -"lyU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"lyY" = ( -/obj/floor_decal/carpet/purple{ - dir = 4 - }, -/obj/floor_decal/carpet/purple, -/obj/floor_decal/carpet/purple{ - dir = 6 - }, -/obj/structure/bookcase/manuals, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/captain/beach) -"lzi" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level2) -"lzj" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"lzk" = ( -/obj/machinery/door/window/brigdoor/westleft{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/westright{ - dir = 2; - autoset_access = 0 - }, -/obj/machinery/door/blast/shutters/open{ - id_tag = "security_permabrig_lobby_shutters" - }, -/obj/paint_stripe/red, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf/steel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/sierra/brig) -"lzz" = ( -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"lzC" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"lzD" = ( -/obj/machinery/hologram/holopad{ - pixel_x = 16; - pixel_y = -16 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe) -"lzG" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"lzH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/civilian{ - dir = 4; - name = "Canister Storage" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/airlock_canisters) -"lzL" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/structure/bed/sofa/r/brown{ - dir = 4 - }, -/turf/simulated/floor/wood/yew, -/area/crew_quarters/cafe) -"lzO" = ( -/obj/structure/closet/secure_closet/crew/research, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/white/monotile, -/area/maintenance/fourthdeck/aft) -"lzS" = ( -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"lzW" = ( -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/item/stool/padded/red, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"lAe" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins/storage) -"lAk" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/camera/network/command{ - c_tag = "Command - Port Hallway Entry"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"lAs" = ( -/obj/structure/table/steel, -/obj/item/reagent_containers/spray/pepper, -/obj/item/reagent_containers/spray/pepper, -/obj/item/device/radio/electropack, -/obj/item/device/assembly/signaler, -/obj/item/screwdriver, -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/corner/red/bordercorner, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"lAv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/techfloor/orange, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/table/rack, -/obj/random/tech_supply, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"lAy" = ( -/obj/machinery/button/blast_door{ - dir = 1; - id_tag = "library_space_lower"; - name = "Space Shields"; - pixel_x = -24; - pixel_y = -21 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/rounded/beige{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"lAE" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/thirddeck/port) -"lAM" = ( -/obj/random/drinkbottle, -/obj/structure/closet/medical_wall/filled{ - pixel_y = -24 - }, -/obj/floor_decal/corner/black/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/command/bsa) -"lAS" = ( -/obj/machinery/atmospherics/unary/tank/air, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmospherics - East" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"lAT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/purple/bordercorner2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Aft Hallway"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"lAU" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/port) -"lAZ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/substation/thirddeck) -"lBc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"lBp" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe) -"lBq" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/forestarboard) -"lBs" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"lBy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"lBz" = ( -/obj/structure/closet/jcloset/sierra, -/obj/floor_decal/corner/purple{ - pixel_y = 1 - }, -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"lBJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"lBS" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/bed/sofa/m/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"lBW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"lCb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"lCc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"lCk" = ( -/obj/machinery/door/window/brigdoor/southright{ - id = "Cell 1"; - name = "Cell one"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id_tag = "security_permabrig_fitst_cell_shutters" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/sierra/brig) -"lCm" = ( -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"lCn" = ( -/obj/floor_decal/corner/darkblue/mono, -/obj/machinery/vending/cola{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"lCC" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"lCH" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"lCJ" = ( -/obj/floor_decal/industrial/warning, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"lCK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"lCN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"lCR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1; - target_pressure = 15000 - }, -/obj/machinery/button/ignition{ - id_tag = "engines-4"; - pixel_y = 34 - }, -/obj/machinery/button/blast_door{ - id_tag = "d4portnacelle"; - name = "Combustion Chamber Blast Door Control"; - pixel_x = -8; - pixel_y = 24 - }, -/obj/machinery/button/blast_door{ - id_tag = "cChamber4pV"; - name = "First Deck Port Chamber Vent"; - pixel_x = 8; - pixel_y = 24 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"lCS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/padded/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"lCT" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#6a97b0" - }, -/area/quartermaster/hangar/upper) -"lCV" = ( -/obj/random/junk, -/turf/simulated/floor/wood/walnut, -/area/maintenance/firstdeck/aftstarboard) -"lCZ" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/open, -/area/space) -"lDe" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge/upper) -"lDl" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - frequency = 1441; - id = "n2o_in"; - pixel_y = 1; - use_power = 1 - }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos) -"lDK" = ( -/obj/structure/closet/secure_closet/medical_sierrasenior, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"lDM" = ( -/obj/floor_decal/industrial/outline/blue, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"lDQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/table/rack, -/obj/item/stack/material/plasteel{ - amount = 20 - }, -/obj/item/stack/material/plasteel{ - amount = 20 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"lDR" = ( -/obj/machinery/ai_status_display, -/obj/paint/black, -/obj/paint_stripe/turquoise, -/turf/simulated/wall/r_wall/prepainted, -/area/turret_protected/ai_teleport) -"lDS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"lDU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/machinery/button/blast_door{ - id_tag = "petrovcell2"; - name = "Test Chamber Vent"; - pixel_x = -26; - pixel_y = -26 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"lDW" = ( -/obj/floor_decal/corner/purple{ - pixel_y = 1 - }, -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cart{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"lDX" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"lDZ" = ( -/obj/machinery/door/airlock/research{ - name = "Isolation Chambers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"lEe" = ( -/obj/floor_decal/corner/purple/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/heads/office/rd) -"lEq" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 8 - }, -/obj/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"lEz" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/foreport) -"lEA" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"lEK" = ( -/obj/structure/morgue{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/obj/structure/closet/walllocker{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"lEP" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/airlock) -"lEQ" = ( -/obj/random/obstruction, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"lEY" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"lEZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"lFa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"lFe" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/item/trash/sosjerky, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"lFg" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"lFi" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"lFj" = ( -/obj/floor_decal/industrial/traffic{ - detail_color = "#a2819e"; - color = "#a2819e" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/office) -"lFk" = ( -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"lFn" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"lFA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"lFH" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/wallframe_spawn/reinforced/no_grille, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"lFI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/gambling) -"lFN" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#b19664" - }, -/area/quartermaster/hangar/upper) -"lFT" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/lime/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/cola{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"lFW" = ( -/obj/structure/table/rack/wooden, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"lFZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"lGb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/central_stairwell) -"lGd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"lGh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"lGm" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"lGq" = ( -/obj/catwalk_plated/white, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/vacant/infirmary) -"lGr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - target_pressure = 3500 - }, -/obj/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"lGA" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/civilian{ - dir = 8; - name = "Cryo Storage" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/sleep/cryo/firstdeck) -"lGG" = ( -/obj/floor_decal/corner/black/three_quarters, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/corner/paleblue/bordercorner2, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/machinery/vending/coffee{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"lGJ" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals_central6, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"lGO" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - secured_wires = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/opscheck) -"lGQ" = ( -/obj/machinery/floodlight{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"lGY" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"lGZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"lHf" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"lHj" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/door/window/southleft{ - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - id_tag = "xenobioa3"; - name = "Containment Blast Doors" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level2) -"lHq" = ( -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"lHs" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"lHt" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"lHM" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"lHU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"lHV" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/green/border{ - dir = 9 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 10 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/closet/crate/secure/biohazard, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"lIc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"lIf" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"lIk" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/spray/sterilizine, -/obj/item/reagent_containers/spray/luminol, -/obj/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/floor_decal/corner/blue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/forensic/lab) -"lIv" = ( -/obj/machinery/computer/rdconsole/robotics{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"lIy" = ( -/obj/structure/table/steel, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"lIQ" = ( -/obj/machinery/shipsensors, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/reinforced, -/area/exploration_shuttle/seats_place) -"lIY" = ( -/obj/item/bedsheet/green, -/obj/structure/bed/padded, -/turf/simulated/floor/wood/walnut, -/area/vacant/cargo) -"lJb" = ( -/obj/structure/filingcabinet/wallcabinet{ - pixel_x = 30 - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/black/border{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation/second) -"lJi" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"lJm" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/space, -/area/space) -"lJo" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"lJp" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 4; - id_tag = "escape_pod_4_pump" - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/grey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod4/station) -"lJq" = ( -/obj/machinery/atmospherics/unary/tank{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"lJv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/closet/emcloset, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 5 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"lJx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/space) -"lJD" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"lJF" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"lJJ" = ( -/obj/machinery/hologram/holopad/longrange, -/obj/overmap/visitable/ship/sierra, -/obj/floor_decal/corner/blue/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"lJL" = ( -/obj/machinery/mech_recharger, -/mob/living/exosuit/premade/light/exploration, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/eva) -"lJN" = ( -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_crit2"; - name = "Infirmary Staging Shutters" - }, -/obj/wallframe_spawn/reinforced/polarized/full{ - id = "infimary_staging" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/plating, -/area/medical/maintenance_equipstorage) -"lJY" = ( -/obj/machinery/floodlight{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/foreport) -"lKi" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/obj/machinery/rotating_alarm/security_alarm{ - pixel_y = 13 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"lKo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner, -/obj/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"lKq" = ( -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/open, -/area/space) -"lKv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"lKy" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"lKz" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"lKC" = ( -/obj/structure/table/gamblingtable, -/obj/item/deck/cards, -/turf/simulated/floor/carpet, -/area/vacant/gambling) -"lKH" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftstarboard) -"lKL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"lKQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"lKS" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/obj/machinery/atm{ - pixel_y = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"lKZ" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/closet/secure_closet/captains/sierra, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"lLc" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - dir = 4; - id_tag = "comissary_shutters"; - name = "Commissary Shutters" - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"lLf" = ( -/obj/structure/bed/chair/pew, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"lLh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lightgrey/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"lLr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"lLu" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"lLv" = ( -/obj/structure/table/woodentable/walnut, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border, -/obj/item/device/flashlight/lamp/lava/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"lLE" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/captain/secret_room/level_one) -"lLH" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/tool, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"lLL" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - id = "CO23p_in"; - injecting = 1; - use_power = 1 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d1starboard) -"lLW" = ( -/obj/structure/bed/chair/office/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"lLY" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"lLZ" = ( -/obj/floor_decal/industrial/warning, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"lMi" = ( -/obj/structure/bed/chair/office/comfy/blue{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/hop/cobed) -"lMl" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/machinery/meter, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"lMu" = ( -/obj/machinery/door/airlock/civilian{ - dir = 4; - name = "Observatory" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/dungeon_master_lounge) -"lMB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"lME" = ( -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/dirt, -/mob/living/simple_animal/passive/mouse, -/turf/simulated/floor/wood{ - icon_state = "wood_broken3" - }, -/area/vacant/sauna) -"lMF" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d3port) -"lMG" = ( -/obj/machinery/computer/modular/preset/engineering{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"lMP" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Aft Hallway Heads" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"lMQ" = ( -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 8; - pixel_x = 22 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"lMR" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/infirmreception) -"lMW" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory) -"lMX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/structure/sign/warning/internals_required{ - dir = 4; - pixel_x = -32 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"lMY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/valve/shutoff/supply{ - name = "supply valve to Petrov" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"lNb" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/item/folder/nt, -/obj/item/folder/nt, -/obj/item/folder/nt, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"lNg" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/bluespace/chamber) -"lNk" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/disposal, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"lNl" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"lNm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"lNn" = ( -/obj/structure/sign/nanotrasen{ - dir = 4 - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/aftport) -"lNv" = ( -/obj/floor_decal/industrial/traffic{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"lNI" = ( -/obj/structure/closet/secure_closet/personal/empty, -/obj/floor_decal/corner/green/border{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/sauna) -"lNM" = ( -/obj/landmark{ - name = "carpspawn" - }, -/obj/structure/catwalk, -/turf/simulated/open, -/area/space) -"lNS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"lNU" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/crystal, -/area/crew_quarters/adherent) -"lNX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"lNZ" = ( -/obj/structure/railing/mapped, -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"lOa" = ( -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 5 - }, -/obj/structure/closet/secure_closet/hop2, -/obj/item/book/manual/nt_sop, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hop/cobed) -"lOd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"lOi" = ( -/obj/structure/table/woodentable, -/obj/item/trash/sosjerky, -/obj/decal/cleanable/dirt, -/obj/random/trash, -/turf/simulated/floor/wood/walnut, -/area/vacant/sauna) -"lOn" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/mining/brace{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition/storage) -"lOo" = ( -/obj/floor_decal/corner/red/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/papershredder, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"lOp" = ( -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black/corner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/bar/cobed) -"lOr" = ( -/obj/structure/bed/chair/padded/black{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"lOA" = ( -/obj/machinery/atmospherics/unary/freezer, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"lOI" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/head_big) -"lOO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2, -/turf/simulated/floor/tiled, -/area/storage/primary) -"lOT" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"lOU" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"lPa" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"lPd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/firstdeck) -"lPf" = ( -/obj/landmark{ - name = "carpspawn" - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/space) -"lPg" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/thirddeck/starboard) -"lPl" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/center) -"lPo" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"lPp" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/closet/secure_closet/cabinet/forensics{ - name = "forensics technician's cabinet" - }, -/obj/item/storage/briefcase/crimekit{ - pixel_y = 10 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/forensic/lab) -"lPz" = ( -/obj/structure/table/glass, -/obj/item/device/toner, -/obj/item/device/toner, -/obj/item/device/toner, -/obj/item/device/toner, -/obj/item/device/toner, -/obj/item/device/taperecorder, -/obj/item/device/taperecorder, -/obj/item/device/tape, -/obj/item/pen/multi, -/obj/item/pen/multi, -/obj/item/paper_bin, -/obj/item/device/tape, -/obj/item/device/tape, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/iaa/high_sec) -"lPF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hydroponics) -"lPG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Central Hallway" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"lPI" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"lPV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"lQb" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/fourthdeck/aft) -"lQj" = ( -/obj/structure/table/standard, -/obj/item/folder/nt, -/obj/item/device/science_tool, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"lQt" = ( -/obj/structure/table/standard, -/obj/item/roller_bed, -/obj/item/roller_bed, -/obj/item/roller_bed, -/obj/item/roller_bed, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/ward) -"lQv" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Central Hallway - Starboard"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"lQE" = ( -/obj/machinery/button/blast_door{ - id_tag = "heads_meeting"; - name = "Conference Room Shutters Control"; - pixel_y = 28; - pixel_x = 1 - }, -/obj/machinery/button/windowtint{ - id = "meeting_windows"; - pixel_x = 9; - pixel_y = 28 - }, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = 28 - }, -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"lQF" = ( -/obj/floor_decal/techfloor, -/obj/machinery/camera/network/engine{ - c_tag = "Engine - Aft Port"; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"lQM" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"lQP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"lQX" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/eva) -"lQY" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"lRm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"lRq" = ( -/turf/simulated/wall/prepainted, -/area/hydroponics/third_deck_storage) -"lRx" = ( -/obj/structure/closet/crate, -/obj/random/medical/lite, -/obj/random/medical/lite, -/obj/random/smokes, -/obj/random/tank, -/obj/random/tool, -/obj/random/tool, -/obj/random/tech_supply, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/firstdeck/aftstarboard) -"lRN" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/interrogation/second) -"lRZ" = ( -/turf/simulated/wall/r_wall/hull, -/area/command/bsa) -"lSb" = ( -/obj/machinery/access_button/airlock_interior{ - master_tag = "ai_starboard"; - name = "interior access button"; - pixel_y = 28; - req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"lSc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"lSi" = ( -/obj/structure/table/standard, -/obj/floor_decal/corner/yellow/three_quarters, -/obj/item/device/megaphone, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"lSl" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - opacity = 0; - id_tag = "lobb_hall_shutt" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"lSq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/grey{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"lSt" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"lSx" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/xenobiology/xenoflora) -"lSK" = ( -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"lSZ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"lTj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"lTx" = ( -/obj/machinery/suit_storage_unit/medical/alt, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"lTE" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/space) -"lTI" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"lTP" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins/storage) -"lTT" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/machinery/hologram/holopad{ - pixel_y = 16; - pixel_x = 16 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"lTY" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"lTZ" = ( -/turf/simulated/wall/prepainted, -/area/chapel/mortuary) -"lUa" = ( -/obj/machinery/door/window{ - autoset_access = 0; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"lUd" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/item/tableflag, -/obj/vehicle/train/cargo/trolley, -/obj/floor_decal/spline/plain/brown, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"lUe" = ( -/obj/structure/bed/sofa/m/brown{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/actor/stage) -"lUi" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/westleft{ - id_tag = "iaaright"; - req_access = newlist(); - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/forensic/lab) -"lUl" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/simulated/open, -/area/space) -"lUy" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"lUz" = ( -/obj/structure/table/rack, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/freezer, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/obj/item/storage/box/syringes, -/obj/item/storage/box/syringes, -/obj/item/storage/box/latexgloves, -/obj/item/storage/box/nitrilegloves, -/obj/item/storage/box/beakers, -/obj/machinery/light, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"lUI" = ( -/obj/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"lUK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"lUW" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"lVe" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"lVm" = ( -/obj/floor_decal/corner/green/half, -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/industrial/warning, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"lVr" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"lVC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/mime, -/turf/simulated/floor/wood/walnut, -/area/vacant/gambling) -"lVJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"lVP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/red/border, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"lVT" = ( -/obj/floor_decal/carpet/blue2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/hop/cobed) -"lWc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/red/bordercorner2, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"lWe" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "charon_cargo_in"; - name = "charon external conveyor belt" - }, -/turf/simulated/floor/reinforced, -/area/exploration_shuttle/airlock) -"lWg" = ( -/obj/structure/bed/chair/comfy/purple{ - dir = 8 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/sleep/bunk) -"lWr" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 8 - }, -/obj/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"lWs" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod3/station) -"lWt" = ( -/turf/simulated/wall/r_wall/hull, -/area/turret_protected/ai_teleport) -"lWu" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"lWC" = ( -/obj/floor_decal/corner/green/half{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 6 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"lWD" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"lWE" = ( -/obj/floor_decal/corner/red/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/fore) -"lWI" = ( -/obj/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"lWK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"lWO" = ( -/obj/structure/table/standard, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/reagent_dispensers/acid{ - density = 0; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/development) -"lWR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"lXc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"lXk" = ( -/obj/machinery/access_button/airlock_exterior{ - master_tag = "prototype_controller"; - pixel_x = 23; - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/prototype/engine) -"lXp" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"lXx" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "hangar_checkpoint_shutters"; - name = "Hangar Deck Checkpoint Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/security/sierra/dockcheck) -"lXy" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/foreport) -"lXN" = ( -/turf/simulated/wall/prepainted, -/area/storage/airlock_canisters) -"lXQ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"lXY" = ( -/obj/structure/table/steel_reinforced, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for shutters."; - id_tag = "hangar_ts_shutters"; - name = "Secondary Hallway Shutters"; - pixel_x = 5; - pixel_y = 1; - req_access = list("ACCESS_SECURITY") - }, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for shutters."; - id_tag = "hangar_hallway_shutters"; - name = "Hallway Checkpoint Shutters"; - pixel_x = -5; - pixel_y = -3; - req_access = list("ACCESS_SECURITY") - }, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for shutters."; - id_tag = "hangar_checkpoint_shutters"; - name = "Checkpoint Window Shutters"; - pixel_x = -5; - pixel_y = 7; - req_access = list("ACCESS_SECURITY") - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"lYg" = ( -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/suits) -"lYk" = ( -/obj/floor_decal/borderfloor, -/obj/machinery/light, -/obj/floor_decal/corner/black/border, -/obj/floor_decal/corner/black/border, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation/second) -"lYm" = ( -/obj/structure/bed/chair/wheelchair, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"lYo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"lYw" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"lYx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"lYy" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/bluespace/chamber) -"lYA" = ( -/obj/structure/reagent_dispensers/coolanttank, -/turf/simulated/floor/plating, -/area/shuttle/petrov/test_room) -"lYK" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/door/window/southleft{ - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "xenobio2"; - name = "Containment Blast Doors" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"lYM" = ( -/obj/machinery/suit_storage_unit/security/alt, -/obj/structure/railing/mapped, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/suits) -"lYP" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Central Hallway - Fore"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"lZa" = ( -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/green, -/obj/floor_decal/corner/red/bordercee{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"lZe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod3/station) -"lZj" = ( -/turf/simulated/open, -/area/hallway/primary/bridgedeck/central_stairwell) -"lZm" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 4 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 4; - id_tag = "skipjack_shuttle_pump" - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/grey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod3/station) -"lZF" = ( -/obj/decal/cleanable/dirt, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"lZJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/engineering{ - name = "Fusion Testing Facility"; - secured_wires = 1 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/prototype/control) -"lZQ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/civilian{ - locked = 1 - }, -/obj/item/taperoll/engineering/applied, -/obj/decal/cleanable/blood/tracks/footprints, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/foreport) -"lZU" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/prepainted, -/area/security/sierra/interrogation/second) -"lZV" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/item/paper/sierra/engineering_SMairlock, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"lZZ" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/fourthdeck/aft) -"mac" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"mae" = ( -/obj/floor_decal/corner/black/border{ - dir = 4 - }, -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"mah" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/lounge) -"mal" = ( -/obj/structure/closet/crate/plastic, -/obj/machinery/camera/network/hangar{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"maw" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/deckofficer) -"maz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"maC" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/power) -"maQ" = ( -/obj/floor_decal/industrial/warning/fulltile, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"maW" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"maZ" = ( -/obj/structure/table/woodentable, -/obj/item/storage/secure/briefcase, -/obj/item/device/taperecorder, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"mba" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Gravitational Generator Access" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"mbd" = ( -/turf/simulated/wall/prepainted, -/area/hallway/infirmary) -"mbf" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "bar<-cafe"; - name = "Bar Shutters" - }, -/obj/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/bar) -"mbg" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_pub_hall"; - name = "Infirmary Entry Shutters" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/hallway/infirmary) -"mbh" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/regular/open{ - id_tag = "xenobioa1"; - name = "Containment Blast Doors" - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level2) -"mbk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance{ - name = "Tech Storage" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/tech) -"mbl" = ( -/obj/machinery/atmospherics/unary/engine, -/obj/structure/sign/warning/hot_exhaust{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/guppy_hangar/start) -"mbq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"mbu" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"mby" = ( -/obj/item/modular_computer/telescreen/preset/generic{ - pixel_y = 26 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"mbH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"mbT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"mbV" = ( -/obj/structure/bed/chair/armchair/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa/high_sec) -"mcp" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 8 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 8; - id_tag = "escape_pod_1_pump" - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/grey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod1/station) -"mcq" = ( -/obj/floor_decal/corner/green/half{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"mcr" = ( -/obj/machinery/atmospherics/binary/pump/on{ - target_pressure = 200 - }, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"mcw" = ( -/obj/machinery/door/airlock/engineering{ - name = "Aft Port Solar Access"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar) -"mcz" = ( -/obj/machinery/access_button/airlock_interior{ - master_tag = "fd_starboard"; - name = "interior access button"; - pixel_x = -24; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/machinery/door/airlock/external/glass/bolted/cycling{ - id_tag = "fd_starboard_inner"; - name = "First Deck Port Airlock" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"mcA" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"mcD" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"mcI" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/industrial/danger, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"mcN" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/camera/network/command{ - c_tag = "Command - EVA"; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"mcO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"mcP" = ( -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"mcU" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/table/rack, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1; - icon_state = "railing0-1" - }, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/random/tank, -/obj/random/tank, -/obj/random/tank, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"mde" = ( -/obj/machinery/computer/air_control{ - dir = 8; - name = "Atmospheric Sensors"; - sensor_name = "Charon Out"; - sensor_tag = "calypso_out" - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/paleblue/bordercorner2, -/obj/structure/window/reinforced/polarized, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cockpit) -"mdn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"mdp" = ( -/obj/structure/table/reinforced, -/obj/machinery/fabricator/micro/bartender{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/storage/box/beakers, -/obj/floor_decal/corner/beige/three_quarters{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"mdr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"mdA" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"mdB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"mdD" = ( -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"mdE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"mdM" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"mdZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"meb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"med" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/servers) -"meg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"men" = ( -/obj/machinery/constructable_frame/machine_frame, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/abandoned_hydroponics) -"mep" = ( -/obj/floor_decal/corner/grey{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"mes" = ( -/obj/structure/table/steel, -/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/spidercube, -/obj/item/reagent_containers/food/snacks/monkeycube/spidercube, -/obj/item/reagent_containers/food/snacks/monkeycube/wrapped/spidercube, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/reagent_containers/glass/beaker/vial{ - name = "vial (mutational toxin)" - }, -/obj/item/reagent_containers/glass/beaker/vial, -/obj/item/scalpel/basic{ - pixel_y = 12 - }, -/obj/spider/stickyweb, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level1) -"meu" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Conference Room Maintenance" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/bridge/meeting_room) -"mez" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"meC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"meE" = ( -/obj/structure/bed/sofa/r/teal{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"meG" = ( -/obj/structure/filingcabinet, -/obj/item/folder, -/obj/item/folder, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"meH" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/alphadeck) -"meJ" = ( -/turf/simulated/wall/r_wall/hull, -/area/teleporter) -"meN" = ( -/obj/floor_decal/corner/black/mono, -/obj/machinery/door/airlock/glass/civilian{ - dir = 4; - name = "Commissary Counter" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"meO" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/structure/table/woodentable/walnut, -/obj/machinery/light/spot, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"meS" = ( -/obj/structure/hygiene/sink/kitchen{ - pixel_y = 24 - }, -/obj/floor_decal/corner/grey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"meU" = ( -/obj/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"meX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"meY" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/obj/machinery/status_light{ - id_tag = "ReacEng1"; - name = "Deck Four Starboard status indicator"; - pixel_y = -32 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"meZ" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/computer/modular/preset/medical, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai) -"mfl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"mfq" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/firstdeck) -"mfr" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"mfs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"mft" = ( -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/sauna) -"mfv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"mfx" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - sort_type = "Research Equipment"; - name = "Research Equipment" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"mfA" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/lounge/upper) -"mfF" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/docking) -"mfI" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod1/station) -"mfJ" = ( -/obj/structure/cart{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"mfK" = ( -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Atmospherics Subgrid"; - name_tag = "Atmospherics Subgrid" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/machinery/button/blast_door{ - dir = 4; - id_tag = "eng_lockdown_emg3"; - name = "Emergency Exit Control"; - pixel_x = -24; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/structure/catwalk, -/obj/structure/cable/cyan, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"mfL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"mfM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"mfP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"mfZ" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"mgc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"mge" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_upload) -"mgg" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/hangar_atmos) -"mgx" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/head/deck3) -"mgy" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"mgz" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"mgE" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"mgK" = ( -/obj/structure/largecrate, -/obj/random/drinkbottle, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"mgL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"mgN" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"mgW" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/storage, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"mgX" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"mhc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"mhi" = ( -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/gym) -"mhn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/navbeacon/sierra/TD_port, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"mho" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/prepainted, -/area/security/sierra/evidence) -"mhx" = ( -/obj/machinery/suit_storage_unit/science, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/brown/border{ - dir = 5 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"mhF" = ( -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/command/bsa) -"mhK" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/hangar_atmos) -"mhL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/flasher{ - id_tag = "security_perm_chamber_flash"; - name = "Floor mounted flash" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/prison) -"mhN" = ( -/obj/machinery/constructable_frame/machine_frame, -/turf/simulated/floor/wood/yew, -/area/crew_quarters/heads/office/ce/cobed) -"mhO" = ( -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation/second) -"mhS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"mhV" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"mib" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/reagent_containers/food/drinks/cans/speer, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"mih" = ( -/obj/structure/hygiene/shower, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/gym) -"mik" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/machinery/meter, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"mip" = ( -/obj/machinery/door/window, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/obj/floor_decal/snow, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/galley/freezer) -"mit" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/corner/green/bordercorner, -/obj/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"miw" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"miC" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 8 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 8; - id_tag = "escape_pod_2_pump" - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/grey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod2/station) -"miI" = ( -/obj/structure/ladder/up, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"miL" = ( -/obj/floor_decal/corner/darkblue/mono, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"miM" = ( -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"miS" = ( -/obj/machinery/computer/modular/preset/engineering{ - dir = 4 - }, -/obj/machinery/status_light{ - alert_temperature = 340; - id_tag = "BSDrive"; - name = "Bluespace Drive status indicator"; - pixel_x = -24 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"miW" = ( -/obj/structure/table/woodentable/ebony, -/obj/item/modular_computer/laptop/preset/custom_loadout/standard{ - dir = 4 - }, -/obj/structure/sign/poster/nyc/zeng_hu_pharmaceuticals{ - pixel_x = -32 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"miY" = ( -/obj/floor_decal/corner/paleblue, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/ward) -"mjf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"mjk" = ( -/obj/structure/closet/crate/secure/biohazard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/eva) -"mjB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/corner/purple/bordercorner, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"mjE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"mjK" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"mjM" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/canister) -"mjY" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"mjZ" = ( -/obj/machinery/door/airlock/command{ - id_tag = "cmodoor"; - name = "Chief Medical Officer"; - secured_wires = 1; - stripe_color = "#00e1ff"; - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/heads/office/cmo) -"mkc" = ( -/obj/structure/curtain/open/shower, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"mkh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"mkj" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - id_tag = "xenobio3"; - name = "Containment Blast Doors" - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level1) -"mkq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/substation/bridgedeck) -"mkt" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/ship_map, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"mku" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"mkE" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/shieldwallgen, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"mkQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"mkS" = ( -/turf/simulated/floor/tiled/white, -/area/vacant/infirmary) -"mli" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/handrail, -/turf/simulated/floor/airless, -/area/space) -"mlr" = ( -/obj/floor_decal/carpet/blue2, -/obj/floor_decal/carpet/blue2{ - dir = 4 - }, -/obj/floor_decal/carpet/blue2{ - dir = 6 - }, -/obj/structure/table/standard, -/obj/item/modular_computer/tablet/lease/preset/command, -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/hop/cobed) -"mls" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"mlu" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"mlH" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/random/storage, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"mlT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"mmh" = ( -/obj/structure/sign/warning/fire{ - dir = 1; - pixel_y = -40 - }, -/obj/machinery/light/spot, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"mmm" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"mmo" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/solar/starboard) -"mmt" = ( -/obj/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/steel_grid, -/area/security/range) -"mmx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"mmy" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/green/border{ - dir = 10 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 9 - }, -/obj/machinery/recharge_station, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "virology_access"; - name = "Virology Lab Access Console"; - req_access = list("ACCESS_VIRO"); - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology - Enter"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"mmH" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/lime/border{ - dir = 5 - }, -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"mmJ" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"mmK" = ( -/obj/floor_decal/corner/black{ - dir = 10 - }, -/obj/floor_decal/corner/paleblue/border, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"mmQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"mmR" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/thruster/d1starboard) -"mmZ" = ( -/obj/structure/table/woodentable/ebony, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/synthesized_instrument/violin, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"mnb" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/maintenance{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/forestarboard) -"mnk" = ( -/obj/floor_decal/spline/fancy/wood/corner, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"mnp" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_north = 2; - tag_south = 1; - tag_west = 8 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"mnv" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/hologram/holopad{ - pixel_x = 16 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/exploration/eva) -"mnx" = ( -/obj/structure/lattice, -/obj/floor_decal/industrial/traffic{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"mnz" = ( -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/obj/floor_decal/corner/green/three_quarters{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"mnH" = ( -/obj/floor_decal/spline/fancy/wood/corner, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"mnN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/civilian{ - locked = 1; - dir = 4 - }, -/obj/item/taperoll/engineering/applied, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"mnO" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/machinery/portable_atmospherics/reagent_sublimator/sauna, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/item/device/flashlight/lamp/lava/orange{ - pixel_y = 15; - pixel_x = -3 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sauna) -"mnP" = ( -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation/second) -"mnV" = ( -/obj/catwalk_plated/dark, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/center) -"mnW" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"moe" = ( -/obj/structure/sign/warning/airlock{ - dir = 8 - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/solar/bridge_starboard) -"moh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"mop" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/lino, -/area/command/chief_steward) -"moz" = ( -/obj/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"moA" = ( -/obj/structure/railing/mapped, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"moM" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/rotating_alarm/security_alarm{ - pixel_y = 13 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"moO" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/armory) -"moY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head) -"mpe" = ( -/turf/simulated/wall/r_wall/hull, -/area/engineering/atmos/storage) -"mpg" = ( -/obj/floor_decal/corner/black/three_quarters{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/corner/paleblue/bordercorner2, -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"mpq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"mpw" = ( -/obj/structure/table/rack, -/obj/item/screwdriver, -/obj/item/crowbar, -/obj/item/device/binoculars, -/obj/floor_decal/corner/red/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/recharger/wallcharger{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"mpx" = ( -/obj/machinery/door/blast/shutters{ - dir = 4; - id_tag = "hangar_atmos_storage"; - name = "Storage Shutters" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar_atmos) -"mpB" = ( -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_cyborg_station) -"mpE" = ( -/obj/machinery/vitals_monitor, -/turf/simulated/floor/plating, -/area/vacant/infirmary) -"mpK" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/cobed) -"mpS" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"mpT" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/spline/plain/brown{ - dir = 8 - }, -/obj/structure/displaycase, -/obj/item/gun/projectile/revolver/capgun, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/actor) -"mpU" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"mpV" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"mpY" = ( -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"mqc" = ( -/obj/floor_decal/corner/red, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"mqd" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"mqe" = ( -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"mqi" = ( -/obj/item/device/radio/intercom/custom{ - pixel_y = 18; - pixel_x = -6 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/turret_protected/ai) -"mqj" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/center) -"mqs" = ( -/obj/machinery/washing_machine, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/prison) -"mqx" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/cryopod{ - dir = 2 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"mqO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"mqP" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - frequency = 1441; - id = "h2_in"; - pixel_y = 1; - use_power = 1 - }, -/turf/simulated/floor/reinforced/hydrogen, -/area/engineering/atmos) -"mrg" = ( -/obj/structure/curtain/open/bed, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/seconddeck) -"mrh" = ( -/obj/structure/table/woodentable/walnut, -/obj/machinery/photocopier/faxmachine{ - department = "Captain"; - destination = "NanoTrasen Central Command" - }, -/obj/item/paper/sierra/captain_fax, -/obj/machinery/recharger/wallcharger{ - pixel_y = 24 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"mri" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/quartermaster/expedition) -"mrA" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - id_tag = "null"; - name = "Captain Dorm"; - secured_wires = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/captain) -"mrD" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"mrS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"mrY" = ( -/obj/floor_decal/corner/black/border{ - dir = 9 - }, -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"msd" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"mse" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown1_1" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"msg" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/corner/green/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/open{ - id_tag = "vir_blast_enter"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology) -"msi" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/aft_stairwell) -"msj" = ( -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"msl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/security{ - name = "Guards' Equipment" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/equipment) -"msn" = ( -/obj/machinery/r_n_d/destructive_analyzer, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/development) -"msq" = ( -/obj/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/utility) -"msv" = ( -/obj/structure/catwalk, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"msw" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/obj/structure/bed/chair/padded/yellow{ - dir = 1 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"msz" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/crusher_base{ - icon_state = "rightcap" - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"msE" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/storage/eva) -"msI" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/self_destruct, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/nuke_storage) -"msN" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/machinery/door/firedoor, -/obj/paint_stripe/blue, -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cargo_l) -"msZ" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 8 - }, -/obj/machinery/air_sensor/nacelle/fourth, -/obj/machinery/atmospherics/unary/outlet_injector{ - injecting = 1; - use_power = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d1port) -"mtj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod2/station) -"mtt" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 6; - pixel_y = -21 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"mtC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"mtI" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs/upper) -"mtJ" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters/open{ - name = "Brig's visiting room shutters"; - id_tag = "visiting_room_windows_shutters" - }, -/obj/paint_stripe/red, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/security/prison) -"mtP" = ( -/obj/structure/closet/crate, -/obj/decal/cleanable/dirt, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"mtQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"mtR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"mtW" = ( -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head) -"muc" = ( -/obj/structure/closet/secure_closet/security/sierra, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/light/spot, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"mue" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar_atmos) -"mui" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"mum" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"muo" = ( -/obj/item/shovel, -/obj/item/shovel, -/obj/item/pickaxe/xeno/hand, -/obj/item/pickaxe/xeno/hand, -/obj/item/device/scanner/mining, -/obj/item/device/scanner/mining, -/obj/item/storage/belt/utility/full, -/obj/structure/table/rack, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/storage/box/glowsticks, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/eva) -"muq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/b_green/border, -/obj/machinery/conveyor_switch/oneway{ - id = "charon_cargo_out"; - name = "charon interior conveyor switch"; - pixel_x = 10; - pixel_y = 15 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"muw" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"muB" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/vendor/contraband/maintenance{ - dir = 1 - }, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"muF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"muI" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"muW" = ( -/obj/structure/table/woodentable/maple, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/floor_decal/carpet/purple{ - dir = 8 - }, -/obj/floor_decal/carpet/purple{ - dir = 1 - }, -/obj/floor_decal/carpet/purple{ - dir = 9 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/office) -"muX" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/exploration_shuttle/power) -"mvi" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 8; - id_tag = "escape_pod_4_pump" - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/grey/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod4/station) -"mvn" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"mvo" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 1; - id_tag = "escape_pod_5_pump" - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"mvq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"mvy" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/thruster/d1starboard) -"mvA" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/floor_decal/corner/purple, -/obj/machinery/camera/network/petrov{ - c_tag = "Petrov - Hallway" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"mvC" = ( -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge/storage) -"mvD" = ( -/obj/floor_decal/corner/darkblue, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"mvM" = ( -/obj/machinery/alarm/monitor/isolation/xenobio{ - alarm_id = "xenobio2_alarm"; - dir = 8; - name = "Xenobiology Second Xenopen"; - pixel_x = 23 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"mvW" = ( -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"mwe" = ( -/obj/floor_decal/corner/darkblue/half{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue{ - dir = 6 - }, -/obj/machinery/disposal, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/sign/directions/bridge{ - pixel_y = 24; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"mwf" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"mwi" = ( -/obj/structure/closet/crate, -/obj/item/storage/toolbox/mechanical, -/obj/random/powercell, -/obj/random/powercell, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 8; - pixel_x = 14 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"mwj" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/firstdeck/centralport) -"mwo" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"mwx" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/seconddeck) -"mwC" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/computer/modular/preset/cardslot/command, -/obj/machinery/camera/all/command{ - c_tag = "AI Core - Starboard" - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai) -"mwD" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"mwF" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"mwJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/decal/cleanable/cobweb2{ - dir = 4 - }, -/obj/machinery/shieldwallgen, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"mwN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"mwQ" = ( -/obj/machinery/door/airlock/glass/civilian{ - autoset_access = 0; - name = "Recreation Area" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/visitors) -"mwS" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/chem_master, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/scan) -"mxc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/gym) -"mxf" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay - Morgue - Autopsy" - }, -/obj/structure/crematorium{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"mxg" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/floor_decal/carpet/blue{ - dir = 1 - }, -/obj/structure/filingcabinet{ - pixel_x = -6 - }, -/obj/structure/filingcabinet{ - pixel_x = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/folder/red, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa) -"mxj" = ( -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"mxo" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/engineering/fuelbay) -"mxv" = ( -/obj/floor_decal/industrial/traffic{ - dir = 10; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/structure/bed/chair/office/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/office) -"mxA" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - name = "Third Deck Port Airlock Access"; - id_tag = "td_port_inner" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"mxC" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d3starboard) -"mxD" = ( -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/structure/bed/sofa/r/brown{ - dir = 4 - }, -/obj/floor_decal/corner/black/full, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"mxG" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/material/ashtray/glass, -/obj/item/storage/fancy/smokable/killthroat, -/obj/floor_decal/techfloor/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftstarboard) -"mxK" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/armor/laserproof, -/obj/item/clothing/suit/armor/laserproof, -/obj/item/clothing/suit/armor/laserproof, -/obj/item/clothing/head/helmet/ablative, -/obj/item/clothing/head/helmet/ablative, -/obj/item/clothing/head/helmet/ablative, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/recharger/wallcharger{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"mxO" = ( -/obj/machinery/recharge_station, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "xenobotany_access"; - name = "Xenobotany Lab Access Console"; - req_access = list("ACCESS_XENOBIO","ACCESS_RESEARCH"); - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"mxP" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"mxS" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Bridge Access" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/nano) -"myc" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"myd" = ( -/turf/simulated/wall/r_wall/hull, -/area/vacant/dormintories) -"myg" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/bridge) -"myh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"myn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/tcommsat/computer) -"myr" = ( -/obj/machinery/telecomms/bus/preset_one, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"myu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/machinery/button/blast_door{ - dir = 8; - id_tag = "hangar_atmos_storage"; - name = "Storage Door Control"; - pixel_x = 24; - req_access = list(list("ACCESS_HANGAR","ACCESS_ENGINE_EQUIP")) - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"myB" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"myC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"myD" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/decal/cleanable/cobweb, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"myN" = ( -/obj/structure/table/woodentable, -/obj/item/storage/secure/briefcase, -/obj/item/handcuffs, -/obj/item/grenade/smokebomb, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/firstdeck/forestarboard) -"myS" = ( -/obj/structure/lattice, -/obj/floor_decal/industrial/traffic{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"myX" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/obj/item/book/manual/nt_sop, -/obj/decal/cleanable/blood, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"mzc" = ( -/obj/structure/bed/sofa/l/brown{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/actor/stage) -"mze" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 9 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 10 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"mzk" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/fuelbay) -"mzp" = ( -/obj/structure/catwalk, -/turf/simulated/wall/r_wall/hull, -/area/space) -"mzt" = ( -/obj/structure/holoplant, -/obj/machinery/camera/network/medbay{ - c_tag = "Infrimary - Hospital"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"mzu" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"mzv" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown2_3" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/center) -"mzC" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"mzF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction/mirrored{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"mzN" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/material/ashtray/bronze, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood/yew, -/area/crew_quarters/cafe) -"mzU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"mzV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/maintenance{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"mzZ" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"mAf" = ( -/obj/structure/table/rack, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/random/tool, -/obj/random/tool, -/obj/random/tool, -/obj/item/flame/lighter/random, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/suplocker_room) -"mAw" = ( -/obj/structure/closet/crate/freezer, -/obj/random/mre, -/obj/random/mre, -/obj/random/mre, -/obj/random/drinkbottle, -/obj/random/snack, -/obj/random/snack, -/obj/random/snack, -/obj/random/snack, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/cola, -/obj/item/reagent_containers/food/drinks/cans/sodawater, -/obj/item/reagent_containers/food/drinks/cans/tonic, -/obj/item/reagent_containers/food/drinks/cans/tonic, -/obj/item/reagent_containers/food/drinks/cans/iced_tea, -/obj/item/reagent_containers/food/drinks/milk, -/obj/item/reagent_containers/food/drinks/small_milk_choc, -/obj/item/reagent_containers/food/drinks/soymilk, -/turf/simulated/floor/tiled/monotile, -/area/vacant/cargo) -"mAx" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley/backroom) -"mAz" = ( -/obj/item/storage/secure/safe{ - pixel_y = 28 - }, -/obj/floor_decal/carpet/blue{ - dir = 1 - }, -/obj/floor_decal/carpet/blue{ - dir = 4 - }, -/obj/floor_decal/carpet/blue{ - dir = 5 - }, -/obj/machinery/photocopier, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 24; - dir = 8; - pixel_y = -5 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa) -"mAA" = ( -/obj/structure/flora/pottedplant/large, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"mAC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"mAI" = ( -/obj/machinery/biogenerator, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"mAN" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"mAP" = ( -/turf/simulated/open, -/area/maintenance/firstdeck/centralstarboard) -"mAV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"mAW" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/maintenance/firstdeck/centralstarboard) -"mBb" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/heads/office/cmo) -"mBc" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"mBf" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_pub_hall"; - name = "Infirmary Entry Shutters" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/hallway/infirmary) -"mBg" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/recharger, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/obj/structure/table/reinforced, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/lime/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/holocontrol) -"mBj" = ( -/obj/structure/hygiene/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/storage/mirror{ - pixel_x = 24; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head/deck3) -"mBm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/solar/bridge_starboard) -"mBp" = ( -/obj/structure/table/standard, -/obj/random/clipboard, -/obj/floor_decal/corner/research/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/office) -"mBr" = ( -/obj/structure/table/rack, -/obj/random/toolbox, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftstarboard) -"mBz" = ( -/turf/simulated/wall/prepainted, -/area/rnd/development) -"mBA" = ( -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/lino, -/area/command/chief_steward) -"mBF" = ( -/obj/machinery/door/airlock/multi_tile/command{ - name = "Conference Room" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"mBG" = ( -/obj/structure/table/woodentable/maple, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/storage/box/donut, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"mBH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/aft) -"mCa" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"mCo" = ( -/obj/structure/table/steel, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar_atmos) -"mCr" = ( -/obj/structure/table/marble, -/obj/item/book/manual/chef_recipes, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Mess Hall - Kitchen - Distribution"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"mCs" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/aft) -"mCt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"mCD" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"mCP" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/table/woodentable/walnut, -/obj/machinery/recharger, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"mCS" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/airlock) -"mCU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"mDb" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/camera/network/engine{ - c_tag = "Engine - R-UST - TOKAMAK Interior"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"mDe" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "charon_cargo_in"; - name = "charon external conveyor belt" - }, -/turf/simulated/floor/reinforced, -/area/exploration_shuttle/airlock) -"mDg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"mDi" = ( -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "cChamber3pV"; - name = "Chamber Vent" - }, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d1starboard) -"mDk" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"mDl" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/machinery/recharger/wallcharger{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/device/suit_cooling_unit/miniature, -/obj/item/device/suit_cooling_unit/miniature, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/suits) -"mDw" = ( -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/crew_quarters/sleep/cryo/south) -"mDx" = ( -/obj/machinery/air_sensor/nacelle/first/plasma, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d3starboard) -"mDy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"mDz" = ( -/obj/paint_stripe/turquoise, -/obj/paint/black, -/turf/simulated/wall/r_wall/prepainted, -/area/turret_protected/ai) -"mDD" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"mDE" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Telecoms Storage"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - id_tag = "telecoms_s" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/tcommsat/storage) -"mDF" = ( -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/lime/border{ - dir = 9 - }, -/obj/structure/bed/sofa/l/brown, -/obj/machinery/vending/wallmed2{ - dir = 4; - pixel_x = -23 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"mDG" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Toxins"; - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"mDL" = ( -/obj/machinery/shieldgen, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"mDN" = ( -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/obj/floor_decal/corner/black/bordercorner, -/obj/floor_decal/corner/black/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hydroponics/third_deck_storage) -"mDS" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"mDV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"mDY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sauna) -"mEd" = ( -/obj/random/ironing_board_structure, -/obj/item/ironing_iron, -/turf/simulated/floor/wood/walnut, -/area/vacant/dormintories) -"mEe" = ( -/obj/machinery/vending/engivend{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"mEj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"mEk" = ( -/obj/catwalk_plated, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"mEl" = ( -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Third Deck Subgrid"; - name_tag = "Third Deck Subgrid" - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/power/apc/critical{ - name = "south bump"; - pixel_y = -21 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/substation/fourthdeck) -"mEr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"mEt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/rotating_alarm/supermatter{ - dir = 8; - pixel_x = 14 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"mEz" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - opacity = 0; - id_tag = "lobb_shutt" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lob_bridge_lock" - }, -/turf/simulated/floor/plating, -/area/bridge/lobby) -"mEE" = ( -/obj/structure/bed/chair/office/comfy/red{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"mEP" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"mEX" = ( -/obj/structure/bed/chair/padded/green, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"mFj" = ( -/obj/machinery/door/window/southleft{ - name = "HoP's Desk"; - req_access = newlist(); - id_tag = "hop_windows" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "hop_shutters"; - name = "HoP Desk's Shutters"; - opacity = 0 - }, -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/hop) -"mFl" = ( -/obj/structure/railing/mapped, -/obj/decal/cleanable/cobweb2, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"mFo" = ( -/obj/floor_decal/chapel{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"mFq" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - dir = 4; - name = "Interrogation" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/interrogation/second) -"mFv" = ( -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/obj/floor_decal/carpet/blue{ - dir = 4 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa) -"mFw" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/shuttle_ceiling/sierra, -/area/space) -"mFy" = ( -/obj/structure/bed/chair/comfy/blue, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"mFG" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/closet/jcloset, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"mFL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"mFO" = ( -/obj/structure/table/woodentable/mahogany, -/obj/item/material/ashtray/plastic{ - pixel_y = 3; - pixel_x = 5 - }, -/obj/floor_decal/carpet/red{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"mFR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/corner/brown/mono, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar_stairs/upper) -"mGd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"mGe" = ( -/obj/structure/ladder, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/catwalk_plated/dark, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"mGi" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/secure/phoron{ - req_access = list(list("ACCESS_ENGINE_EQUIP","ACCESS_CARGO")); - name = "Emergency backup phoron crate" - }, -/obj/item/stack/material/phoron/ten, -/obj/item/stack/material/phoron/ten, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"mGr" = ( -/obj/paint_stripe/turquoise, -/turf/simulated/wall/r_wall/prepainted, -/area/turret_protected/ai) -"mGx" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/obj/structure/sign/nanotrasen{ - dir = 4 - }, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod1/station) -"mGG" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/cell2) -"mGI" = ( -/obj/structure/ladder, -/obj/structure/cable{ - d2 = 8; - icon_state = "32-8"; - d1 = 32 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 8 - }, -/obj/machinery/light/small, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/firstdeck/centralstarboard) -"mGJ" = ( -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#6a97b0" - }, -/area/quartermaster/hangar/upper) -"mGL" = ( -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/floor_decal/techfloor/orange/corner, -/obj/structure/window/boron_reinforced{ - dir = 8 - }, -/obj/structure/window/boron_reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"mGP" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"mGV" = ( -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"mGY" = ( -/obj/machinery/computer/modular/preset/civilian{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = -21 - }, -/obj/machinery/button/windowtint{ - id = "rcheckinner_windows"; - pixel_x = 10; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"mHe" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"mHf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/radiation, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"mHg" = ( -/obj/structure/table/standard, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = -4; - pixel_x = -5 - }, -/obj/item/towel/random, -/obj/item/towel/random{ - pixel_y = -4; - pixel_x = -5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/gym) -"mHp" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"mHu" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"mHL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/civilian{ - dir = 4; - name = "Recreation Compartment" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/garden_room) -"mHS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"mHT" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/virology) -"mIg" = ( -/obj/structure/table/woodentable_reinforced/ebony, -/obj/structure/flora/pottedplant/large{ - pixel_y = 9 - }, -/obj/item/trash/chips{ - pixel_y = 3; - pixel_x = -12 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"mIq" = ( -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"mIs" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"mIF" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/floor_decal/corner/red/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/camera/network/security{ - c_tag = "Security - Sergeant" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/sierra/sergeant) -"mIL" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"mIO" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"mIT" = ( -/obj/machinery/r_n_d/server/robotics, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/alarm/server{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/servers) -"mIX" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod2/station) -"mJi" = ( -/obj/turbolift_map_holder/sierra, -/turf/unsimulated/mask, -/area/hallway/primary/fourthdeck/center) -"mJj" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"mJq" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Mental Health"; - sort_type = "Mental Health" - }, -/obj/machinery/tele_beacon, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"mJt" = ( -/obj/machinery/telecomms/server/presets/command, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"mJw" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/brown, -/obj/structure/curtain/open/bed{ - anchored = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/prison) -"mJy" = ( -/obj/structure/filingcabinet{ - pixel_x = -6 - }, -/obj/structure/filingcabinet{ - pixel_x = 5 - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"mJE" = ( -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 9 - }, -/obj/machinery/power/apc/super/critical{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_teleport) -"mJM" = ( -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"mJQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/paint_stripe/red, -/turf/simulated/wall/prepainted, -/area/security/sierra/equipment) -"mJU" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"mJV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall/prepainted, -/area/chapel/mortuary) -"mJW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"mJZ" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"mKb" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"mKd" = ( -/obj/structure/table/standard, -/obj/random/donkpocket_box, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/corner/beige/diagonal, -/obj/floor_decal/corner/brown/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/vacant/dormintories) -"mKh" = ( -/obj/floor_decal/spline/fancy/black, -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"mKo" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/obj/item/stack/material/wood/walnut{ - amount = 2 - }, -/turf/simulated/floor/carpet, -/area/vacant/gambling) -"mKp" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/hygiene/sink{ - pixel_y = -12 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/breakroom) -"mKA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"mKG" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"mKH" = ( -/turf/simulated/floor/plating, -/area/vacant/gambling) -"mKZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"mLa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/breakroom) -"mLb" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"mLn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"mLr" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "sd_starboard_outer"; - name = "Second Deck Port Airlock" - }, -/obj/machinery/access_button/airlock_exterior{ - dir = 1; - master_tag = "sd_starboard"; - name = "exterior access button"; - pixel_x = 24; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"mLz" = ( -/obj/floor_decal/corner/black/mono, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"mLQ" = ( -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - name = "Chemisty Desk" - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/shutters/open{ - id_tag = "chemistry_lockdown"; - name = "Chemistry Shutters" - }, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_main_reg" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/plating, -/area/medical/chemistry) -"mLR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/center) -"mMg" = ( -/obj/structure/table/steel_reinforced, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"mMm" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/chemistry) -"mMs" = ( -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"mMx" = ( -/obj/structure/stairs/west, -/obj/structure/sign/directions/security{ - pixel_y = 24; - dir = 8 - }, -/obj/structure/sign/directions/infirmary{ - pixel_y = 31; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/central_stairwell) -"mMA" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"mMI" = ( -/obj/structure/closet/emcloset, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Fore Hallway"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"mMJ" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"mMK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"mMN" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/clothing/mask/gas/mime, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor) -"mMR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/stasis_cage, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/water_cell) -"mMT" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"mMW" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 12 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/vending/phoronresearch{ - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"mNf" = ( -/obj/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 6 - }, -/obj/machinery/computer/air_control{ - dir = 1; - input_tag = "fuel2p_in"; - name = "Fuel Supply Control"; - output_tag = "fuel2p_out"; - sensor_name = "Tank"; - sensor_tag = "ReacEngPlasma2" - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"mNg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"mNi" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/floor_decal/corner/yellow/mono, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"mNr" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"mNs" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/rnd/xenobiology/xenoflora) -"mNv" = ( -/obj/item/grenade/chem_grenade/cleaner, -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"mNz" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"mND" = ( -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"mNF" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"mNG" = ( -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"mNJ" = ( -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"mNS" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/paint_stripe/red, -/obj/wallframe_spawn/reinforced/polarized{ - id = "bo_windows" - }, -/turf/simulated/floor/plating, -/area/security/sierra/sergeant) -"mNV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"mOa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor/orange{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"mOc" = ( -/obj/machinery/flasher{ - id_tag = "security_second_cell_flash"; - name = "Floor mounted flash" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"mOf" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/galley/backroom) -"mOl" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/machinery/recharger/wallcharger{ - dir = 4; - pixel_x = -22 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"mOq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"mOt" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/south) -"mOu" = ( -/obj/structure/railing/mapped{ - color = "#aed18b"; - init_color = "#aed18b" - }, -/obj/structure/railing/mapped{ - dir = 8; - color = "#aed18b"; - init_color = "#aed18b" - }, -/turf/simulated/open, -/area/hallway/primary/seconddeck/central_stairwell) -"mOx" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"mOK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"mOR" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"mOZ" = ( -/obj/machinery/floodlight, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"mPm" = ( -/obj/structure/table/woodentable_reinforced/ebony, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"mPp" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"mPs" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"mPt" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"mPu" = ( -/obj/structure/bed/sofa/l/beige{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 6 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/cafe) -"mPv" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/structure/bed/sofa/m/brown{ - dir = 8 - }, -/obj/machinery/camera/network/fourth_deck{ - dir = 8; - c_tag = "Fourth Deck - Dock Bay - Starboard One" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"mPx" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/office/post) -"mPA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"mPD" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"mPI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"mPS" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 1; - pixel_y = -13 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"mPX" = ( -/obj/floor_decal/carpet/blue{ - dir = 1 - }, -/obj/floor_decal/carpet/blue{ - dir = 4 - }, -/obj/floor_decal/carpet/blue{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/dogbed, -/mob/living/simple_animal/friendly/fox/renault, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = 28 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/captain) -"mPZ" = ( -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"mQf" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Solar - Bridge Port" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/bridge_port) -"mQg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/grey/three_quarters, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"mQl" = ( -/obj/machinery/requests_console{ - department = "Research"; - departmentType = 3; - name = "Research RC"; - pixel_y = 30 - }, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"mQn" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"mQt" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"mQI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/machinery/navbeacon/sierra/TD_fore7_starboard, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"mQJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d3starboard) -"mQK" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"mQL" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"mQV" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"mRe" = ( -/obj/structure/stairs/west, -/obj/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"mRk" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"mRo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/industrial/outline/grey, -/obj/floor_decal/steeldecal/steel_decals_central6, -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4; - name = "supply valve to Hangar backup" - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/hangar_atmos) -"mRr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"mRs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"mRt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/floor_decal/industrial/warning, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"mRL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftstarboard) -"mRM" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border, -/obj/structure/curtain/medical, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"mRP" = ( -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/fore) -"mRQ" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"mRS" = ( -/obj/structure/table/standard, -/obj/item/wheelchair_kit, -/obj/item/wheelchair_kit{ - pixel_y = 9 - }, -/obj/item/wheelchair_kit{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/ward) -"mRU" = ( -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/fourthdeck/central_stairwell) -"mSf" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"mSi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"mSl" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"mSv" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"mSx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"mSy" = ( -/obj/structure/catwalk, -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"mSA" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"mSM" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/storage/box/donut, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"mSU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - target_pressure = 15000 - }, -/obj/machinery/button/ignition{ - dir = 1; - id_tag = "engines-1"; - pixel_y = -34 - }, -/obj/machinery/button/blast_door{ - dir = 1; - id_tag = "d1portnacelle"; - name = "Combustion Chamber Blast Door Control"; - pixel_x = -8; - pixel_y = -24 - }, -/obj/machinery/button/blast_door{ - dir = 1; - id_tag = "cChamber1pV"; - name = "Third Deck Starboard Chamber Vent"; - pixel_x = 8; - pixel_y = -24 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"mSW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"mSX" = ( -/obj/structure/table/standard, -/obj/item/material/clipboard{ - pixel_y = -3; - pixel_x = -3 - }, -/obj/item/stamp/qm{ - pixel_y = 10; - pixel_x = 7 - }, -/obj/item/folder/yellow{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/pen{ - pixel_y = 7 - }, -/obj/item/pen/red{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/sticky_pad/random{ - pixel_x = 9; - pixel_y = -4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/deckofficer) -"mSZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"mTi" = ( -/obj/floor_decal/industrial/danger{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"mTl" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"mTB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"mTF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"mTI" = ( -/turf/simulated/floor/greengrid, -/area/engineering/gravitaional_generator) -"mTY" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"mUc" = ( -/obj/structure/table/woodentable, -/obj/item/storage/fancy/smokable/killthroat, -/obj/item/storage/fancy/smokable/luckystars, -/obj/item/flame/lighter/zippo, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/firstdeck/forestarboard) -"mUf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/toolbox/mechanical, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"mUi" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/machinery/camera/network/command{ - c_tag = "Command - AI Upload" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/computer/modular/preset/aislot/sysadmin, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"mUk" = ( -/turf/simulated/open, -/area/hallway/primary/seconddeck/aft_stairwell) -"mUm" = ( -/obj/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/obj/item/dice/d20, -/obj/item/dice, -/obj/item/dice/d12, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/dungeon) -"mUp" = ( -/obj/structure/table/standard, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation/second) -"mUq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"mUJ" = ( -/obj/fluid_mapped, -/obj/item/clothing/under/shorts/blue, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"mUL" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/laundry) -"mUM" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"mUO" = ( -/obj/floor_decal/corner/black/full, -/obj/structure/closet/cabinet, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/corner/red, -/obj/item/book/manual/nt_tc, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos/cobed) -"mUQ" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 9 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d1starboard) -"mVa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"mVb" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/random/obstruction, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"mVd" = ( -/obj/floor_decal/spline/plain/black{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"mVh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"mVr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"mVw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"mVC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/navbeacon/sierra/TD_afthallway1, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"mVF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"mWa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"mWc" = ( -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/galley/freezer) -"mWg" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/floor_decal/corner/grey{ - dir = 5 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Mess Hall - Kitchen - Stewards" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"mWv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/bed/sofa/m/beige{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"mWw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"mWA" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/handrail{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/cockpit) -"mXa" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 6 - }, -/obj/structure/bed/sofa/r/brown{ - dir = 8 - }, -/obj/landmark/start, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/cafe) -"mXd" = ( -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"mXf" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/folder/nt, -/obj/item/folder/white{ - pixel_y = 6; - pixel_x = 3 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"mXk" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/simulated/open, -/area/space) -"mXm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"mXn" = ( -/obj/machinery/constructable_frame/machine_frame, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"mXx" = ( -/obj/structure/adherent_bath, -/turf/simulated/floor/crystal, -/area/crew_quarters/adherent) -"mXP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"mXR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/tool, -/obj/random/tool{ - pixel_y = -6; - pixel_x = 7 - }, -/obj/random/tank{ - pixel_y = -3; - pixel_x = -7 - }, -/obj/random/tech_supply{ - pixel_y = 11; - pixel_x = 8 - }, -/obj/random/maintenance, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/hangar) -"mXT" = ( -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"mYa" = ( -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -32 - }, -/obj/item/paper/sierra/engineering_comms, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"mYo" = ( -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/disposal, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"mYq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/research{ - dir = 8; - name = "Xenobiology Atmospherics" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/atmos) -"mYt" = ( -/obj/machinery/r_n_d/destructive_analyzer, -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"mYA" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"mYD" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"mYF" = ( -/obj/floor_decal/corner/black/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"mYI" = ( -/obj/machinery/computer/modular/preset/security{ - dir = 1 - }, -/obj/floor_decal/corner/red/half{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"mYK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall/hull, -/area/chapel/main) -"mYL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"mYM" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/bridge_port) -"mYP" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/aft) -"mYR" = ( -/obj/structure/closet/secure_closet/medical_sierra, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"mYT" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"mYW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"mYX" = ( -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"mZa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"mZk" = ( -/obj/structure/table/glass, -/obj/floor_decal/corner/yellow/mono, -/obj/machinery/recharger, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"mZn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/floor_decal/corner/blue/border{ - dir = 5 - }, -/obj/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/forensic/lab) -"mZt" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/firstdeck/aftstarboard) -"mZx" = ( -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sleep/bunk) -"mZA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"mZD" = ( -/obj/structure/table/steel_reinforced, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/critical{ - name = "west bump"; - dir = 8; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/substation/bridgedeck) -"mZE" = ( -/obj/random/trash, -/obj/item/roller_bed{ - pixel_y = 16 - }, -/obj/random/medical, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"mZF" = ( -/obj/machinery/smartfridge{ - opacity = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/galley/backroom) -"mZV" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"mZX" = ( -/obj/structure/fitness/punchingbag, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"mZY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"nab" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"nae" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftport) -"nah" = ( -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"nai" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"nam" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/chemical_dispenser, -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"nan" = ( -/obj/structure/catwalk, -/obj/machinery/airlock_sensor{ - id_tag = "ai_starboard_sensor"; - master_tag = "solar_starboard"; - pixel_x = 10; - pixel_y = 27 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "ai_starboard"; - pixel_x = -5; - pixel_y = 21; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/machinery/atmospherics/unary/vent_pump{ - id_tag = "ai_starboard_pump" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"nap" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/access_button/airlock_exterior{ - master_tag = "solar_starboard"; - name = "exterior access button"; - pixel_x = -12; - pixel_y = -19; - req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"nar" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/engineering{ - dir = 8; - name = "Third Deck Substation" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/substation/thirddeck) -"naC" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"naG" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"naJ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftport) -"naT" = ( -/obj/structure/table/rack, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/turf/simulated/floor/tiled/steel_ridged, -/area/tcommsat/storage) -"nba" = ( -/obj/structure/railing/mapped, -/obj/machinery/barrier, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"nbf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"nbg" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"nbi" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/space) -"nbj" = ( -/obj/machinery/photocopier, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"nbr" = ( -/obj/floor_decal/corner/red/mono, -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/floor_decal/spline/fancy/black, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"nbB" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell2) -"nbD" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"nbG" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/turf/simulated/floor/plating, -/area/rnd/development) -"nbJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"nbP" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"nbT" = ( -/obj/structure/table/standard, -/obj/item/storage/box/lights/led_neon, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/corner/green{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"nbW" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/red, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"nch" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 6 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"ncm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"ncx" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/cafe) -"ncz" = ( -/obj/random/closet, -/obj/structure/railing/mapped, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"ncG" = ( -/obj/item/stool/padded, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/exploration) -"ncM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"ncQ" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 1 - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Central Hallway" - }, -/obj/machinery/navbeacon/sierra/FD_forecentralhallway2, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"ncR" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/compactor) -"ncS" = ( -/obj/structure/table/glass, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/darkblue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"ndf" = ( -/obj/structure/railing/mapped, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"ndi" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/floor_decal/corner/black/mono, -/obj/item/folder, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"ndj" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_main_reg"; - name = "Infirmary Entry Shutters" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/infirmreception) -"ndq" = ( -/obj/machinery/power/emitter{ - anchored = 1; - dir = 4; - id_tag = "EngineEmitter"; - state = 2 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"ndt" = ( -/obj/machinery/constructable_frame/computerframe{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"ndv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access = newlist(); - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"ndx" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"ndy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/computer/air_control{ - dir = 8; - input_tag = "o2_in"; - name = "Oxygen Supply Control"; - output_tag = "o2_out"; - sensor_name = "Tank"; - sensor_tag = "o2_sensor" - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"ndG" = ( -/obj/structure/bed/chair/shuttle, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/escape_pod/escape_pod9/station) -"ndK" = ( -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/seats_place) -"ndR" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/gas) -"neg" = ( -/obj/shuttle_landmark/ert/deck5, -/turf/space, -/area/space) -"nei" = ( -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"nel" = ( -/obj/structure/hygiene/shower{ - pixel_y = 15 - }, -/obj/machinery/door/window, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/hygiene/drain/bath, -/obj/structure/closet/walllocker{ - pixel_x = -28 - }, -/obj/random/soap, -/obj/item/towel/fleece, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"neo" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/hull, -/turf/simulated/floor/plating, -/area/crew_quarters/sauna) -"neA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"neC" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"neE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/sleeper, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod4/station) -"neK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"neL" = ( -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"neP" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/button/alternate/door/bolts{ - id_tag = "civsafedoorport"; - name = "safe room door-control"; - dir = 4; - pixel_x = -21 - }, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/seconddeck) -"neR" = ( -/obj/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"nfe" = ( -/obj/structure/curtain/black, -/obj/structure/wall_frame, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/vacant/cargo) -"nfl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo/bridge) -"nfn" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/ocp_wall, -/area/shuttle/petrov/gas) -"nfo" = ( -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"nfq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"nfr" = ( -/obj/structure/closet/secure_closet/adjutant, -/obj/item/modular_computer/tablet/lease/preset/command, -/obj/item/device/flash, -/obj/item/device/flashlight, -/obj/item/storage/secure/safe{ - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/gun/energy/gun/small/secure, -/obj/floor_decal/corner/darkblue/mono, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"nfJ" = ( -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/development) -"nfK" = ( -/obj/machinery/light, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/b_green/border, -/obj/structure/bed/chair/shuttle/green{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/seats_place) -"nfL" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"nfV" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"nga" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/substation/thirddeck) -"ngg" = ( -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ngh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"ngm" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/access_button/airlock_exterior{ - pixel_y = 24; - master_tag = "solar_bridge_airlock"; - pixel_x = -26 - }, -/turf/simulated/floor, -/area/solar/bridge_starboard) -"ngE" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/sign/directions/science{ - pixel_y = 24; - dir = 4 - }, -/obj/structure/sign/directions/infirmary{ - dir = 4; - pixel_y = 31 - }, -/obj/machinery/navbeacon/sierra/FD_forecentralhallway2, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"ngG" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"ngK" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/seconddeck/foreport) -"ngL" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/structure/bed/sofa/m/brown, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"ngO" = ( -/obj/floor_decal/corner/lime/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"ngU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"ngV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft) -"nhh" = ( -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"nhq" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"nht" = ( -/obj/machinery/light, -/obj/machinery/telecomms/hub/preset, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"nhv" = ( -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1port) -"nhx" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"nhE" = ( -/obj/structure/hygiene/shower{ - dir = 8 - }, -/obj/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/decal/cleanable/cobweb{ - dir = 1 - }, -/obj/decal/cleanable/dirt, -/obj/item/camera_assembly, -/turf/simulated/floor/tiled/freezer, -/area/vacant/sauna) -"nhI" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"nhU" = ( -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/medical) -"nhX" = ( -/obj/machinery/door/airlock/civilian{ - name = "Theatre"; - autoset_access = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/actor/stage) -"nib" = ( -/obj/structure/bed/chair/office/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/development) -"nic" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/navbeacon/sierra/TD_centralhallway3, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"nig" = ( -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/glass, -/obj/floor_decal/spline/fancy/black{ - dir = 5 - }, -/obj/random/coin, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/corp, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"nim" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"nit" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"niv" = ( -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/docking) -"niz" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_north = 2; - tag_south = 1; - tag_west = 8 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"niA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"niF" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "packageSort1" - }, -/turf/simulated/floor/plating, -/area/quartermaster/office/post) -"niH" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"niN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 9 - }, -/turf/simulated/wall/r_wall/hull, -/area/engineering/engine_room) -"niO" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"niY" = ( -/obj/structure/iv_stand, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/maintenance_equipstorage) -"njb" = ( -/obj/machinery/space_heater, -/obj/item/screwdriver, -/turf/simulated/floor/plating, -/area/crew_quarters/sauna) -"njl" = ( -/obj/structure/bed/chair/armchair/beige{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"njz" = ( -/obj/structure/table/steel_reinforced, -/obj/floor_decal/corner/black/mono, -/obj/item/folder, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"njA" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - dir = 4; - name = "Locker Room"; - req_access = newlist() - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"njE" = ( -/obj/structure/table/steel, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"njG" = ( -/obj/structure/bed/sofa/m/brown{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"njH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"njJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"njQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"njV" = ( -/obj/structure/table/standard, -/obj/random/firstaid, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod3/station) -"njY" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/no_grille, -/turf/simulated/floor/plating, -/area/quartermaster/expedition/eva) -"nkf" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"nkh" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/gas) -"nkj" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/central_stairwell) -"nkr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 4 - }, -/obj/structure/sign/warning/pods/south{ - dir = 8; - pixel_x = 32 - }, -/obj/floor_decal/borderfloorblack/corner, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"nkv" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"nkB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"nkC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"nkG" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"nkL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/machinery/navbeacon/sierra/TD_centralhallway2, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"nkO" = ( -/obj/random/obstruction, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"nkP" = ( -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"nkV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"nkW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"nlc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - sort_type = "Research Experimental"; - name = "Research Experimental" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"nlk" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"nlm" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/catwalk_plated, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"nlo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel_grid, -/area/command/bsa) -"nlq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/red, -/obj/machinery/button/blast_door{ - id_tag = "security_permabrig_third_cell_shutters"; - name = "3d Cell Shutters"; - req_access = list("ACCESS_SECURITY"); - pixel_x = 21; - dir = 8 - }, -/obj/machinery/button/flasher{ - dir = 8; - pixel_x = 22; - pixel_y = -9; - id_tag = "security_third_cell_flash"; - req_access = list("ACCESS_SECURITY") - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"nlt" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"nlv" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/structure/holoplant, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"nlx" = ( -/obj/structure/table/standard, -/obj/floor_decal/corner/paleblue, -/obj/structure/flora/pottedplant/smallcactus{ - pixel_x = -5; - pixel_y = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"nlA" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"nlC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"nlI" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 4 - }, -/turf/simulated/wall/titanium, -/area/guppy_hangar/start) -"nlJ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/thirddeck) -"nlQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"nlS" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"nlW" = ( -/obj/machinery/sleeper/survival_pod{ - dir = 4 - }, -/obj/structure/sign/emergonly{ - dir = 4; - pixel_x = -32 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/sign/directions/med{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"nlX" = ( -/obj/structure/closet/secure_closet/guncabinet/sierra_armory/smg, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory) -"nma" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"nmb" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"nmf" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/seconddeck) -"nmj" = ( -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos) -"nmr" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"nms" = ( -/obj/machinery/alarm/monitor/isolation/xenobio{ - alarm_id = "xenobio5_alarm"; - name = "Xenobiology Aqua Xenopen"; - pixel_y = 29 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/stasis_cage, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/water_cell) -"nmu" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"nmN" = ( -/obj/structure/ladder, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/space) -"nmS" = ( -/obj/machinery/atmospherics/unary/vent_pump/tank{ - dir = 8; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "o2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos) -"nmT" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/grey{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"nmW" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/structure/bed/chair/padded/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"nnf" = ( -/obj/floor_decal/spline/fancy/black, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"nnA" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar/bridge_starboard) -"nnI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/conveyor{ - dir = 8; - id = "bsa" - }, -/obj/structure/plasticflaps/airtight, -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "bsa_space"; - name = "Unknown Compartament Shell Loader"; - opacity = 0 - }, -/turf/simulated/floor/reinforced, -/area/command/bsa) -"nnJ" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking_1{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"nnP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"nnQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/aft) -"nnR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"nnY" = ( -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/reinforced, -/area/turret_protected/ai_teleport) -"noa" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/plushie, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"noj" = ( -/obj/structure/sign/warning/airlock{ - dir = 8 - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/solar/bridge_port) -"non" = ( -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/obj/machinery/camera/network/command{ - c_tag = "Command - Central Hallway"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"nop" = ( -/obj/shuttle_landmark/ninja/deck2, -/turf/space, -/area/space) -"nor" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"nos" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"not" = ( -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/foreport) -"noF" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/bridgedeck/port) -"noH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/cooker/grill, -/obj/floor_decal/corner/red/diagonal, -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"noM" = ( -/turf/simulated/wall/prepainted, -/area/medical/office) -"noS" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/blue, -/obj/structure/sign/warning/nosmoking_1{ - dir = 4; - pixel_x = -32 - }, -/obj/machinery/camera/network/petrov{ - c_tag = "Petrov - Toxins"; - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"noV" = ( -/obj/machinery/camera/network/petrov{ - c_tag = "Petrov - Airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"noY" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftstarboard) -"npb" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass/civilian{ - autoset_access = 0; - name = "Recreation Area" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/visitors) -"npf" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"npl" = ( -/obj/floor_decal/corner/yellow/half, -/obj/structure/reagent_dispensers/water_cooler{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/suplocker_room) -"npu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"npy" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"npA" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/item/device/assembly/igniter, -/obj/item/device/assembly/igniter, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"npC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"npE" = ( -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hop/cobed) -"npI" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/xenobiology/water_cell) -"npK" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/green, -/turf/simulated/floor/tiled/white, -/area/medical/virology/ward) -"npL" = ( -/obj/structure/table/reinforced, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/button/blast_door{ - dir = 1; - id_tag = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_x = 4; - req_access = list("ACCESS_RESEARCH") - }, -/obj/machinery/button/ignition{ - id_tag = "Xenobio"; - pixel_x = -6 - }, -/obj/item/wrench, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"npU" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"npY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"nqm" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/structure/table/woodentable/walnut, -/obj/item/material/ashtray/bronze, -/turf/simulated/floor/wood/walnut, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"nqp" = ( -/obj/machinery/suit_cycler/mining, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/brown/border, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"nqq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 8; - id_tag = "EngineRadiatorViewport"; - name = "Engine Radiator Shutters" - }, -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"nqx" = ( -/obj/floor_decal/corner/yellow/three_quarters{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/suplocker_room) -"nqy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/civilian{ - dir = 4; - name = "Steward's Room" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley/backroom) -"nqB" = ( -/obj/item/stool/padded, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/maintenance_equipstorage) -"nqC" = ( -/obj/item/modular_computer/tablet/lease/preset/command, -/obj/item/sticky_pad/random, -/obj/structure/table/glass/boron, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/purple/bordercorner2, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"nqE" = ( -/obj/structure/sign/warning/radioactive{ - dir = 1; - pixel_y = -32 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/thirddeck/fore) -"nqH" = ( -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/structure/window/boron_reinforced{ - dir = 1 - }, -/obj/structure/window/boron_reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"nqK" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - controlled = 0; - dir = 1; - internal_pressure_bound = 35000; - internal_pressure_bound_default = 35000; - pressure_checks = 2; - pressure_checks_default = 2; - use_power = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/thruster/d1port) -"nqM" = ( -/obj/floor_decal/corner/darkblue/half{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue{ - dir = 10 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"nqO" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"nqW" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table/steel, -/obj/random/technology_scanner, -/obj/item/contraband/poster, -/obj/item/contraband/poster, -/obj/item/contraband/poster, -/obj/item/contraband/poster, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"nrb" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/green/mono, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"nrg" = ( -/obj/structure/lattice, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"nrk" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/crew_quarters/laundry) -"nrm" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"nrt" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"nrA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"nrC" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 4; - display_name = "Port Dock C"; - frequency = 1331; - id_tag = "rescue_shuttle_dock_airlock"; - pixel_x = -20; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"nrG" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"nrI" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/heads/captain/secret_room) -"nrJ" = ( -/obj/structure/bed/chair/wood/walnut{ - dir = 1 - }, -/obj/floor_decal/carpet/purple, -/obj/floor_decal/carpet/purple{ - dir = 1 - }, -/obj/floor_decal/carpet/purple{ - dir = 4 - }, -/obj/floor_decal/carpet/purple{ - dir = 5 - }, -/obj/floor_decal/carpet/purple{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/main) -"nrK" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"nrN" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"nrO" = ( -/obj/structure/closet/secure_closet{ - name = "Secure Evidence Locker"; - req_access = list("ACCESS_SECURITY") - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techmaint, -/area/security/sierra/evidence) -"nrW" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/hangar/upper) -"nsa" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 4; - id_tag = "fd_starboard_pump" - }, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"nsb" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - id_tag = "solar_starboard_pump" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"nsd" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/bluegrid, -/area/rnd/servers) -"nsf" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sleep/bunk) -"nsl" = ( -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"nsm" = ( -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/random/vendor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"nsv" = ( -/turf/simulated/wall/prepainted, -/area/engineering/locker_room) -"nsA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Cell One"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"nsB" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"nsD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"nsI" = ( -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Medical Reception"; - req_access = list("ACCESS_SENMED"); - autoset_access = 0 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"nsS" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"nsT" = ( -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/wardhallway) -"nsU" = ( -/obj/structure/table/rack, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"ntg" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/computer/modular/preset/civilian, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"ntv" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/artbru, -/obj/item/reagent_containers/food/drinks/cans/artbru, -/obj/item/reagent_containers/food/drinks/cans/speer, -/obj/item/reagent_containers/food/drinks/cans/speer, -/obj/item/reagent_containers/food/drinks/cans/speer, -/obj/item/storage/box/glasses/square, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sauna) -"ntz" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"ntA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/atmos) -"ntB" = ( -/obj/structure/table/steel, -/obj/machinery/recharger, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/vacant/monitoring) -"ntL" = ( -/obj/wallframe_spawn/reinforced, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/paint_stripe/red, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/sierra/brig) -"ntW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"ntX" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"ntZ" = ( -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"nuc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/center) -"nuj" = ( -/obj/machinery/computer/ship/helm, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"nul" = ( -/obj/floor_decal/corner/red, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - name = "Chief Steward"; - sort_type = "Chief Steward" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"nun" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light/spot, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/red/bordercorner2, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"nuC" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"nuD" = ( -/obj/structure/closet/secure_closet/atmos_sierra, -/obj/item/rpd, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"nuE" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"nuJ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"nuQ" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/floor_decal/corner/black/half{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"nvi" = ( -/obj/floor_decal/industrial/traffic/corner, -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"nvk" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"nvl" = ( -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 4; - icon_state = "map_vent_in"; - initialize_directions = 1; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1; - id_tag = "containment_out"; - external_pressure_bound = 0; - external_pressure_bound_default = 0 - }, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"nvp" = ( -/obj/floor_decal/industrial/warning/cee, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 4; - display_name = "Second Deck Auxillary Dock"; - id_tag = "sd_starboard"; - name = "Second Deck Starboard Airlock Controller"; - pixel_x = -20; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 4; - id_tag = "sd_starboard_pump" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"nvx" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -24; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"nvy" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/shieldwallgen, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"nvC" = ( -/obj/floor_decal/corner/black/bordercorner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"nvI" = ( -/obj/shuttle_landmark/ninja/deck4, -/turf/space, -/area/space) -"nvP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/constructable_frame/machine_frame, -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"nvR" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"nvT" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/hangar/upper) -"nvV" = ( -/obj/machinery/sparker{ - id_tag = "Isocell2"; - pixel_x = -18 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell2) -"nvX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"nvZ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Shield Generator"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor, -/area/shield/thirddeck) -"nwe" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"nwj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance{ - autoset_access = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftport) -"nwk" = ( -/obj/floor_decal/corner/grey/diagonal, -/obj/structure/table/steel_reinforced, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration) -"nwl" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"nwm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/computer/telecomms/monitor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"nwn" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/foreport) -"nwt" = ( -/obj/structure/table/woodentable/walnut, -/obj/random/action_figure, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"nwu" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/meter, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"nww" = ( -/obj/machinery/space_heater, -/turf/simulated/wall/prepainted, -/area/maintenance/firstdeck/forestarboard) -"nwB" = ( -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"nwE" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"nwG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1starboard) -"nwH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"nwJ" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"nwQ" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/armory/lobby) -"nwR" = ( -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"nwZ" = ( -/obj/landmark/start{ - name = "Unknown" - }, -/turf/simulated/floor/wood/walnut, -/area/maintenance/firstdeck/aftstarboard) -"nxq" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/largecrate, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"nxs" = ( -/obj/floor_decal/corner/red, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"nxu" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"nxx" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/vending/cigarette{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/firstdeck) -"nxy" = ( -/obj/structure/table/woodentable/maple, -/obj/item/paper_bin, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/device/radio/intercom/locked/confessional{ - dir = 4; - pixel_x = -24 - }, -/obj/item/pen, -/obj/floor_decal/carpet/purple, -/obj/floor_decal/carpet/purple{ - dir = 8 - }, -/obj/floor_decal/carpet/purple{ - dir = 1 - }, -/obj/floor_decal/carpet/purple{ - dir = 9 - }, -/obj/floor_decal/carpet/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/main) -"nxF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"nxG" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"nxI" = ( -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/maintenance/firstdeck/foreport) -"nxJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"nxM" = ( -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/thirddeck/port) -"nxN" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/item/modular_computer/telescreen/preset/generic{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/nuke_storage) -"nxP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"nxU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 8 - }, -/obj/structure/sign/warning/pods/south{ - dir = 4; - pixel_x = -32 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"nxX" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/floor_decal/industrial/warning, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/hand_labeler, -/obj/item/stack/package_wrap/gift_wrap, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"nys" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"nyu" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "packageSort1" - }, -/obj/structure/plasticflaps/airtight, -/turf/simulated/floor/plating, -/area/quartermaster/office/post) -"nyw" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/constructable_frame/machine_frame, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"nyA" = ( -/obj/machinery/washing_machine, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/blue, -/obj/machinery/washing_machine{ - pixel_y = 19 - }, -/turf/simulated/floor/tiled/old_tile, -/area/crew_quarters/head) -"nyL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"nyP" = ( -/obj/floor_decal/corner/paleblue/full, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/cmo/cobed) -"nyQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/bluegrid, -/area/engineering/bluespace/chamber) -"nyU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"nyY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"nyZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"nza" = ( -/obj/structure/railing/mapped, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"nzu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/navbeacon/sierra/TD_fore1, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"nzv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"nzF" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/bridgedeck/starboard) -"nzL" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"nzU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"nzV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"nzW" = ( -/turf/simulated/wall/r_wall/hull, -/area/rnd/toxins) -"nzX" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/green/border{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/green/bordercorner2, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 6 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology - Main"; - dir = 1 - }, -/obj/machinery/smartfridge/secure/virology{ - req_access = null; - pixel_y = -30; - density = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"nAg" = ( -/obj/machinery/computer/ship/navigation{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/quartermaster/hangar/upper) -"nAk" = ( -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -24; - pixel_x = 8 - }, -/obj/machinery/button/alternate/door/bolts{ - dir = 1; - pixel_y = -24; - pixel_x = -2; - id_tag = "old_maintaince_privatedorm"; - name = "Lock" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dormintories) -"nAC" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"nAD" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/structure/bed/chair/padded/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/lino, -/area/command/chief_steward) -"nAF" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"nAL" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d3starboard) -"nAO" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/closet/secure_closet/scientist_sierra, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes/farwacubes, -/obj/item/storage/box/monkeycubes/neaeracubes, -/obj/item/storage/box/monkeycubes/stokcubes, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers, -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"nBj" = ( -/obj/structure/table/woodentable, -/obj/machinery/microwave{ - pixel_y = 12 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo/south) -"nBp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"nBy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/mopbucket, -/obj/item/mop, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"nBH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/orange/corner, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"nBI" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"nBS" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"nBW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "selfdestruct"; - name = "Delta Code Access Blast Door" - }, -/obj/machinery/button/blast_door{ - id_tag = "selfdestruct"; - name = "Self Destruct Access Blast Door Control"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/nuke_storage) -"nCh" = ( -/obj/floor_decal/corner/black{ - dir = 9 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/device/radio/phone/medbay, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"nCk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"nCl" = ( -/obj/structure/table/standard, -/obj/item/storage/box/beakers/insulated, -/obj/item/reagent_containers/glass/beaker/large, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"nCo" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"nCp" = ( -/obj/random/vendor/contraband/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"nCx" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/command/bsa) -"nCA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3starboard) -"nCE" = ( -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"nCI" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/thirddeck/foreport) -"nCK" = ( -/obj/machinery/atmospherics/unary/engine{ - dir = 8 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3port) -"nCN" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"nCP" = ( -/obj/machinery/door/blast/shutters{ - dir = 4; - id_tag = "security_permabrig_fitst_cell_shutters" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/sierra/brig) -"nDi" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"nDj" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"nDl" = ( -/obj/structure/table/rack, -/obj/machinery/button/blast_door{ - dir = 1; - id_tag = "telecoms_s"; - name = "Telecoms Blast Door"; - pixel_y = -22 - }, -/obj/item/stock_parts/circuitboard/ntnet_relay, -/obj/item/stock_parts/circuitboard/telecomms/broadcaster, -/obj/item/stock_parts/circuitboard/telecomms/bus, -/obj/item/stock_parts/circuitboard/telecomms/bus, -/obj/item/stock_parts/circuitboard/telecomms/server, -/obj/item/stock_parts/circuitboard/telecomms/server, -/obj/item/stock_parts/circuitboard/telecomms/receiver, -/obj/item/stock_parts/circuitboard/telecomms/processor, -/obj/item/stock_parts/circuitboard/telecomms/processor, -/turf/simulated/floor/tiled/steel_ridged, -/area/tcommsat/storage) -"nDt" = ( -/obj/machinery/button/alternate/door/bolts{ - id_tag = "medsafe_aft"; - name = "safe room door-control"; - pixel_y = 32 - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"nDA" = ( -/obj/item/ladder_mobile, -/obj/item/stack/cable_coil, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"nDB" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "ai_starboard_outer"; - name = "Engineering External Access" - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftport) -"nDC" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/airless, -/area/space) -"nDE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/reagentgrinder, -/obj/item/stack/material/phoron, -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"nDN" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "CO23p_out"; - initialize_directions = 1; - internal_pressure_bound = 1000; - internal_pressure_bound_default = 1000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/obj/structure/window/boron_reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d1starboard) -"nDP" = ( -/obj/structure/table/standard, -/obj/item/rolled_towel/fitness, -/obj/item/rolled_towel/fitness, -/obj/item/rolled_towel/fitness, -/obj/item/wrench, -/obj/item/stack/medical/bruise_pack, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/corner/black/three_quarters{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"nEo" = ( -/obj/structure/largecrate, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"nEt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"nEu" = ( -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"nEx" = ( -/obj/random/vendor/contraband/maintenance, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"nEy" = ( -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"nEz" = ( -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/black/border, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation) -"nEZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"nFc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"nFj" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/bar/cobed) -"nFk" = ( -/obj/floor_decal/corner/black/mono, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"nFl" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/catwalk, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/waterstore) -"nFm" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/port) -"nFp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals6, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"nFK" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/space_heater/stationary/on{ - pixel_y = 30; - set_temperature = 348.15 - }, -/obj/structure/bed/sauna_bench/middle/north, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sauna) -"nFM" = ( -/obj/structure/table/steel_reinforced, -/obj/item/modular_computer/tablet/lease/preset/command, -/obj/item/toy/figure/captain{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"nGc" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/structure/table/rack, -/obj/item/stack/material/glass{ - amount = 30 - }, -/obj/item/stack/material/glass{ - amount = 30 - }, -/obj/item/stack/material/glass/fifty, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"nGe" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/titanium, -/area/shuttle/petrov/gas) -"nGi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"nGl" = ( -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/corner/darkblue/bordercorner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"nGm" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/airlock_canisters) -"nGo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/thirddeck/center) -"nGt" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/abandoned_hydroponics) -"nGx" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/equipment) -"nGI" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head/deck3) -"nGO" = ( -/obj/machinery/light/spot, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics/third_deck_storage) -"nGT" = ( -/obj/structure/table/standard, -/obj/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/item/reagent_containers/food/snacks/candy/donor{ - pixel_y = 5 - }, -/obj/item/reagent_containers/food/snacks/candy/donor, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"nGU" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/power/tracker, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/reinforced, -/area/solar/bridge_starboard) -"nHd" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/random/maintenance, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"nHg" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/storage/firstaid/stab, -/obj/random/medical/lite, -/obj/random/medical/lite, -/obj/random/medical/lite, -/obj/random/medical/lite, -/obj/random/medical/lite, -/obj/item/storage/mirror{ - dir = 8; - pixel_x = -1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/power/apc/super/critical{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/heads/captain/secret_room) -"nHi" = ( -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"nHx" = ( -/obj/machinery/cryopod, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod3/station) -"nHz" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"nHD" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_sierra/junior, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"nHF" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/backstorage) -"nHI" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hardstorage) -"nHJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"nHR" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - id = "CO24p_in"; - injecting = 1; - use_power = 1 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d1port) -"nHX" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"nHZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"nIa" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"nIc" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/solar/bridge_starboard) -"nIf" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ - pixel_y = -4 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ - pixel_y = 4; - pixel_x = -5 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ - pixel_y = 6; - pixel_x = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"nIk" = ( -/obj/machinery/tele_beacon, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"nIo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"nIu" = ( -/obj/machinery/reagentgrinder, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"nIx" = ( -/obj/machinery/door/airlock/glass/security{ - id_tag = "detdoor"; - name = "Long Term Checkpoint"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/brig) -"nIB" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/forestarboard) -"nIK" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftport) -"nIN" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/floodlight{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"nIS" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/photocopier, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 4; - pixel_x = -14 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"nJe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/random/ironing_board_structure, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/laundry) -"nJl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/seconddeck/aft) -"nJm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"nJn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance/bolted{ - autoset_access = 0; - id_tag = "sauna_maint"; - name = "Sauna Maintenance" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sauna) -"nJr" = ( -/obj/machinery/light_switch{ - pixel_x = 24; - dir = 8 - }, -/obj/structure/hygiene/sink{ - pixel_y = -12 - }, -/obj/floor_decal/corner/grey/border, -/obj/floor_decal/corner/grey/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/grey/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/corner/grey/bordercorner, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"nJJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"nJX" = ( -/obj/floor_decal/corner/purple/three_quarters{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"nKb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"nKd" = ( -/obj/machinery/power/smes/buildable{ - charge = 5e+006; - input_attempt = 1; - output_attempt = 1 - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"nKk" = ( -/obj/structure/table/standard, -/obj/item/crowbar, -/obj/item/flame/lighter/random, -/obj/item/melee/baton/loaded, -/obj/item/screwdriver{ - pixel_y = 15 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"nKn" = ( -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/corner/orange/diagonal, -/turf/simulated/floor/tiled/steel_grid, -/area/security/prison) -"nKo" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"nKq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 9 - }, -/obj/machinery/computer/air_control{ - dir = 1; - name = "Nacelle Chamber Monitoring"; - sensor_name = "Chamber"; - sensor_tag = "ReacEng3" - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"nKz" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch{ - id_tag = "tox_airlock_exterior"; - locked = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/rnd/toxins) -"nKB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"nKD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"nKE" = ( -/obj/structure/lattice, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"nKQ" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan, -/obj/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/hangar_atmos) -"nKU" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 4; - id_tag = "eng3"; - name = "First Deck Starboard Access"; - pixel_x = -21 - }, -/obj/machinery/power/apc/high/critical{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"nLi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/navbeacon/sierra/TD_fore8, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"nLj" = ( -/turf/simulated/wall/r_wall/hull, -/area/storage/airlock_canisters) -"nLm" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"nLn" = ( -/obj/machinery/suit_cycler/security, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/suits) -"nLq" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/obj/machinery/door/window/brigdoor/northleft{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"nLH" = ( -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"nLL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"nLM" = ( -/obj/item/stack/material/plasteel{ - amount = 20 - }, -/obj/item/stack/material/glass{ - amount = 20 - }, -/obj/item/stack/material/glass{ - amount = 20 - }, -/obj/item/stack/material/aluminium/ten, -/obj/item/stack/material/plastic{ - amount = 20 - }, -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"nLX" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/aft) -"nMa" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - dir = 4; - frequency = 1380; - id_tag = "nuke_shuttle_dock_airlock_outer"; - name = "Docking Port Airlock" - }, -/obj/machinery/shield_diffuser, -/obj/machinery/access_button/airlock_exterior{ - frequency = 1380; - master_tag = "nuke_shuttle_dock_airlock"; - name = "exterior access button"; - pixel_y = 24; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"nMh" = ( -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"nMj" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/thirddeck/fore) -"nMk" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"nMC" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/solar/bridge_starboard) -"nMI" = ( -/obj/floor_decal/corner/red, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"nMP" = ( -/obj/machinery/button/holosign{ - id_tag = "chapel"; - pixel_x = 28 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"nMQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"nMX" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/structure/disposalpipe/up{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"nNh" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/flame/lighter/zippo, -/obj/item/clothing/mask/smokable/cigarette/cigar/havana, -/obj/machinery/camera/network/command{ - c_tag = "Command - Captain's office"; - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"nNi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"nNj" = ( -/obj/structure/curtain/medical, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"nNl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"nNm" = ( -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"nNq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"nNr" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/black/full, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"nNt" = ( -/obj/structure/table/marble, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/closet/walllocker{ - pixel_x = -28 - }, -/obj/item/storage/candle_box/scented, -/obj/item/storage/candle_box/scented, -/obj/item/storage/candle_box, -/obj/item/storage/candle_box, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"nNF" = ( -/turf/simulated/wall/r_wall/hull, -/area/vacant/monitoring) -"nNL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"nNS" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/obj/structure/sign/nanotrasen{ - dir = 4 - }, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod3/station) -"nNX" = ( -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"nOh" = ( -/obj/structure/table/standard, -/obj/item/stamp/hop, -/obj/item/sticky_pad/random, -/obj/floor_decal/carpet/blue2{ - dir = 1 - }, -/obj/floor_decal/carpet/blue2{ - dir = 4 - }, -/obj/floor_decal/carpet/blue2{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/hop) -"nOi" = ( -/obj/floor_decal/carpet/blue, -/obj/machinery/door/window/brigdoor/westleft{ - req_access = newlist(); - dir = 2 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa) -"nOs" = ( -/obj/decal/cleanable/dirt, -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/item/trash/semki, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"nOt" = ( -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"nOy" = ( -/obj/structure/bed/sofa/l/black{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/sleep/cryo/south) -"nOz" = ( -/obj/floor_decal/corner/red, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/device/synthesized_instrument/guitar, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"nOC" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"nOL" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"nOM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"nOP" = ( -/obj/machinery/door/blast/regular/escape_pod{ - id_tag = "escape_pod_8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/maintenance/exterior) -"nOQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"nOV" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/rd) -"nOW" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"nOZ" = ( -/obj/structure/wall_frame, -/obj/structure/grille, -/obj/structure/curtain/black, -/turf/simulated/floor/plating, -/area/vacant/cargo) -"nPb" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins/storage) -"nPf" = ( -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"nPg" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "heads_meeting"; - name = "Meeting Room Window Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "meeting_windows" - }, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) -"nPi" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"nPt" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/floor_decal/corner/purple/mono, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"nPx" = ( -/obj/floor_decal/carpet/purple{ - dir = 4 - }, -/obj/floor_decal/carpet/purple{ - dir = 1 - }, -/obj/floor_decal/carpet/purple{ - dir = 5 - }, -/obj/structure/bookcase/manuals/engineering, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/captain/beach) -"nPA" = ( -/obj/structure/closet/crate, -/obj/random/powercell, -/obj/random/powercell, -/obj/random/powercell, -/obj/decal/cleanable/cobweb2{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"nPC" = ( -/obj/floor_decal/industrial/warning/fulltile, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"nPN" = ( -/obj/floor_decal/borderfloor, -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/obj/floor_decal/corner/black/border, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation/second) -"nPW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/shuttlefuel) -"nPX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/structure/table/woodentable/walnut, -/obj/item/material/ashtray/glass, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"nQb" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/command{ - dir = 1; - id_tag = "pmdoor"; - name = "Head of Personnel"; - secured_wires = 1; - stripe_color = "#b7f27d" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/hop) -"nQi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"nQr" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/suits) -"nQs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor/stage) -"nQz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"nQL" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"nRf" = ( -/obj/structure/table/standard, -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/office) -"nRk" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"nRm" = ( -/obj/floor_decal/borderfloor, -/obj/machinery/light, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"nRw" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"nRy" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/tcommsat/chamber) -"nRA" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/power) -"nRD" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/industrial/danger{ - dir = 6 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/secure/briefcase, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"nRO" = ( -/obj/machinery/telecomms/processor/preset_one, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"nRV" = ( -/obj/machinery/bookbinder, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"nSa" = ( -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"nSr" = ( -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/unary/vent_pump{ - controlled = 0; - dir = 4; - external_pressure_bound = 105; - icon_state = "map_vent_in"; - pump_direction = 0; - use_power = 1 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"nSy" = ( -/obj/structure/dogbed, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/mob/living/simple_animal/hostile/commanded/rex, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/heads/office/hos/cobed) -"nSz" = ( -/obj/paint/black, -/turf/simulated/wall/ocp_wall, -/area/maintenance/incinerator) -"nSA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/bed/chair/padded/purple{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/entry) -"nSB" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"nSC" = ( -/obj/machinery/shipsensors, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"nSH" = ( -/obj/floor_decal/corner/red/diagonal, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"nSV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Warden"; - sort_type = "Warden" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"nSY" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"nTa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/bridge) -"nTl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/center) -"nTr" = ( -/obj/floor_decal/corner/black/border{ - dir = 9 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"nTu" = ( -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -32 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/slide_projector, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/corner/black/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"nTz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/space) -"nTC" = ( -/obj/wallframe_spawn/reinforced_phoron/titanium, -/obj/machinery/door/firedoor, -/obj/paint/nt_white, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "toxins_petrov_shutters"; - name = "Mixing Chamber Blast Shutters" - }, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/gas) -"nTD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/breakroom) -"nTE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"nTN" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"nTO" = ( -/obj/floor_decal/corner/purple/half, -/obj/machinery/light/spot, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"nTR" = ( -/obj/structure/bed/chair/padded/black{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"nUh" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"nUm" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/abandoned_hydroponics) -"nUp" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/sparker{ - id_tag = "engines"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - injecting = 1; - use_power = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d1port) -"nUq" = ( -/obj/structure/table/rack, -/obj/item/bodybag/rescue/loaded, -/obj/item/bodybag/rescue/loaded, -/obj/item/bodybag/rescue/loaded, -/obj/item/bodybag/rescue/loaded, -/obj/item/bodybag/rescue/loaded, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"nUv" = ( -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"nUw" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/structure/sign/deck/first{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"nUA" = ( -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"nUE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue) -"nUI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/corner/black{ - dir = 10 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"nUJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Cell Two"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"nUL" = ( -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/firstdeck/centralport) -"nUO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/prepainted, -/area/chapel/mortuary) -"nVa" = ( -/obj/machinery/vending/cola{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"nVe" = ( -/obj/wallframe_spawn/reinforced/polarized/full{ - id = "bridge_windows" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "bridge_ent"; - name = "Bridge Lockdown" - }, -/turf/simulated/floor/plating, -/area/bridge) -"nVh" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"nVj" = ( -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/fourthdeck/central_stairwell) -"nVr" = ( -/obj/machinery/atmospherics/omni/mixer{ - active_power_usage = 7500; - tag_north_con = 0.21; - tag_south = 1; - tag_south_con = 0.79; - tag_west = 2; - tag_north = 1 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"nVu" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Telecommunications"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/tcommsat/computer) -"nVz" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/head) -"nVB" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"nVG" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/structure/closet/crate/freezer/rations, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod3/station) -"nVP" = ( -/obj/structure/barricade, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"nVW" = ( -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/table/standard, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/floor_decal/industrial/warning, -/obj/item/anodevice{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/anodevice, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/scan) -"nVY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"nWa" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/iaa) -"nWj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"nWl" = ( -/obj/item/stool/padded, -/obj/floor_decal/corner/yellow/three_quarters{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/suplocker_room) -"nWt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod4/station) -"nWU" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"nXa" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 4; - target_pressure = 15000 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"nXn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"nXq" = ( -/obj/structure/ladder/up, -/obj/structure/catwalk, -/turf/simulated/open, -/area/space) -"nXt" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/water_cell) -"nXu" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/sign/xenoflora{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"nXw" = ( -/obj/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/firstdeck/forestarboard) -"nXy" = ( -/obj/structure/dispenser, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"nXG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/seconddeck/fore) -"nXH" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"nYa" = ( -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"nYh" = ( -/obj/structure/sign/warning/hot_exhaust, -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d3starboard) -"nYj" = ( -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"nYn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"nYD" = ( -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1starboard) -"nYL" = ( -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/machinery/washing_machine, -/turf/simulated/floor/wood/walnut, -/area/vacant/dormintories) -"nYM" = ( -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/computer/power_monitor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"nYO" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"nYR" = ( -/obj/shuttle_landmark/merc/dock, -/obj/shuttle_landmark/reaper/dock, -/turf/space, -/area/space) -"nYS" = ( -/obj/floor_decal/corner/green/bordercorner, -/obj/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"nZa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"nZb" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"nZd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"nZf" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/airlock_electronics/brace, -/obj/item/airlock_electronics/brace, -/obj/item/airlock_electronics/brace, -/obj/item/airlock_brace, -/obj/item/airlock_brace, -/obj/item/airlock_brace, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/material/twohanded/jack, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech) -"nZi" = ( -/obj/structure/largecrate, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"nZk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/starboard) -"nZw" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/machinery/computer/cryopod{ - pixel_x = -32 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod8/station) -"nZA" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/no_grille, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/storage/eva) -"nZF" = ( -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/seconddeck/port) -"nZH" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/gas) -"nZI" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"nZL" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"nZT" = ( -/obj/structure/sign/nanotrasen{ - dir = 1 - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/seconddeck/forestarboard) -"nZW" = ( -/obj/structure/closet/secure_closet/counselor{ - icon_state = "med" - }, -/obj/item/book/manual/psionics, -/obj/item/stack/wax{ - amount = 50 - }, -/obj/item/toy/figure/psychologist, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 6 - }, -/obj/item/storage/candle_box, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"oad" = ( -/obj/structure/railing/mapped{ - dir = 1; - icon_state = "railing0-1"; - init_color = "#aa5f61"; - color = "#aa5f61" - }, -/obj/structure/railing/mapped{ - dir = 4; - init_color = "#aa5f61"; - color = "#aa5f61" - }, -/turf/simulated/open, -/area/hallway/primary/firstdeck/central_stairwell) -"oae" = ( -/obj/machinery/cryopod, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"oaf" = ( -/obj/floor_decal/spline/fancy/wood/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"oah" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"oaj" = ( -/obj/structure/table/rack/dark, -/obj/item/stack/tile/carpetred/ten, -/obj/item/stack/tile/carpetpurple/ten, -/obj/item/stack/tile/carpetorange/ten, -/obj/item/stack/tile/carpetgreen/ten, -/obj/item/stack/tile/carpetblue2/ten, -/obj/item/stack/tile/carpetblue/ten, -/obj/item/stack/tile/carpet/ten, -/obj/floor_decal/spline/plain/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"oam" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"oao" = ( -/obj/structure/closet/emcloset, -/obj/random/crayon, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"oaw" = ( -/obj/structure/closet/secure_closet/crew/research, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/item/folder/nt, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/locker) -"oax" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"oaA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"oaF" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"oaH" = ( -/obj/structure/sign/emergonly{ - dir = 8; - pixel_x = 32 - }, -/obj/structure/bed/chair/padded/teal{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/sign/directions/med{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/medical/sleeper) -"oaI" = ( -/obj/machinery/space_heater, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"oaO" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/green/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/green/bordercorner2, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"oaQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"oaX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"oaY" = ( -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"obe" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall/prepainted, -/area/medical/surgery/second) -"obf" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/maintenance, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"obk" = ( -/obj/floor_decal/corner/black{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"obl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"obm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/bed/chair, -/obj/spider/stickyweb, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level1) -"obq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"obB" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"obE" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/quartermaster/hangar/upper) -"obG" = ( -/obj/landmark{ - name = "Observer-Start" - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/center) -"obI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"obN" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"obP" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"obS" = ( -/obj/structure/railing/mapped, -/turf/space, -/area/space) -"obT" = ( -/obj/floor_decal/corner/darkblue, -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge/storage) -"obZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"oca" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/test_room) -"oct" = ( -/obj/floor_decal/corner/black, -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/structure/sign/warning/nosmoking_2{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"ocu" = ( -/obj/machinery/door/airlock/highsecurity{ - dir = 4; - name = "Gravitational Generator" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "gravgen-antirad-shielding"; - name = "Gravitational Generator Shielding" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"ocv" = ( -/obj/structure/inflatable/door, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"ocw" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/carpet/green{ - dir = 1 - }, -/turf/simulated/floor/carpet/green, -/area/medical/mentalhealth/therapyroom) -"ocE" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/bed/padded, -/obj/item/bedsheet/brown, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/bunk) -"ocG" = ( -/obj/structure/roller_bed, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"ocH" = ( -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"ocQ" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cargo_l) -"ocW" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/random/closet, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"ocY" = ( -/obj/structure/bed/sofa/l/black, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"odj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"odm" = ( -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"odp" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/random/powercell, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/engineering/auxpower) -"odq" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 8 - }, -/obj/machinery/atmospherics/valve/shutoff/supply, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"odv" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"odw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 - }, -/obj/machinery/power/apc/critical{ - name = "west bump"; - dir = 8; - pixel_x = -21 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"odA" = ( -/obj/structure/closet, -/obj/item/reagent_containers/food/snacks/liquidfood, -/obj/item/reagent_containers/food/snacks/liquidfood, -/obj/item/reagent_containers/food/snacks/liquidfood, -/obj/item/reagent_containers/food/snacks/liquidfood, -/obj/item/reagent_containers/food/snacks/liquidfood, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/utility) -"odC" = ( -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/device/megaphone, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"odF" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/machinery/rotating_alarm/security_alarm{ - pixel_y = 13 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"odG" = ( -/obj/structure/closet/coffin/wooden, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/corner/black/mono, -/obj/machinery/camera/network/second_deck{ - c_tag = "Chapel - Mortuary"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"odH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/door/airlock/command{ - id_tag = "rddoor"; - name = "Research Director"; - req_access = newlist(); - secured_wires = 1; - stripe_color = "#ffffff" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/heads/office/rd) -"odI" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/green, -/turf/simulated/floor/carpet/green, -/area/medical/wardhallway) -"odS" = ( -/turf/simulated/wall/prepainted, -/area/medical/infirmreception) -"oea" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/full, -/obj/machinery/light, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"oed" = ( -/obj/floor_decal/corner/yellow/three_quarters{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/material/clipboard, -/obj/item/folder/yellow, -/obj/item/storage/fancy/smokable/dromedaryco{ - pixel_y = 6; - pixel_x = -4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/quartermaster/suplocker_room) -"oeg" = ( -/obj/machinery/organ_printer/robot/mapped, -/obj/structure/sign/warning/nosmoking_1{ - dir = 4; - pixel_x = -32 - }, -/obj/floor_decal/corner/grey_alt/three_quarters, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"oej" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/alternate/door{ - pixel_y = 9; - pixel_x = -27; - id_tag = "hangar_hallway_doors"; - name = "Starboard Airlocks Control" - }, -/obj/machinery/button/alternate/door{ - pixel_y = -7; - pixel_x = -27; - id_tag = "hangar_ts_doors"; - name = "Port Airlocks Control" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"oen" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/science{ - name = "Explorer Prep" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/exploration) -"oeo" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/lino, -/area/command/chief_steward) -"oet" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"oex" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sauna) -"oeG" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"oeI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/corner/lime/bordercorner, -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"oeM" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/bar/cobed) -"oeQ" = ( -/obj/machinery/telecomms/server/presets/medical, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"oeU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/turf/simulated/wall/r_wall/hull, -/area/engineering/atmos) -"oeV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"oeZ" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/iaa/high_sec) -"ofb" = ( -/obj/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing/mapped, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"ofg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"ofk" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/adherent) -"ofy" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"ofG" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"ofH" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 4; - id_tag = "sd_starboard_pump" - }, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"ofJ" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"ofK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id_tag = "hangar_ts_shutters"; - name = "Hangar Deck Hallway Shutters"; - opacity = 0 - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown3_4" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/civilian{ - name = "Visitors"; - id_tag = "hangar_hallway_doors"; - autoset_access = 0 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/fore) -"ofL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/corner, -/turf/simulated/floor/plating, -/area/maintenance/substation/seconddeck) -"ofN" = ( -/obj/shuttle_landmark/sierra/deck1/exploration_shuttle, -/turf/space, -/area/space) -"ofO" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"ofP" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs) -"ofQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"ofR" = ( -/obj/machinery/hologram/holopad/longrange, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/deckofficer) -"ofW" = ( -/turf/simulated/floor/tiled/white, -/area/medical/maintenance_equipstorage) -"ofY" = ( -/obj/machinery/air_sensor/nacelle/first/co2, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d3starboard) -"ogq" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - id_tag = "petrov_shuttle_dock_pump" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/oxygen_pump{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"ogA" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"ogC" = ( -/turf/simulated/wall/prepainted, -/area/vacant/mess) -"ogG" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"ogH" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"ogN" = ( -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/foreport) -"ogT" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/maintenance, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar/upper) -"ogW" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/prepainted, -/area/security/sierra/hallway) -"ohb" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_2_berth_hatch"; - name = "Escape Pod Two" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/center) -"ohj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"ohs" = ( -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/firstdeck/forestarboard) -"ohu" = ( -/obj/machinery/constructable_frame/computerframe, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"ohw" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"ohy" = ( -/obj/machinery/chem_master, -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/purple/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"ohz" = ( -/obj/structure/bed/chair/office/red{ - dir = 8 - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"ohE" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/heads/office/rd) -"ohM" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"ohN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"ohW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"oie" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"oif" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod2/station) -"oig" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/quartermaster/office/post) -"oii" = ( -/obj/machinery/computer/modular/preset/security{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/quartermaster/hangar/upper) -"oil" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sleep/bunk) -"oin" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"oiu" = ( -/obj/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/item/material/twohanded/jack, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack/dark, -/obj/item/ladder_mobile, -/obj/item/clothing/glasses/welding, -/obj/item/weldingtool, -/obj/item/welder_tank, -/obj/item/stack/tile/floor{ - amount = 5 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"oiz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Solar Control - Third Deck - Starboard"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"oiC" = ( -/obj/structure/table/rack, -/obj/item/aiModule/reset, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/blue, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/southright{ - dir = 8; - name = "AI Maintenance" - }, -/obj/item/aiModule/nanotrasen, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"oiO" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"oiW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"oja" = ( -/turf/simulated/floor/reinforced/hydrogen, -/area/engineering/atmos) -"ojh" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 4; - id_tag = "td_port" - }, -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"ojk" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/visitors) -"ojo" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/bridge) -"oju" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"ojv" = ( -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"ojy" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "virology_access"; - name = "Virology Lab Access Console"; - req_access = list("ACCESS_VIRO"); - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/seconddeck/starboard) -"ojM" = ( -/obj/floor_decal/carpet/purple{ - dir = 4 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/rd, -/obj/landmark/start{ - name = "Research Director" - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/office/rd/cobed) -"ojN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id_tag = "hangar_hallway_shutters"; - name = "Hangar Deck Hallway Shutters"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown3_4" - }, -/obj/wallframe_spawn/reinforced, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"ojR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftstarboard) -"ojZ" = ( -/obj/structure/table/steel_reinforced, -/obj/floor_decal/corner/black/mono, -/obj/item/storage/box/glasses/square, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"okd" = ( -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/structure/curtain/open/privacy, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"okf" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"okg" = ( -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"okh" = ( -/obj/structure/lattice, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"oki" = ( -/obj/machinery/camera/ai/core{ - dir = 4; - c_tag = "AI Core - Aft Port" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"okj" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/aft) -"okl" = ( -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/foreport) -"okm" = ( -/obj/floor_decal/ntlogo{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"okp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"okr" = ( -/obj/random/trash, -/obj/structure/window/basic, -/obj/structure/closet/toolcloset, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"oku" = ( -/obj/structure/table/reinforced, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/item/reagent_containers/spray/sterilizine, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery) -"okx" = ( -/obj/shuttle_landmark/escape_pod/start/pod11, -/obj/wallframe_spawn/reinforced/titanium, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/escape_pod11/station) -"okA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"okD" = ( -/obj/machinery/door/airlock/engineering{ - name = "Bluespace Drive"; - req_access = newlist(); - secured_wires = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/bluespace) -"okE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 8; - display_name = "Aft Dock (NanoTrasen)"; - id_tag = "petrov_shuttle_dock"; - pixel_x = 20; - pixel_y = 32; - req_access = list("ACCESS_PETROV"); - tag_exterior_door = "petrov_shuttle_dock_outer"; - tag_interior_door = "petrov_shuttle_dock_inner"; - tag_exterior_sensor = "petrov_shuttle_dock_sensor"; - tag_airpump = "petrov_shuttle_dock_pump"; - frequency = 1380 - }, -/obj/floor_decal/borderfloorwhite, -/obj/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/fourthdeck/aft) -"okF" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"okK" = ( -/obj/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/obj/item/folder/yellow{ - pixel_y = -4; - pixel_x = 9 - }, -/obj/item/folder/blue{ - pixel_y = 5; - pixel_x = 3 - }, -/obj/item/pen, -/obj/item/reagent_containers/food/drinks/cans/coffeecola{ - pixel_y = -4; - pixel_x = -8 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"okN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"okX" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/maintenance, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/starboard) -"okY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/center) -"okZ" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/recharger/wallcharger{ - pixel_y = 24 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"olf" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/reinforced, -/area/space) -"olg" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"olu" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"olw" = ( -/obj/structure/sign/warning/airlock{ - pixel_y = 32 - }, -/obj/structure/railing/mapped, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"oly" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/radioactive{ - dir = 8; - pixel_x = 32 - }, -/obj/machinery/space_heater, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"olO" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/eva) -"olX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"oma" = ( -/obj/structure/sign/warning/secure_area{ - dir = 1; - pixel_y = -32 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/thirddeck/fore) -"omc" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/hygiene/shower{ - dir = 4; - pixel_x = -9 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"omf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"omi" = ( -/obj/fluid_mapped, -/obj/item/clothing/under/swimsuit/green, -/obj/item/bananapeel, -/obj/random/junk, -/mob/living/simple_animal/aquatic/fish/grump, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"omr" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"omy" = ( -/turf/simulated/wall/prepainted, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"omE" = ( -/obj/structure/railing/mapped, -/obj/floor_decal/spline/fancy/black, -/obj/structure/flora/ausbushes/grassybush, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"omF" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/door_timer/cell_3{ - pixel_x = 32 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"omG" = ( -/obj/floor_decal/corner/darkblue/border, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/camera/network/command{ - c_tag = "Command - Briefing Room"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"omT" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/seconddeck/aftstarboard) -"omW" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"omZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"ona" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"onp" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_north = 1; - tag_south = 2; - tag_west = 3 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"ont" = ( -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"onv" = ( -/obj/machinery/power/smes/buildable/preset/sierra/substation{ - RCon_tag = "Substation - First Deck" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/firstdeck) -"onC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"onG" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"onI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/fore) -"onJ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/medical/mortus{ - dir = 4; - name = "Chapel Office" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/office) -"onN" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"onW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - dir = 4; - name = "Storage"; - req_access = newlist() - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/storage) -"onX" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/maintenance{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/foreport) -"onY" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"oob" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/closet, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"ooq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/structure/bed/chair/office/comfy/blue{ - dir = 8 - }, -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/iaa/iso_quarters) -"oor" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/aft) -"oou" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"oow" = ( -/obj/machinery/sleeper/survival_pod{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/maintenance_equipstorage) -"ooC" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/industrial/danger, -/obj/machinery/vending/snack, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"ooE" = ( -/obj/machinery/door/window/westright{ - name = "Containment Pen"; - req_access = newlist(); - dir = 1 - }, -/obj/machinery/door/window/eastleft{ - name = "Containment Pen"; - req_access = newlist(); - dir = 2 - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "xenobio4"; - name = "Containment Blast Doors" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"ooG" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"ooK" = ( -/obj/structure/table/standard, -/obj/item/storage/bible, -/obj/floor_decal/corner/black/full, -/obj/machinery/camera/network/security{ - c_tag = "Security - OFD"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/command/bsa) -"ooS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/substation/bridgedeck) -"ooV" = ( -/obj/floor_decal/corner/grey/full, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"ooZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"opb" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hardstorage) -"opd" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/stock_parts/circuitboard/arcade/battle, -/obj/item/stock_parts/circuitboard/arcade/orion_trail, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech) -"ope" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/hydrogen, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/canister) -"opm" = ( -/obj/machinery/atmospherics/valve/shutoff/supply, -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"opr" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"opv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/command/bsa) -"opD" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#4c535b" - }, -/area/quartermaster/hangar/upper) -"opE" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/medical{ - name = "Patient Ward" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"opF" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"opM" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/compactor) -"opR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"opX" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo/firstdeck) -"oqb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"oqd" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_s" - }, -/obj/paint/red, -/obj/paint_stripe/red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod8/station) -"oqf" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/black/border, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/device/camera, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/camera_film{ - pixel_y = 6; - pixel_x = 7 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/iaa/cobed) -"oqk" = ( -/obj/machinery/computer/ship/navigation{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/mauve/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"oqp" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"oqq" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"oqr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/forensic/lab) -"oqs" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - id_tag = "xenobio3_vent"; - name = "Chamber Vent" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"oqu" = ( -/obj/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/machinery/floodlight{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"oqv" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"oqx" = ( -/obj/structure/hygiene/shower{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/gym) -"oqy" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"oqA" = ( -/obj/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"oqC" = ( -/obj/machinery/lapvend{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"oqK" = ( -/obj/structure/closet/emcloset, -/obj/item/tank/air, -/obj/item/wrench, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/substation/bridgedeck) -"oqU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft) -"ora" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"ore" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"orf" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_east = 4; - tag_north = 3; - tag_south = 2; - tag_west = 1 - }, -/obj/floor_decal/industrial/outline/green, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"oro" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"oru" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/staging) -"orC" = ( -/obj/structure/table/woodentable/mahogany, -/obj/floor_decal/carpet/red{ - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"orR" = ( -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"orY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"osm" = ( -/obj/floor_decal/techfloor/orange, -/obj/machinery/rotating_alarm/supermatter{ - pixel_y = -14; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"osy" = ( -/obj/machinery/atmospherics/tvalve/mirrored/digital{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/gas) -"osJ" = ( -/obj/shuttle_landmark/merchant/out, -/turf/space, -/area/space) -"osL" = ( -/obj/machinery/door/window/westright, -/obj/machinery/door/window/eastright, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sauna) -"osP" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/primary/thirddeck/central_stairwell) -"ote" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/floor_decal/carpet/blue{ - dir = 1 - }, -/obj/floor_decal/carpet/blue{ - dir = 8 - }, -/obj/floor_decal/carpet/blue{ - dir = 9 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/captain) -"oti" = ( -/obj/machinery/tele_beacon, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"otj" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"otk" = ( -/obj/structure/closet/l3closet/virology, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology) -"otl" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"oto" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery/second) -"otx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"otE" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"otI" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"otJ" = ( -/obj/structure/closet/crate/medical, -/obj/item/bodybag/rescue, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"otN" = ( -/obj/machinery/floodlight{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/airlock_sensor/airlock_interior{ - frequency = 1331; - id_tag = "calypso_shuttle_interior_sensor"; - master_tag = "calypso_shuttle"; - pixel_x = -25; - req_access = list("ACCESS_EXPEDITION_SHUTTLE") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/airlock) -"otO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod4/station) -"otS" = ( -/obj/structure/bed/chair/padded/green{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"otU" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"ouc" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/civilian{ - dir = 8; - autoset_access = 0; - name = "Central Stairwell" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/central_stairwell) -"oue" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"ouf" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"oum" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/flasher{ - dir = 4; - id_tag = "ai_core"; - pixel_x = -24 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"ouo" = ( -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge/storage) -"ouq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/warning/smoking{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"out" = ( -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/railing/mapped, -/turf/simulated/floor/grass/cut, -/area/hallway/primary/bridgedeck/center) -"ouu" = ( -/obj/structure/table/standard, -/obj/item/modular_computer/laptop/preset/custom_loadout/standard, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sleep/bunk) -"ouw" = ( -/turf/simulated/wall/r_wall/hull, -/area/medical/mentalhealth/therapyroom) -"ouA" = ( -/obj/structure/table/steel, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"ouB" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"ouD" = ( -/obj/floor_decal/corner/black/half{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/ship) -"ouJ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/machinery/disposal, -/obj/floor_decal/corner/green/border{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft_stairwell) -"ouU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"ouV" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"ouZ" = ( -/obj/machinery/cell_charger, -/obj/item/cell/standard, -/obj/random/powercell, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/table/steel_reinforced, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"ove" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"ovl" = ( -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"ovq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"ovu" = ( -/obj/structure/table/woodentable/maple, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"ovz" = ( -/obj/item/paper/sticky{ - name = "I am door"; - pixel_y = -25 - }, -/turf/simulated/floor/plating, -/area/vacant/cargo) -"ovB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"ovG" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"ovI" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"ovQ" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"ovT" = ( -/obj/machinery/computer/modular/preset/aislot/sysadmin{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"ovV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/civilian{ - locked = 1 - }, -/obj/item/taperoll/engineering/applied, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/dungeon) -"owd" = ( -/obj/machinery/computer/ship/disperser{ - dir = 4 - }, -/obj/floor_decal/corner/black/full, -/turf/simulated/floor/tiled/dark, -/area/command/bsa) -"owj" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/air_sensor{ - id_tag = "BSDrive" - }, -/turf/simulated/floor/bluegrid, -/area/engineering/bluespace/chamber) -"owl" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/no_grille, -/turf/simulated/floor/plating, -/area/storage/eva) -"ows" = ( -/obj/structure/bed/chair/rounded/blue, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"owx" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"owy" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/structure/closet/firecloset, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Fore Hallway - OFD" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"owB" = ( -/obj/structure/table/reinforced, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/radio/intercom/department/medbay{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery) -"owI" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/greengrid, -/area/engineering/gravitaional_generator) -"owN" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"owS" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/titanium, -/area/shuttle/petrov/equipment) -"owU" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"owY" = ( -/obj/structure/catwalk, -/obj/structure/table/standard, -/obj/random/toolbox, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"oxa" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"oxc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"oxh" = ( -/obj/structure/table/rack, -/obj/item/rig/medical/equipped, -/obj/item/clothing/mask/gas/half, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/northright{ - dir = 4; - name = "RIG"; - req_access = newlist() - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"oxi" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"oxn" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/starboard) -"oxu" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"oxy" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"oxC" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass/command{ - name = "Central Stairwell" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/bridgedeck/central_stairwell) -"oxE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"oxG" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/surgery) -"oxV" = ( -/obj/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/structure/table/rack, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/screwdriver, -/obj/item/crowbar, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"oxW" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id_tag = "hangar_ts_shutters"; - name = "Hangar Deck Hallway Shutters"; - opacity = 0 - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown3_4" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/civilian{ - name = "Visitors"; - id_tag = "hangar_hallway_doors"; - autoset_access = 0 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/fore) -"oyb" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/black/border{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation/second) -"oyg" = ( -/obj/structure/ladder/up, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"oyl" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/lounge/upper) -"oym" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"oyp" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftport) -"oys" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level2) -"oyB" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"oyH" = ( -/obj/structure/table/woodentable/walnut, -/obj/structure/flora/pottedplant/shoot{ - pixel_y = 18; - pixel_x = -7 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/random/toy, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"oyN" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"oyP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"oyR" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"ozf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "eng1_inner"; - name = "Third Deck Starboard Nacelle Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/thruster/d3starboard) -"ozh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"ozj" = ( -/obj/structure/table/woodentable_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/command/chief_steward) -"ozl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"ozr" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westright{ - dir = 2; - name = "Medical Reception" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_main_reg"; - name = "Infirmary Entry Shutters" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/infirmreception) -"ozv" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/storage) -"ozA" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/maintenance{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftstarboard) -"ozF" = ( -/obj/structure/largecrate, -/obj/random/maintenance, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"ozH" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 4; - id_tag = "sd_port_pump" - }, -/obj/machinery/airlock_sensor{ - id_tag = "sd_port_sensor"; - master_tag = "sd_port"; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"ozR" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/bed/chair/padded/blue, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"oAb" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/bunk) -"oAc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"oAe" = ( -/obj/structure/bed/chair/comfy/brown, -/obj/floor_decal/carpet/green{ - dir = 4 - }, -/obj/floor_decal/carpet/green{ - dir = 1 - }, -/obj/floor_decal/carpet/green{ - dir = 5 - }, -/turf/simulated/floor/carpet/green, -/area/medical/mentalhealth/therapyroom) -"oAi" = ( -/obj/machinery/computer/operating{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/xenobiology/level1) -"oAj" = ( -/obj/structure/closet/l3closet/security, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/item/clothing/suit/bio_suit/security, -/obj/item/clothing/head/bio_hood/security, -/obj/item/clothing/mask/gas/half, -/obj/item/tank/oxygen_emergency_extended, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/suits) -"oAk" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - id_tag = "null"; - name = "Captain's office"; - secured_wires = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/captain) -"oAm" = ( -/obj/machinery/atmospherics/valve, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"oAy" = ( -/obj/floor_decal/corner/green/border{ - dir = 5 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"oAB" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"oAD" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"oAH" = ( -/turf/simulated/wall/prepainted, -/area/command/exploration_leader) -"oAM" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"oAZ" = ( -/obj/random/obstruction, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"oBg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"oBh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"oBk" = ( -/obj/wallframe_spawn/reinforced/polarized/no_grille/regular{ - id = "private_cafe_windows" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/cafe/upper) -"oBo" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/industrial/danger{ - dir = 9 - }, -/obj/structure/table/steel, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"oBC" = ( -/obj/structure/lattice, -/obj/floor_decal/industrial/traffic{ - dir = 4 - }, -/obj/floor_decal/corner/black/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"oBK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/navbeacon/sierra/TD_fore4, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"oBR" = ( -/obj/structure/closet/emcloset/anchored, -/obj/floor_decal/corner/green/three_quarters{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hydroponics) -"oBS" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"oBW" = ( -/obj/structure/railing/mapped{ - dir = 4; - init_color = "#b19664"; - color = "#b19664" - }, -/turf/simulated/open, -/area/hallway/primary/thirddeck/central_stairwell) -"oCa" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"oCi" = ( -/obj/shuttle_landmark/skipjack/deck5, -/turf/space, -/area/space) -"oCm" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"oCq" = ( -/obj/structure/bed/sofa/m/beige{ - dir = 10 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"oCu" = ( -/obj/machinery/door/blast/regular/escape_pod{ - id_tag = "escape_pod_6" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/maintenance/exterior) -"oCv" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "bridge_windows" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/bridge) -"oCy" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/recharger, -/obj/machinery/camera/network/security{ - c_tag = "Security - Armory Lobby"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"oCI" = ( -/obj/structure/bed/chair/office/comfy/red{ - dir = 8 - }, -/obj/landmark/start{ - name = "Head of Security" - }, -/obj/machinery/button/alternate/door{ - desc = "A remote control-switch for the office door."; - dir = 4; - id_tag = "hosdoor"; - name = "Office Door Control"; - pixel_x = -24; - pixel_y = 21; - req_access = list("ACCESS_HEAD_OF_SECURITY") - }, -/obj/machinery/keycard_auth/sierra{ - pixel_x = -25; - pixel_y = -23 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"oCK" = ( -/obj/structure/adherent_bath, -/obj/structure/sign/warning/fire{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/crystal, -/area/crew_quarters/adherent) -"oCT" = ( -/obj/machinery/door/airlock/civilian{ - name = "Showers" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/gym) -"oCW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"oCZ" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"oDb" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"oDc" = ( -/obj/floor_decal/corner/grey/full, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/device/flashlight/lamp/lava/blue{ - pixel_y = -2; - pixel_x = 7 - }, -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"oDh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"oDs" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/floor_decal/spline/plain/yellow{ - dir = 8 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 15 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/item/shovel, -/obj/item/shovel, -/obj/item/storage/box/mousetraps, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"oDz" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"oDE" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"oDI" = ( -/obj/floor_decal/corner/red, -/obj/structure/bed/chair/padded/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"oDJ" = ( -/obj/machinery/disposal, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"oDO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"oDP" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/floor_decal/industrial/warning/fulltile, -/obj/floor_decal/industrial/danger{ - dir = 9 - }, -/obj/machinery/camera/network/hangar{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar) -"oDQ" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"oDU" = ( -/obj/floor_decal/techfloor/corner, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"oDV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"oDY" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 4; - id_tag = "eng2"; - name = "Third Deck Port Nacelle Access"; - pixel_x = -21; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/high/critical{ - pixel_y = -24; - name = "south bump" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Fourth Deck - Port Necelle - Airlock"; - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"oEg" = ( -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/maintenance/abandoned_hydroponics) -"oEl" = ( -/obj/floor_decal/techfloor/orange, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"oEm" = ( -/obj/structure/table/woodentable/maple, -/obj/item/storage/box/cups, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"oEn" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"oEp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"oEA" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/south) -"oED" = ( -/obj/structure/bed/sofa/r/beige{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/cafe) -"oEH" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/obj/paint_stripe/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/sierra/forensic/lab) -"oEN" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "packageSort1" - }, -/obj/structure/sign/warning/moving_parts{ - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/quartermaster/office/post) -"oEO" = ( -/obj/structure/table/woodentable_reinforced/ebony, -/obj/item/device/flashlight/lamp/lava/red{ - pixel_y = 11; - pixel_x = 3 - }, -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/heads/office/hos/cobed) -"oEU" = ( -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"oEW" = ( -/obj/random/junk, -/turf/simulated/floor/tiled, -/area/maintenance/abandoned_hydroponics) -"oFa" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"oFb" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Surgery - Operation Theatre One"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery) -"oFf" = ( -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/medical/virology/ward) -"oFg" = ( -/obj/decal/cleanable/blood, -/obj/floor_decal/industrial/outline/red, -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"oFq" = ( -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"oFs" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"oFB" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/industrial/danger{ - dir = 10 - }, -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/camera/network/command{ - c_tag = "Command - Bridge Entrance"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"oFI" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/port) -"oFK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"oFS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"oFU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/foreport) -"oGe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"oGg" = ( -/obj/floor_decal/corner/blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"oGh" = ( -/obj/structure/catwalk, -/obj/structure/handrail{ - dir = 8 - }, -/turf/space, -/area/space) -"oGi" = ( -/obj/structure/table/marble, -/obj/item/material/chopping_board, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"oGo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"oGs" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Internal Affairs Agent"; - sort_type = "Internal Affairs Agent" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"oGx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"oGC" = ( -/obj/machinery/disposal, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled, -/area/rnd/office) -"oGD" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"oGG" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/pump, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"oGL" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/railing/mapped, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/sign/warning/nosmoking_1{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/waterstore) -"oGN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"oGP" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/floodlight{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"oGS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"oGV" = ( -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/filingcabinet{ - pixel_x = -10 - }, -/obj/structure/filingcabinet, -/obj/structure/filingcabinet{ - pixel_x = 10 - }, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"oGX" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"oGZ" = ( -/obj/structure/fitness/punchingbag, -/obj/structure/sign/poster/nyc/wanted{ - pixel_y = 32 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"oHh" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 21; - dir = 8 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/heads/office/hos/cobed) -"oHt" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"oHu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"oHC" = ( -/obj/structure/hygiene/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/decal/cleanable/dirt, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled/freezer, -/area/vacant/sauna) -"oHF" = ( -/obj/machinery/door/airlock/civilian{ - name = "Cafe" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"oHN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head/deck3) -"oHQ" = ( -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"oHV" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"oHY" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"oIf" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/seconddeck) -"oIh" = ( -/obj/machinery/organ_printer/flesh/mapped, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery/second) -"oIi" = ( -/obj/structure/stairs/east, -/obj/structure/sign/directions/bridge{ - pixel_y = -24; - dir = 4 - }, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_y = -31 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/central_stairwell) -"oIo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"oIv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/turret_protected/ai_cyborg_station) -"oIB" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"oIE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 4 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"oIG" = ( -/obj/structure/railing/mapped, -/obj/structure/bed/sofa/l/blue, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"oIZ" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"oJb" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "observation_shielding"; - name = "Observation Shield" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/dungeon_master_lounge) -"oJd" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/structure/bed/chair/office/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/port) -"oJi" = ( -/obj/structure/bed/chair/padded/blue{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"oJp" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/obj/machinery/computer/air_control{ - dir = 8; - input_tag = "n2_in"; - name = "Nitrogen Supply Control"; - output_tag = "n2_out"; - sensor_name = "Tank"; - sensor_tag = "n2_sensor" - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"oJs" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/containment) -"oJt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"oJw" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/full{ - id = "rd_windows" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/rd) -"oJx" = ( -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/corner/darkblue/bordercorner, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"oJA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"oJH" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/machinery/power/smes/buildable/preset/sierra/hangar{ - RCon_tag = "Substation - Shield" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shield/thirddeck) -"oJN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"oJT" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"oKq" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "SupermatterPort"; - name = "Reactor Blast Door" - }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"oKt" = ( -/obj/machinery/telecomms/server/presets/engineering, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"oKz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"oKA" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/obj/structure/ladder/up, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/bar/cobed) -"oKB" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/obj/structure/sign/poster/nyc/wanted{ - pixel_x = 32 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Aft Hallway"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"oKG" = ( -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 1; - id_tag = "ai_core_pump" - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techmaint, -/area/turret_protected/ai_teleport) -"oKJ" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"oKN" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/corner/grey/three_quarters{ - dir = 4 - }, -/obj/structure/flora/pottedplant/minitree, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"oKR" = ( -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"oKT" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa/high_sec) -"oLd" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1; - color = "#393f43"; - init_color = "#393f43" - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/fourthdeck/central_stairwell) -"oLh" = ( -/obj/structure/table/steel, -/obj/item/rcd_ammo, -/obj/item/rcd_ammo, -/obj/item/rcd_ammo, -/obj/item/rcd_ammo, -/obj/item/rcd_ammo, -/obj/item/rcd_ammo, -/obj/item/rcd, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/machinery/camera/network/command{ - c_tag = "Command - Chief Engineer"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"oLi" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"oLl" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/ocp_wall, -/area/shuttle/petrov/gas) -"oLo" = ( -/obj/shuttle_landmark/escape_pod/start/pod2, -/obj/wallframe_spawn/reinforced/titanium, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/escape_pod2/station) -"oLp" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"oLr" = ( -/obj/machinery/computer/mining, -/obj/machinery/door/firedoor, -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar) -"oLA" = ( -/obj/item/stool/padded/red, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/aftstarboard) -"oLF" = ( -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"oLN" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"oLY" = ( -/obj/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled, -/area/maintenance/abandoned_hydroponics) -"oMa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/gym) -"oMg" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/bed/chair/armchair/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"oMi" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"oMx" = ( -/obj/item/storage/secure/safe{ - pixel_y = -24 - }, -/obj/structure/filingcabinet{ - pixel_x = 10 - }, -/obj/structure/filingcabinet, -/obj/structure/filingcabinet{ - pixel_x = -10 - }, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/folder/yellow, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder, -/obj/item/folder, -/obj/item/folder, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa/high_sec) -"oMG" = ( -/obj/machinery/vending/tool{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"oMI" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/sofa/l/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"oMJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/machinery/sleeper, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod3/station) -"oMM" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/canister) -"oMW" = ( -/turf/simulated/wall/r_wall/hull, -/area/quartermaster/hangar_stairs) -"oMX" = ( -/obj/machinery/computer/modular/preset/dock{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"oMY" = ( -/obj/floor_decal/carpet/blue2{ - dir = 8 - }, -/obj/floor_decal/carpet/blue2, -/obj/floor_decal/carpet/blue2{ - dir = 10 - }, -/obj/structure/dogbed, -/mob/living/simple_animal/passive/corgi/Ian, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/hop/cobed) -"oNi" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/floor_decal/techfloor/hole{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/servers) -"oNj" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/curtain/open/bed, -/obj/floor_decal/carpet/red{ - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/iaa/cobed) -"oNm" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"oNn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"oNp" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1441; - id = "o2_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos) -"oNF" = ( -/obj/structure/holoplant, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sauna) -"oNN" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/solar/bridge_port) -"oNQ" = ( -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/structure/railing/mapped, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"oNZ" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/suits) -"oOc" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"oOh" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/solar/bridge_port) -"oOi" = ( -/obj/floor_decal/corner/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"oOk" = ( -/obj/structure/bookcase/manuals/security, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"oOm" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"oOn" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/storage/primary) -"oOr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"oOu" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 8 - }, -/obj/machinery/photocopier, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"oOB" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/power/smes/buildable/preset/sierra/substation{ - RCon_tag = "Utility - Second Backup" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/auxpower) -"oOH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"oOJ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/space) -"oOK" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/wall/r_wall/hull, -/area/turret_protected/ai_teleport) -"oOL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"oOO" = ( -/obj/structure/table/rack, -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/obj/item/rig/command/hos/equipped, -/obj/item/clothing/mask/gas/half, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/brigdoor/westleft{ - id_tag = "iaaright"; - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"oOR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"oOW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"oOX" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"oOZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"oPi" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/space_heater{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/bluespace/chamber) -"oPr" = ( -/obj/structure/table/steel, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/deck/cards, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"oPv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"oPB" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"oPF" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"oPJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway) -"oPP" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/escape_pod/escape_pod8/station) -"oPZ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"oQb" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"oQc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod1/station) -"oQg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"oQh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/obj/machinery/camera/network/fourth_deck{ - dir = 1; - c_tag = "Fourth Deck - Central Hallway" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"oQi" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos/bridge) -"oQn" = ( -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"oQw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"oQx" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"oQB" = ( -/obj/floor_decal/corner/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/bed/chair/office/green{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"oQE" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/medical/mortus{ - name = "Morgue"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"oQH" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake{ - pixel_y = 6; - pixel_x = 8 - }, -/obj/item/handcuffs, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"oQJ" = ( -/obj/floor_decal/techfloor/orange, -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"oQN" = ( -/obj/paint_stripe/red, -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/wallframe_spawn/reinforced/polarized{ - id = "forensicswindow" - }, -/turf/simulated/floor/plating, -/area/security/sierra/forensic) -"oQQ" = ( -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/maintenance/firstdeck/centralstarboard) -"oRb" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/floor_decal/corner/grey/full, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT, -/obj/item/reagent_containers/food/drinks/teapot{ - pixel_x = 4; - pixel_y = 16 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"oRl" = ( -/obj/floor_decal/industrial/warning, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"oRs" = ( -/obj/machinery/fusion_fuel_injector/mapped{ - initial_id_tag = "aux_fusion_plant" - }, -/turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) -"oRu" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/sign/directions/security{ - pixel_y = -24; - dir = 1 - }, -/obj/structure/sign/directions/infirmary{ - pixel_y = -31; - dir = 1 - }, -/obj/structure/sign/directions/science{ - pixel_y = -38; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"oRw" = ( -/obj/structure/hygiene/toilet{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/decal/cleanable/blood, -/obj/decal/cleanable/blood/drip, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"oRE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"oRP" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"oRR" = ( -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"oRX" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/maintenance{ - dir = 8; - req_access = newlist() - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_eva) -"oSc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 6 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"oSi" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"oSk" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"oSw" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"oSE" = ( -/obj/floor_decal/corner/black{ - dir = 6 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"oSI" = ( -/obj/structure/closet, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"oSP" = ( -/obj/paint_stripe/nt_red, -/obj/paint/nt_white, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod8/station) -"oSU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 5 - }, -/obj/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/computer/air_control{ - input_tag = "fuel1p_in"; - name = "Fuel Supply Control"; - output_tag = "fuel1p_out"; - sensor_name = "Tank"; - sensor_tag = "ReacEngPlasma1" - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"oSZ" = ( -/obj/floor_decal/corner/green/border{ - dir = 5 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"oTb" = ( -/obj/structure/flora/pottedplant/smalltree, -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"oTc" = ( -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"oTm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"oTo" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"oTr" = ( -/obj/structure/bed/chair/office/comfy/blue{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -23; - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"oTt" = ( -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/thirddeck/foreport) -"oTx" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/medical{ - name = "Critical Wing"; - id_tag = "med_crit_d2" - }, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_crit2"; - name = "Infirmary Staging Shutters" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"oTB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/glass/security{ - id_tag = "security_entry_airlock_enter"; - dir = 8; - name = "Security Entry" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway/aft) -"oTC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"oTF" = ( -/obj/structure/bed/sofa/l/brown, -/obj/floor_decal/carpet/red{ - dir = 1 - }, -/obj/floor_decal/carpet/red{ - dir = 8 - }, -/obj/floor_decal/carpet/red{ - dir = 9 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"oTG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sauna) -"oTI" = ( -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"oTM" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"oTP" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/black/border, -/obj/structure/closet/cabinet, -/obj/item/book/manual/nt_sop, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -23; - pixel_y = 5 - }, -/obj/item/book/manual/solgov_law, -/obj/item/book/manual/nt_regs, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/iaa/cobed) -"oTR" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/air_control{ - input_tag = "containment_in"; - name = "Containment Chamber Gas Monitor"; - output_tag = "containment_out"; - sensor_name = "Containment Chamber"; - sensor_tag = "containment_sensor" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"oTT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23 - }, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/laundry) -"oUc" = ( -/obj/structure/sign/warning/airlock{ - dir = 8 - }, -/turf/simulated/wall/prepainted, -/area/maintenance/solar/bridge_starboard) -"oUi" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/aft_stairwell) -"oUl" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "fusion_observation" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/control) -"oUm" = ( -/obj/machinery/disposal, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"oUp" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/techfloor/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/servers) -"oUq" = ( -/obj/structure/bed/chair/padded/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"oUx" = ( -/obj/structure/table/woodentable, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/item/paper{ - pixel_y = 3; - pixel_x = 6 - }, -/obj/item/paper{ - pixel_y = -5; - pixel_x = 5 - }, -/obj/item/paper{ - pixel_x = -2 - }, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"oUH" = ( -/obj/machinery/atmospherics/valve{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"oUI" = ( -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"oUL" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"oUS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"oUW" = ( -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"oVg" = ( -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"oVB" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"oVE" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/exploration) -"oVJ" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/window/boron_reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d3starboard) -"oVL" = ( -/obj/machinery/vending/dinnerware{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"oVN" = ( -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue) -"oVS" = ( -/obj/machinery/organ_printer/robot/mapped, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery/second) -"oVV" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"oVY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/equipment) -"oWd" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"oWe" = ( -/obj/machinery/light/spot, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/corner/lime/mono, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/center) -"oWj" = ( -/obj/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/random/masks, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"oWk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"oWo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"oWv" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/firstdeck/forestarboard) -"oWy" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/bed/sauna_bench/middle/north, -/obj/item/device/flashlight/lamp/lava/orange{ - pixel_y = 3; - pixel_x = 9 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sauna) -"oWC" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/reagent_dispensers/watertank, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/starboard) -"oWO" = ( -/obj/structure/table/glass, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"oWS" = ( -/obj/machinery/suit_storage_unit/explorer, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/eva) -"oWT" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"oWW" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"oXn" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"oXp" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/navbeacon/sierra/SD_fore5, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"oXz" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/floor_decal/spline/plain/brown{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/actor) -"oXA" = ( -/obj/structure/bed/chair/office/comfy/blue{ - dir = 1 - }, -/obj/floor_decal/carpet/blue2, -/obj/machinery/keycard_auth/sierra{ - pixel_x = 3; - pixel_y = -22 - }, -/obj/machinery/button/alternate/door{ - desc = "A remote control-switch for the office door."; - dir = 1; - id_tag = "pmdoor"; - name = "Office Door Control"; - pixel_x = -9; - pixel_y = -22; - req_access = list("ACCESS_HEAD_OF_PERSONNEL") - }, -/obj/machinery/button/windowtint{ - dir = 1; - id = "hop_windows"; - pixel_x = 12; - pixel_y = -21 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/hop) -"oXI" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/porta_turret{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"oXJ" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"oXK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"oXL" = ( -/obj/structure/lattice, -/obj/structure/rubble, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/open, -/area/maintenance/thirddeck/aftport) -"oXQ" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 10 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/obj/structure/flora/pottedplant/decorative, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"oXS" = ( -/obj/floor_decal/corner/darkblue, -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge/storage) -"oXV" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/table/woodentable/walnut, -/obj/machinery/microwave, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"oYa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown2_2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/fore) -"oYe" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"oYf" = ( -/obj/item/storage/secure/safe{ - pixel_x = 24 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dormintories) -"oYh" = ( -/obj/structure/closet/radiation, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"oYi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"oYr" = ( -/obj/random/closet, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"oYB" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"oYP" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/command/exploration_leader) -"oYZ" = ( -/obj/floor_decal/steeldecal/steel_decals9, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"oZb" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"oZc" = ( -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"oZg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"oZh" = ( -/obj/structure/table/reinforced, -/obj/machinery/body_scan_display{ - pixel_y = 24 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/storage/box/freezer, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery) -"oZi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"oZl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"oZs" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"oZu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/table/standard, -/obj/item/scalpel/basic, -/obj/item/retractor, -/turf/simulated/floor/tiled/white/monotile, -/area/vacant/gambling) -"oZz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/camera/network/engine{ - c_tag = "Engine - R-UST - Entry"; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/prototype/engine) -"oZK" = ( -/obj/structure/sign/warning/radioactive{ - dir = 1; - pixel_y = -32 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"oZL" = ( -/obj/structure/hygiene/shower, -/obj/structure/curtain/open/shower, -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/gym) -"oZN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "petrov_shuttle_dock_outer"; - name = "Docking Port Airlock"; - autoset_access = 0; - req_access = list(list("ACCESS_PETROV","ACCESS_SEC_DOORS")); - frequency = 1380 - }, -/obj/machinery/shield_diffuser, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"oZT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"oZV" = ( -/obj/floor_decal/corner/red, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"oZY" = ( -/obj/machinery/telecomms/bus/preset_three, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"paa" = ( -/obj/structure/closet/walllocker{ - pixel_x = -28 - }, -/obj/machinery/fabricator{ - fab_status_flags = 1 - }, -/obj/item/stack/material/steel/fifty{ - pixel_x = -5 - }, -/obj/item/stack/material/glass/fifty{ - pixel_x = 7 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/stack/material/plastic/ten, -/obj/item/stack/material/plastic/ten, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"pad" = ( -/obj/structure/sign/warning/deathsposal, -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/cargo_l) -"pag" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/vacant/utility) -"pah" = ( -/obj/machinery/light, -/obj/floor_decal/techfloor, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"pal" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ - dir = 4 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"pam" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway/aft) -"paF" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/sofa/l/brown{ - dir = 1 - }, -/obj/floor_decal/carpet/red{ - dir = 4 - }, -/obj/floor_decal/carpet/red, -/obj/floor_decal/carpet/red{ - dir = 6 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"paK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"paZ" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for the engine thruster blast doors."; - id_tag = "ThrusterVents"; - name = "Thruster Blast Door control"; - req_access = list("ACCESS_ENGINE_EQUIP"); - pixel_x = -24; - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"pbf" = ( -/obj/floor_decal/corner/purple/half, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"pbh" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/green/border{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "vir_blast_enter"; - name = "Virology Enter"; - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"pbl" = ( -/obj/structure/curtain/medical, -/obj/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/floor_decal/corner/lime/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"pbp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"pbu" = ( -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"pbx" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 8; - id_tag = "escape_pod_3_pump" - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - dir = 8; - id_tag = "escape_pod_3"; - name = "escape pod three controller"; - pixel_x = 20; - tag_door = "escape_pod_3_hatch"; - frequency = 1380 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/grey/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod3/station) -"pbz" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/closet/crate/freezer/rations, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"pbE" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"pbH" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"pbP" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"pbU" = ( -/obj/floor_decal/corner/green, -/obj/floor_decal/corner/purple/bordercorner, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"pbW" = ( -/obj/structure/table/woodentable/mahogany, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"pbY" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"pcb" = ( -/obj/structure/bookcase, -/obj/item/book/manual/engineering_guide, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"pcc" = ( -/obj/structure/catwalk, -/obj/random/trash, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"pch" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"pck" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/watertank, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"pco" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/eva) -"pcp" = ( -/obj/machinery/vending/medical/sierra{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/maintenance_equipstorage) -"pcB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"pcC" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"pcG" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"pcH" = ( -/obj/machinery/cooker/grill, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"pcP" = ( -/obj/structure/closet/secure_closet/crew/research, -/obj/floor_decal/industrial/outline/yellow, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/item/folder/nt, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/equipment) -"pcQ" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp{ - pixel_y = 10 - }, -/obj/item/device/camera, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation) -"pdd" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod3/station) -"pdl" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"pdt" = ( -/obj/structure/table/marble, -/obj/item/reagent_containers/food/condiment/barbecue{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_y = 8 - }, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/floor_decal/corner/red/diagonal, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"pdu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"pdw" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"pdD" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/tcommsat/chamber) -"pdE" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"pdF" = ( -/obj/machinery/papershredder, -/obj/floor_decal/corner/yellow/half{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"pdI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation) -"pdJ" = ( -/obj/machinery/status_display, -/turf/simulated/wall/prepainted, -/area/crew_quarters/sleep/bunk) -"pdK" = ( -/obj/structure/bed/chair/shuttle/blue{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/shuttle_landmark/sierra/hangar/exploration_shuttle, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cockpit) -"pdL" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/no_grille, -/turf/simulated/floor/plating, -/area/quartermaster/expedition) -"pdX" = ( -/obj/structure/table/standard, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/random/powercell, -/obj/random/powercell, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"pdZ" = ( -/obj/machinery/atmospherics/unary/tank/air{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"ped" = ( -/obj/machinery/door/airlock/hatch/maintenance, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/foreport) -"pej" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - name = "Quartermaster's Office"; - sort_type = "Quartermaster's Office" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft) -"pel" = ( -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"pen" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"peo" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"pep" = ( -/obj/structure/closet/crate/secure/weapon, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"pev" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"pex" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/green{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"peD" = ( -/obj/machinery/suit_storage_unit/mining, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/brown/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"peF" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/computer/ship/navigation{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"peH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"peK" = ( -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"peL" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"peP" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio/electropack, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"peQ" = ( -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"peU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"peY" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"pfc" = ( -/obj/floor_decal/solarpanel, -/obj/machinery/power/solar{ - id = "auxsolarsport"; - name = "Aft Port Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/solar/port) -"pfe" = ( -/obj/structure/fitness/punchingbag, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/red/bordercorner2, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"pfh" = ( -/obj/structure/sign/warning/compressed_gas, -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d3port) -"pfn" = ( -/obj/machinery/vending/parts/public{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"pfo" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/toolbox, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"pfq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/item/device/integrated_electronics/debugger{ - pixel_x = -5 - }, -/obj/item/device/integrated_electronics/wirer, -/obj/item/device/integrated_electronics/analyzer{ - pixel_x = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"pfr" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "do_windows" - }, -/obj/machinery/door/blast/shutters/open{ - name = "QM Office Shutters"; - id_tag = "qm_office" - }, -/turf/simulated/floor/plating, -/area/quartermaster/deckofficer) -"pfw" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "xenobio_desk"; - name = "Space Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level1) -"pfy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"pfE" = ( -/obj/machinery/camera/network/command{ - c_tag = "Command - Starboard Bridge Entry"; - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercee, -/obj/machinery/door/window/brigdoor/eastleft{ - autoset_access = 0; - req_access = list("ACCESS_BRIDGE") - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"pfR" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/storage) -"pfT" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/bed/chair/pew/left, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood, -/area/crew_quarters/actor/stage) -"pfV" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"pfZ" = ( -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"pgb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/cistern) -"pge" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"pgg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"pgn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/half{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"pgt" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"pgv" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "Skynet_launch"; - name = "Mech Bay"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/assembly/chargebay) -"pgw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/medical{ - dir = 1; - name = "Therapy Room" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/mentalhealth/therapyroom) -"pgC" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"pgI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Aft Port Solar Access"; - req_access = newlist() - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar) -"pgK" = ( -/obj/structure/table/steel_reinforced, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Gravity Generator - SMES"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"pgN" = ( -/obj/machinery/air_sensor{ - id_tag = "xenobot_sensor"; - machine_name = "Xenoflora Enviroment" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/xenoflora) -"pgO" = ( -/obj/machinery/space_heater, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"pgQ" = ( -/obj/floor_decal/carpet, -/obj/floor_decal/carpet{ - dir = 8 - }, -/obj/floor_decal/carpet{ - dir = 10 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/cafe/upper) -"pgS" = ( -/obj/structure/bed/chair/padded/blue, -/obj/structure/sign/dedicationplaque/sierra{ - pixel_y = 29 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"pgU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/northleft{ - name = "Security Checkpoint" - }, -/obj/machinery/door/window/southleft{ - autoset_access = 0; - name = "Security Checkpoint" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "hangar_checkpoint_shutters"; - name = "Hangar Deck Checkpoint Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf/steel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/sierra/dockcheck) -"pgW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/breakroom) -"pgY" = ( -/obj/structure/closet/secure_closet/chaplain_sierra, -/obj/floor_decal/carpet/purple{ - dir = 8 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/office) -"pha" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/thirddeck/fore) -"phb" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"phc" = ( -/obj/floor_decal/corner/black/full, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"phi" = ( -/obj/decal/cleanable/dirt, -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/vacant/mess) -"phs" = ( -/obj/structure/closet/secure_closet/chief_steward_sierra, -/obj/item/storage/slide_projector, -/turf/simulated/floor/wood, -/area/command/chief_steward) -"phx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/curtain{ - color = "#aa0000" - }, -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"phE" = ( -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"phJ" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"phN" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cargo_l) -"phR" = ( -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/sauna) -"phV" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/suplocker_room) -"phW" = ( -/obj/structure/closet/emcloset/anchored, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/corner/green/three_quarters{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hydroponics) -"pih" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"pij" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"pik" = ( -/obj/floor_decal/corner/green/half{ - dir = 8 - }, -/obj/machinery/seed_storage/xenobotany{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"pin" = ( -/obj/decal/cleanable/spiderling_remains, -/obj/item/clothing/mask/gas/half, -/obj/item/tank/oxygen_emergency_extended, -/obj/item/extinguisher/mini, -/obj/spider/stickyweb, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level1) -"pip" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/seats_place) -"piy" = ( -/obj/machinery/mineral/unloading_machine, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/plasticflaps, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"piA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/bed/chair/padded/red, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"piK" = ( -/obj/floor_decal/corner/grey/diagonal, -/obj/structure/bed/chair/padded/purple, -/obj/floor_decal/industrial/traffic{ - dir = 8; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/structure/railing/mapped{ - dir = 8; - init_color = "#8c911d"; - color = "#8c911d" - }, -/turf/simulated/floor/tiled, -/area/assembly/office) -"piM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"pjb" = ( -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"pje" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"pjf" = ( -/obj/structure/bed/chair/armchair/black{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"pjg" = ( -/obj/machinery/atmospherics/tvalve/mirrored/digital{ - name = "phoron bypass valve" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"pji" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/button/blast_door{ - dir = 4; - id_tag = "observation_shielding"; - pixel_x = -24; - pixel_y = 24 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"pjj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"pjk" = ( -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"pjt" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/green, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"pjy" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall/hull, -/area/turret_protected/ai_teleport) -"pjA" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"pjE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"pjF" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"pjG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"pjL" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"pjN" = ( -/obj/machinery/button/blast_door{ - dir = 8; - id_tag = "qm_warehouse"; - name = "Warehouse Shutters Control"; - pixel_x = 24; - req_access = list("ACCESS_CARGO") - }, -/obj/machinery/mech_recharger, -/mob/living/exosuit/premade/powerloader/old, -/obj/floor_decal/spline/plain/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"pjW" = ( -/turf/simulated/open, -/area/hallway/primary/firstdeck/aft_stairwell) -"pjX" = ( -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "PetrovBiohazard"; - name = "Petrov Biohazard Shutters" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/airlock) -"pkb" = ( -/turf/simulated/wall/prepainted, -/area/vacant/gambling) -"pke" = ( -/obj/machinery/vending/medical, -/turf/simulated/floor/tiled/white, -/area/vacant/infirmary) -"pkh" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"pkj" = ( -/obj/floor_decal/techfloor, -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = -23 - }, -/obj/machinery/button/alternate/door/bolts{ - id_tag = "medsafe"; - name = "safe room door-control"; - pixel_y = -23 - }, -/obj/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"pkl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway/aft) -"pkq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/meter, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"pku" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/green, -/obj/structure/curtain/open/bed, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"pkw" = ( -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/forestarboard) -"pky" = ( -/obj/structure/bed/chair/padded/green{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"pkC" = ( -/obj/machinery/button/alternate/door{ - desc = "A remote control-switch for the office door."; - id_tag = "iaadoorleft"; - name = "Office Door Control"; - pixel_y = 24; - req_access = list("ACCESS_IAA"); - pixel_x = -5 - }, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/floor_decal/carpet/blue{ - dir = 8 - }, -/obj/floor_decal/carpet/blue{ - dir = 1 - }, -/obj/floor_decal/carpet/blue{ - dir = 9 - }, -/obj/item/device/flashlight/lamp{ - pixel_y = 13; - pixel_x = -3 - }, -/obj/item/sticky_pad/random{ - pixel_x = -6; - pixel_y = 9 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa) -"pkM" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_s"; - dir = 1 - }, -/obj/paint/red, -/obj/paint_stripe/red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod10/station) -"pkZ" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"plb" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"plk" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/inactive{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/gambling) -"plt" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/tank{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "o22p_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d3port) -"plu" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/port) -"plv" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/space, -/area/space) -"plz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/fore) -"plB" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "bridge_outer_windows" - }, -/turf/simulated/floor/plating, -/area/bridge/nano) -"plE" = ( -/obj/machinery/computer/modular/preset/engineering{ - dir = 4 - }, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for engine core."; - dir = 4; - id_tag = "BSD_windows"; - name = "Bluespace Driver Chamber Windows Control"; - pixel_x = -23; - pixel_y = 8 - }, -/obj/machinery/button/alternate/door/bolts{ - desc = "A remote control-switch for the engine core airlock hatch bolts."; - dir = 4; - id_tag = "BSD_airlock"; - name = "Containment Hatch Bolt Control"; - pixel_x = -23; - pixel_y = -5; - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"plF" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"plN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"plR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"plT" = ( -/obj/structure/table/standard, -/obj/item/storage/box/checkers/chess, -/obj/item/storage/box/checkers/chess/red, -/obj/item/board, -/turf/simulated/floor/tiled/white, -/area/medical/virology/ward) -"plU" = ( -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"pma" = ( -/obj/floor_decal/carpet{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black, -/obj/floor_decal/carpet, -/obj/floor_decal/carpet{ - dir = 10 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/garden_room) -"pmj" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cargo_l) -"pmk" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/ce/cobed) -"pmm" = ( -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_6_hatch"; - name = "Escape Pod Seven Hatch" - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod6/station) -"pmn" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"pmo" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/engine_setup/pump_max, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"pmp" = ( -/obj/machinery/light, -/obj/floor_decal/techfloor, -/obj/structure/closet/crate/freezer/rations, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"pmF" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/button/flasher{ - id_tag = "security_pod_flash"; - name = "Chamber Flasher"; - pixel_x = 28; - pixel_y = 10; - dir = 8; - req_access = list("ACCESS_SECURITY") - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"pmJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"pmK" = ( -/obj/wallframe_spawn/reinforced, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"pmO" = ( -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"pmR" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"pmT" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"pmV" = ( -/obj/structure/table/standard, -/obj/random/clipboard, -/obj/item/storage/briefcase, -/obj/floor_decal/corner/research/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/office) -"pmW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/green{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"pmX" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 1; - id_tag = "escape_pod_5_pump" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"pno" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"pnp" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/floor_decal/corner/green/half{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"pnv" = ( -/obj/structure/closet/walllocker/secure_closet/explo_gun{ - pixel_y = 32 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/mauve/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"pnw" = ( -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"pnx" = ( -/obj/structure/table/standard, -/obj/item/defibrillator/loaded, -/obj/item/auto_cpr, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking_1{ - dir = 4; - pixel_x = -32 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Critical Wing - Reanimation"; - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"pnD" = ( -/obj/floor_decal/industrial/hatch/red, -/obj/structure/iv_stand, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery/second) -"pnE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"pnF" = ( -/obj/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"pnG" = ( -/obj/structure/table/rack, -/obj/item/device/scanner/xenobio, -/obj/item/device/scanner/xenobio, -/obj/item/storage/plants, -/obj/item/storage/plants, -/obj/item/device/scanner/plant, -/obj/item/device/scanner/plant, -/obj/item/device/geiger, -/obj/item/device/geiger, -/obj/item/material/hatchet, -/obj/item/material/hatchet, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/shuttle_beacon, -/obj/item/shuttle_beacon, -/obj/item/beacon_deployer/full, -/obj/item/stack/flag/blue, -/obj/item/stack/flag/blue, -/obj/item/stack/flag/green, -/obj/item/stack/flag/green, -/obj/item/stack/flag/red, -/obj/item/stack/flag/red, -/obj/item/stack/flag/teal, -/obj/item/stack/flag/yellow, -/obj/item/stack/flag/teal, -/obj/item/stack/flag/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/eva) -"pnI" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/science{ - name = "Exploration Equipment"; - req_access = newlist() - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/exploration/eva) -"pnK" = ( -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"pnM" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"pnT" = ( -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d3starboard) -"pnU" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"pnV" = ( -/obj/machinery/air_sensor{ - id_tag = "n2o_sensor" - }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos) -"pob" = ( -/obj/structure/table/standard, -/obj/item/paper{ - pixel_x = 4 - }, -/obj/item/pen{ - pixel_y = 10; - pixel_x = -2 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"pom" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"pop" = ( -/turf/simulated/wall/r_wall/hull, -/area/hydroponics) -"pou" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"pow" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"poB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/closet/crate/plastic, -/obj/item/paper/sierrau, -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"poV" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"poX" = ( -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/corner/red/bordercee{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"poY" = ( -/obj/structure/railing/mapped{ - init_color = "#aed18b"; - color = "#aed18b" - }, -/turf/simulated/open, -/area/hallway/primary/seconddeck/central_stairwell) -"ppb" = ( -/turf/simulated/wall/r_wall/hull, -/area/vacant/cargo) -"pph" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"ppn" = ( -/obj/floor_decal/techfloor, -/obj/structure/bed/chair/comfy/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"pps" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"ppx" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"ppC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"ppE" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/xenobiology/level2) -"ppM" = ( -/obj/structure/table/steel, -/obj/item/device/scanner/xenobio, -/obj/item/device/scanner/xenobio, -/obj/item/device/scanner/xenobio, -/obj/item/device/scanner/xenobio, -/obj/item/device/scanner/xenobio, -/obj/item/device/scanner/xenobio, -/obj/item/device/scanner/gas, -/obj/item/device/scanner/gas, -/obj/item/device/scanner/gas, -/obj/item/device/scanner/gas, -/obj/item/device/scanner/gas, -/obj/item/device/scanner/gas, -/obj/item/storage/excavation, -/obj/item/device/measuring_tape, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"ppV" = ( -/obj/machinery/button/windowtint{ - id = "do_windows"; - pixel_x = -21; - pixel_y = -24; - dir = 1 - }, -/obj/floor_decal/corner/yellow/half, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"pqb" = ( -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"pqy" = ( -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"pqD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/port) -"pqE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"pqF" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/crew_quarters/gym) -"pqG" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/suits) -"pqK" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/modular/preset/aislot/research{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/button/alternate/door{ - desc = "A remote control-switch for the cargo doors."; - dir = 1; - id_tag = "researchdoor_interior"; - name = "Research Door Control"; - pixel_x = 6; - pixel_y = -24; - req_access = list("ACCESS_RESEARCH") - }, -/obj/machinery/button/blast_door{ - dir = 1; - id_tag = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -6; - pixel_y = -24; - req_access = list("ACCESS_RESEARCH") - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/development) -"pqM" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/garden_room) -"pqN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/red, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"pqP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"pqQ" = ( -/turf/simulated/wall/prepainted, -/area/engineering/atmos/storage) -"pqS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"pqT" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"pqU" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"prk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/civilian, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/docking) -"prl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"prr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"prF" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod3/station) -"prJ" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway/aft) -"prK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"prO" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"prP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"prT" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"prX" = ( -/obj/structure/catwalk, -/obj/machinery/light/spot, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"prY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"psd" = ( -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/button/alternate/door{ - id_tag = "med_crit_d1"; - dir = 4; - pixel_y = -8; - pixel_x = -24; - name = "Critical Wing First Exit" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"psh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/fore) -"psk" = ( -/obj/wallframe_spawn/reinforced/polarized/full{ - id = "cmo_windows" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_pub_hall" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/cmo) -"psl" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"psn" = ( -/obj/machinery/disposal, -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"psp" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 8; - display_name = "Fore Dock"; - frequency = 1380; - id_tag = "nuke_shuttle_dock_airlock"; - pixel_x = 20; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/docking) -"pss" = ( -/obj/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"pst" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"psy" = ( -/obj/machinery/computer/fusion/gyrotron{ - dir = 4; - initial_id_tag = "aux_fusion_plant"; - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"psA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"psD" = ( -/obj/structure/bed/chair/shuttle/blue{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - id_tag = "escape_pod_5"; - name = "escape pod five controller"; - pixel_x = -32; - pixel_y = 21; - req_access = list("ACCESS_SECURITY"); - tag_door = "escape_pod_5_hatch" - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/grey/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"psH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"psN" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/storage/airlock_canisters) -"psO" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/purple/bordercorner2, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"psR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Auxiliary Power Storage"; - name_tag = "Auxiliary Power Storage" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/terminal, -/obj/floor_decal/industrial/warning, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/auxpower) -"psS" = ( -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 4 - }, -/obj/structure/ladder/up, -/obj/floor_decal/industrial/warning/fulltile, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/emergency) -"psW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"ptb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"ptq" = ( -/obj/structure/table/woodentable, -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/cobweb, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/random/trash, -/turf/simulated/floor/wood/walnut, -/area/vacant/sauna) -"ptr" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 1; - id_tag = "eng4"; - name = "First Deck Port Nacelle Access"; - pixel_y = -20; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/thruster/d1port) -"ptt" = ( -/obj/structure/table/woodentable_reinforced, -/obj/item/newspaper, -/obj/item/material/ashtray, -/turf/simulated/floor/wood, -/area/command/chief_steward) -"ptu" = ( -/obj/structure/wall_frame, -/obj/structure/grille, -/obj/structure/curtain/black, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"ptB" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"ptC" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins/storage) -"ptD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/firstdeck/center) -"ptM" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"ptT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"puf" = ( -/obj/structure/closet/secure_closet{ - name = "Secure Evidence Locker"; - req_access = list("ACCESS_SECURITY") - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techmaint, -/area/security/sierra/evidence) -"pui" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"pun" = ( -/obj/floor_decal/carpet/orange{ - dir = 8 - }, -/turf/simulated/floor/carpet/orange, -/area/crew_quarters/heads/office/ce/cobed) -"puo" = ( -/obj/floor_decal/corner/green/border{ - dir = 6 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"pup" = ( -/obj/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"put" = ( -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/tank/air{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"puC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"puD" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"puE" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/flora/ausbushes/sunnybush, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"puK" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"puL" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/green/border, -/obj/structure/closet/hydrant{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft_stairwell) -"puM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/medical/virology/lab) -"puV" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/closet/secure_closet{ - name = "long term chamber locker"; - req_access = list("ACCESS_SECURITY") - }, -/obj/floor_decal/borderfloor/full, -/obj/floor_decal/industrial/hatch/orange, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/brig) -"pva" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/machinery/computer/modular/preset/dock, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"pvb" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"pve" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/iaa/iso_quarters) -"pvi" = ( -/obj/item/stool/padded/red, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"pvl" = ( -/obj/structure/largecrate, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"pvs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1port) -"pvC" = ( -/obj/structure/closet/secure_closet/hydroponics_sierra, -/obj/machinery/light/spot, -/obj/floor_decal/corner/green/half, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"pvD" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"pvH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/thirddeck/fore) -"pvO" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"pvP" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"pvV" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"pwh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/northleft{ - dir = 2 - }, -/obj/structure/table/rack{ - dir = 8 - }, -/obj/item/aiModule/reset, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_cyborg_upload) -"pwm" = ( -/obj/item/implanter, -/obj/item/scalpel/basic, -/obj/item/reagent_containers/syringe/drugs, -/obj/item/paper/sticky{ - name = "I not wall, i am door."; - pixel_x = -25 - }, -/turf/simulated/floor/wood/walnut, -/area/maintenance/firstdeck/foreport) -"pwt" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"pwv" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - injecting = 1; - use_power = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/thruster/d1starboard) -"pwz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/cistern) -"pwH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"pwN" = ( -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "d1portnacelle" - }, -/obj/machinery/atmospherics/valve/digital{ - id_tag = "RE1F"; - name = "RE1 digital valve" - }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"pxc" = ( -/turf/simulated/wall/r_wall/hull, -/area/chapel/mortuary) -"pxj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft) -"pxk" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon/sierra/FD_forecentralhallway1, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"pxm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"pxq" = ( -/obj/structure/curtain{ - color = "#aa0000" - }, -/obj/floor_decal/spline/fancy/black{ - dir = 6 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"pxs" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"pxz" = ( -/obj/floor_decal/corner/grey/border, -/obj/structure/table/glass, -/obj/random/soap, -/obj/item/haircomb/random, -/obj/item/haircomb/brush, -/turf/simulated/floor/tiled/old_tile, -/area/crew_quarters/head) -"pxD" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"pxI" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - id_tag = "ai_bridge_pump"; - dir = 1 - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"pxP" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"pxR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/port) -"pxV" = ( -/obj/machinery/status_display, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/nuke_storage) -"pxY" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"pyf" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"pyn" = ( -/turf/simulated/wall/r_wall/hull, -/area/quartermaster/expedition/eva) -"pyq" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"pyr" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"pyu" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"pyv" = ( -/obj/structure/table/woodentable/maple, -/obj/item/paper_bin, -/obj/machinery/light/small, -/obj/item/device/radio/intercom/locked/confessional{ - dir = 4; - pixel_x = -24 - }, -/obj/item/pen, -/obj/floor_decal/carpet/purple, -/obj/floor_decal/carpet/purple{ - dir = 8 - }, -/obj/floor_decal/carpet/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/main) -"pyz" = ( -/obj/floor_decal/corner/paleblue, -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/ward) -"pyJ" = ( -/obj/structure/bed/chair/armchair/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"pze" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmospherics - Auxiliary Air Storage"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/storage) -"pzl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/civilian{ - name = "Medic's General Cabin"; - req_access = list("ACCESS_MEDICAL"); - autoset_access = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"pzp" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/corner/black/border, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hydroponics/third_deck_storage) -"pzr" = ( -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1; - target_pressure = 15000 - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"pzw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/table/rack, -/obj/item/stack/material/glass/boron{ - amount = 30 - }, -/obj/item/stack/material/glass/boron_reinforced{ - amount = 20 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"pzC" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"pzD" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"pzM" = ( -/obj/structure/lattice, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"pzW" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - frequency = 1441; - id = "co2_in"; - pixel_y = 1; - use_power = 1 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"pzZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"pAe" = ( -/obj/floor_decal/corner/black/bordercorner, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"pAj" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"pAr" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/flora/ausbushes/grassybush, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/machinery/button/blast_door{ - dir = 8; - id_tag = "lounge_windows"; - name = "Lounge Window Blast Doors"; - pixel_x = 25 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"pAw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"pAB" = ( -/obj/wallframe_spawn/reinforced_phoron/titanium, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell3) -"pAJ" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"pAL" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/window/boron_reinforced{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"pAP" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/crate/secure/biohazard, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/equipment) -"pAT" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/centralstarboard) -"pAW" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/thirddeck/starboard) -"pAX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/bed/chair/padded/red, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/fore) -"pBk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"pBm" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"pBC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/corner/grey{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"pBE" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"pBJ" = ( -/obj/machinery/button/blast_door{ - dir = 8; - id_tag = "firingspace"; - name = "Firing Range Shields"; - pixel_x = 20; - req_access = list("ACCESS_SEC_DOORS") - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/security/range) -"pBL" = ( -/obj/structure/table/rack, -/obj/item/roller_bed{ - pixel_y = -4 - }, -/obj/item/roller_bed, -/obj/item/roller_bed{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"pBQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "eng_lockdown"; - name = "Engineering Lockdown" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/locker_room) -"pBU" = ( -/obj/structure/table/rack/dark, -/obj/item/stack/material/aluminium/fifty, -/obj/item/stack/material/steel/fifty, -/obj/item/stack/material/steel/fifty, -/obj/item/stack/material/steel/fifty, -/obj/structure/railing/mapped, -/obj/floor_decal/spline/plain/black{ - dir = 6 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"pBY" = ( -/obj/structure/reagent_dispensers/water_cooler{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 5 - }, -/obj/machinery/camera/network/security{ - c_tag = "Longterm - Living"; - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"pCc" = ( -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_upload) -"pCd" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"pCe" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"pCm" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_north = 2; - tag_south = 1; - tag_west = 3 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"pCq" = ( -/obj/floor_decal/industrial/warning/full, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "auxair"; - name = "Auxiliary Air Storage Exterior Access Console"; - req_access = list("ACCESS_ENGINEERING"); - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/engineering/atmos/storage) -"pCG" = ( -/obj/machinery/light, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/closet/firecloset, -/obj/floor_decal/corner/purple/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/entry) -"pCO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"pCP" = ( -/obj/machinery/air_sensor{ - id_tag = "n2_sensor" - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos) -"pCR" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"pCV" = ( -/obj/machinery/oxygen_pump{ - dir = 8; - pixel_x = -27 - }, -/obj/structure/hygiene/drain, -/obj/structure/hygiene/shower{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"pDa" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"pDj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"pDv" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"pDy" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"pDz" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/self_destruct, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/nuke_storage) -"pDI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/button/alternate/door/bolts{ - dir = 8; - id_tag = "toilet2"; - name = "Lock"; - pixel_x = 24 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head) -"pDK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"pDM" = ( -/obj/paint_stripe/red, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters/open{ - name = "Prison Lobby Windows Shutters"; - id_tag = "prison_lobby_window" - }, -/turf/simulated/floor/plating, -/area/security/sierra/brig) -"pDN" = ( -/obj/structure/closet/wardrobe/medic_sierra, -/obj/item/device/synthesized_instrument/violin, -/obj/item/clothing/head/nursehat, -/obj/item/clothing/head/nursehat, -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"pDQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"pEh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/bed/chair/padded/red, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"pEp" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"pEv" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/command/chief_steward) -"pEw" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/pager/medical{ - name = "Call Medics button"; - pixel_y = 27 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"pEW" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"pEX" = ( -/obj/paint_stripe/red, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/interrogation/second) -"pFd" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/storage/tech) -"pFg" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"pFm" = ( -/obj/structure/railing/mapped{ - dir = 1; - color = "#b19664"; - init_color = "#b19664" - }, -/turf/simulated/open, -/area/hallway/primary/thirddeck/central_stairwell) -"pFs" = ( -/obj/machinery/flasher{ - id_tag = "security_third_cell_flash"; - name = "Floor mounted flash" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"pFu" = ( -/obj/structure/closet/l3closet/scientist, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"pFv" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"pFy" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"pFz" = ( -/obj/structure/grille, -/turf/simulated/open, -/area/space) -"pFH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"pFP" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"pGe" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"pGj" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"pGn" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d1starboard) -"pGs" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/fourthdeck/port) -"pGu" = ( -/obj/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"pGw" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"pGD" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/machinery/computer/modular/preset/security{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"pGE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"pGF" = ( -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Medical Reception" - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/infirmreception) -"pGI" = ( -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"pGJ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/solar/bridge_starboard) -"pGT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"pHc" = ( -/obj/floor_decal/corner/green/three_quarters{ - dir = 8 - }, -/obj/structure/closet/secure_closet/hydroponics_sierra, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"pHh" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"pHq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1port) -"pHs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"pHt" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"pHA" = ( -/obj/structure/closet/secure_closet/crew/research, -/obj/floor_decal/industrial/outline/yellow, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/item/folder/nt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/equipment) -"pHG" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"pHK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"pHL" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/captain, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/heads/captain/secret_room) -"pHN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/obj/item/storage/box/detergent, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/breakroom) -"pHO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/honey_extractor, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"pHQ" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"pIb" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"pId" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Laboratory"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/assembly/office) -"pIl" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"pIy" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"pIA" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"pIG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"pIK" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2, -/obj/structure/holoplant, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"pIL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod3/station) -"pIT" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"pIW" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - color = null; - dir = 4 - }, -/obj/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/machinery/vending/medical/sierra{ - dir = 8; - req_access = list("ACCESS_EXPEDITION_SHUTTLE") - }, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"pIX" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/bed/padded, -/obj/item/bedsheet/red, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/bunk) -"pIY" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/floodlight, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"pJe" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/gas) -"pJm" = ( -/obj/structure/flora/seaweed/large, -/obj/fluid_mapped, -/turf/simulated/floor/beach/sand, -/area/rnd/xenobiology/level2) -"pJp" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/handrail{ - dir = 8 - }, -/turf/space, -/area/space) -"pJv" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"pJy" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"pJF" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/command{ - name = "Briefing Room"; - autoset_access = 0 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"pJG" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/structure/table/woodentable/mahogany, -/obj/structure/flora/pottedplant/shoot{ - pixel_y = 10 - }, -/obj/floor_decal/carpet/red, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"pJO" = ( -/turf/simulated/wall/r_wall/hull, -/area/storage/tech) -"pJR" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/crate/secure/phoron{ - req_access = list(list("ACCESS_ENGINE_EQUIP","ACCESS_TELEPORTER")); - name = "Emergency backup phoron crate" - }, -/obj/item/stack/material/phoron/ten, -/obj/item/stack/material/phoron/ten, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"pJV" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"pJZ" = ( -/obj/structure/railing/mapped, -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"pKa" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/fuelbay) -"pKd" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"pKn" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/south) -"pKq" = ( -/obj/structure/sign/warning/docking_area{ - dir = 1; - pixel_y = -32 - }, -/turf/space, -/area/space) -"pKv" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"pKx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm/nobreach{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"pKy" = ( -/obj/machinery/vending/coffee{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/fore) -"pKC" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"pKJ" = ( -/obj/structure/table/standard, -/obj/item/device/radio{ - pixel_y = 9; - pixel_x = 6 - }, -/obj/item/flora/pottedplantsmall/leaf, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/sign/poster/unusual_gas{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/rnd/office) -"pKK" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/civilian{ - name = "Water Stores" - }, -/obj/item/taperoll/engineering/applied, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/cistern) -"pKO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/item/stack/material/steel, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"pKV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"pLd" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/computer/ship/engines{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"pLe" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/largecrate, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"pLg" = ( -/obj/floor_decal/corner/green/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/disease2/isolator, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology/lab) -"pLk" = ( -/obj/machinery/floodlight{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"pLl" = ( -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"pLq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"pLr" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/wood/maple{ - dir = 1 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"pLs" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular{ - id_tag = "BSD_windows"; - name = "Bluespace Chamber Lockdown" - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace/chamber) -"pLt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo/south) -"pLy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"pLF" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/bed/sofa/r/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"pLH" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/medical{ - name = "Medical Storage" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"pLK" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"pLR" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/gas) -"pLV" = ( -/obj/structure/table/woodentable/walnut, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/flora/pottedplant/flower{ - pixel_y = 13 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = -1; - dir = 8 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"pMh" = ( -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/crew_quarters/cafe/upper) -"pMp" = ( -/obj/wallframe_spawn, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"pMx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 5 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3port) -"pMI" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 4; - id_tag = "td_fore_starboard_pump" - }, -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/airlock_sensor{ - id_tag = "td_fore_starboard_sensor"; - master_tag = "td_fore_starboard"; - pixel_x = -24 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"pMN" = ( -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/corner/darkblue/bordercorner, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"pMV" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/structure/closet/medical_wall/filled{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/holocontrol) -"pMW" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/black/border{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Interrogation One"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation) -"pNe" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"pNm" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/forensic) -"pNp" = ( -/obj/machinery/disposal/small{ - dir = 4 - }, -/obj/floor_decal/corner/beige/three_quarters{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"pNx" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/hallway/primary/fourthdeck/fore) -"pNC" = ( -/obj/structure/hygiene/sink/kitchen{ - pixel_y = 22 - }, -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/sleep/cryo/south) -"pNE" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"pNJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/space_heater, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"pNR" = ( -/obj/paint_stripe/red, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters/open{ - name = "Prison Lobby Windows Shutters"; - id_tag = "prison_lobby_window"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/sierra/brig) -"pNV" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge/upper) -"pNZ" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/icecream_vat, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/floor_decal/snow, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/galley/freezer) -"pOm" = ( -/obj/machinery/door/airlock/glass/medical{ - name = "Chemistry"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/chemistry) -"pOn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"pOA" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"pOB" = ( -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"pOD" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"pOE" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"pOJ" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"pOK" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/waterstore) -"pOS" = ( -/obj/floor_decal/corner/black/full, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/flora/pottedplant/decorative, -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"pPd" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"pPl" = ( -/obj/machinery/vending/wallmed2{ - dir = 4; - pixel_x = -23 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod2/station) -"pPq" = ( -/obj/structure/ladder/up, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/starboard) -"pPr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"pPu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"pPw" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/dispenser, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"pPx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/obj/machinery/meter, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"pPK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"pPL" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"pQa" = ( -/obj/structure/table/woodentable/walnut, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/curtain/bed{ - pixel_y = -32 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_y = 5; - pixel_x = -4 - }, -/obj/item/reagent_containers/food/drinks/glass2/shot{ - pixel_x = 8; - pixel_y = -3 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/heads/office/cmo/cobed) -"pQe" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/waterstore) -"pQh" = ( -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"pQo" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/random/closet, -/obj/structure/sign/warning/pods/east{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"pQr" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/self_destruct, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/nuke_storage) -"pQs" = ( -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d3port) -"pQt" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d1starboard) -"pQv" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"pQz" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"pQG" = ( -/obj/structure/curtain{ - color = "#aa0000" - }, -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"pQI" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"pQN" = ( -/obj/floor_decal/corner/purple/half, -/obj/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"pQX" = ( -/obj/structure/crematorium{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"pQY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green, -/obj/machinery/power/apc/super/critical{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/storage) -"pQZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"pRa" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"pRb" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"pRd" = ( -/obj/shuttle_landmark/sierra/deck2/crucian, -/turf/space, -/area/space) -"pRh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/prison) -"pRi" = ( -/turf/simulated/wall/prepainted, -/area/hydroponics) -"pRv" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"pRA" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/rnd/xenobiology/level1) -"pRK" = ( -/obj/machinery/pipedispenser/disposal, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"pRM" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"pRZ" = ( -/obj/machinery/vending/coffee{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"pSa" = ( -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"pSd" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/corner/blue{ - dir = 6 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"pSk" = ( -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/corner/darkblue/bordercorner, -/obj/floor_decal/spline/fancy/black/corner, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"pSm" = ( -/obj/structure/bed/sofa/m/brown{ - dir = 1 - }, -/obj/floor_decal/carpet/red, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"pSn" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenobiology Fore" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"pSq" = ( -/obj/machinery/door/airlock/hatch/maintenance/bolted{ - frequency = 1379; - id_tag = "prototype_interior"; - name = "Fusion Maintenance" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/prototype/engine) -"pSt" = ( -/obj/machinery/shieldwallgen, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftstarboard) -"pSy" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/catwalk_plated, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"pSA" = ( -/obj/structure/catwalk, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"pSF" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/bed/chair/padded/yellow, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"pSH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow, -/obj/structure/closet/hydrant{ - pixel_y = 28 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"pSP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"pST" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ - start_pressure = 0 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"pTa" = ( -/turf/simulated/wall/prepainted, -/area/command/chief_steward) -"pTb" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"pTo" = ( -/turf/simulated/floor/shuttle_ceiling/sierra, -/area/space) -"pTs" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d1port) -"pTy" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/fourthdeck/center) -"pTA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"pTH" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/waterstore) -"pTK" = ( -/obj/item/handcuffs/cable/red, -/obj/item/handcuffs/cable/tape, -/obj/decal/cleanable/blood/drip, -/obj/random/medical/lite, -/obj/random/medical, -/obj/item/reagent_containers/spray/sterilizine, -/obj/machinery/light/small, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/maintenance/firstdeck/foreport) -"pTM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"pTN" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"pTS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"pUb" = ( -/obj/floor_decal/corner/paleblue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"pUh" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/corner/black/border{ - dir = 4 - }, -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hydroponics/third_deck_storage) -"pUi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Teleport Maintenance"; - req_access = newlist() - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/teleporter) -"pUn" = ( -/obj/structure/closet/walllocker{ - pixel_x = -28 - }, -/obj/floor_decal/corner/grey_alt{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/closet/crate/freezer, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/item/device/mmi, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/gloves/latex, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"pUq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"pUw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/monitoring) -"pUG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/office) -"pUM" = ( -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"pUW" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/equipstorage) -"pUY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"pVv" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/multi_tile/maintenance, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"pVx" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/seconddeck/aftport) -"pVA" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"pVD" = ( -/obj/structure/railing/mapped, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"pVE" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/camera/network/command{ - c_tag = "Command - EVA - Storage"; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"pVF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"pVH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"pVK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"pVO" = ( -/obj/structure/table/rack, -/obj/item/clothing/accessory/storage/bandolier/safari, -/obj/item/gun/launcher/net, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"pVU" = ( -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"pWb" = ( -/obj/structure/coatrack, -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/lino, -/area/command/chief_steward) -"pWc" = ( -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"pWe" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"pWh" = ( -/obj/structure/closet/secure_closet/personal/empty, -/obj/floor_decal/corner/green/border{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/sauna) -"pWi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/foreport) -"pWl" = ( -/obj/machinery/telecomms/processor/preset_three, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"pWm" = ( -/obj/wallframe_spawn/reinforced, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/paint_stripe/red, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/sierra/brig) -"pWo" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/obj/floor_decal/industrial/warning/corner, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"pWz" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/chapel/mortuary) -"pWK" = ( -/obj/structure/disposalpipe/sortjunction/untagged/flipped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"pWP" = ( -/obj/machinery/light/small, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"pWR" = ( -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"pXe" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Substation - Third Deck"; - dir = 1 - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/thirddeck) -"pXh" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/plating, -/area/shuttle/petrov/equipment) -"pXj" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"pXl" = ( -/obj/structure/sign/warning/lethal_turrets, -/turf/simulated/wall/r_wall/hull, -/area/turret_protected/ai_maint) -"pXx" = ( -/obj/structure/closet/emcloset/anchored, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/thirddeck) -"pXF" = ( -/obj/paint_stripe/red, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters/open{ - name = "Prison Lobby Windows Shutters"; - id_tag = "prison_lobby_window" - }, -/turf/simulated/floor/plating, -/area/security/sierra/brig) -"pXI" = ( -/obj/fluid_mapped, -/obj/item/bananapeel, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"pXM" = ( -/obj/structure/bed/sofa/m/lime{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/cafe/upper) -"pXP" = ( -/obj/structure/closet/secure_closet/hydroponics_sierra, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/abandoned_hydroponics) -"pXR" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/head_big) -"pYa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/machinery/light/spot, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"pYd" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"pYe" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"pYj" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/corner/black/mono, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"pYq" = ( -/obj/floor_decal/industrial/danger/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"pYr" = ( -/obj/machinery/portable_atmospherics/canister/boron, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins/storage) -"pYx" = ( -/obj/machinery/cryopod, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/central_stairwell) -"pYB" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 10 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"pYI" = ( -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"pYK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"pYM" = ( -/obj/shuttle_landmark/escape_pod/start/pod7, -/obj/wallframe_spawn/reinforced/titanium, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/escape_pod7/station) -"pYP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"pYT" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"pZi" = ( -/obj/floor_decal/corner/grey/diagonal, -/obj/structure/bed/chair/comfy/purple, -/turf/simulated/floor/tiled, -/area/rnd/locker) -"pZq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/steel, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/device/taperecorder, -/obj/item/device/destTagger, -/obj/item/stack/package_wrap/cargo_wrap, -/obj/machinery/recharger/wallcharger{ - dir = 1; - pixel_y = -22 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"pZt" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/plating, -/area/shuttle/petrov/test_room) -"pZv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"pZw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id_tag = "hangar_hallway_shutters"; - name = "Hangar Deck Hallway Shutters"; - opacity = 0 - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 2; - id_tag = "lockdown3_4" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/civilian{ - name = "Visitors"; - id_tag = "hangar_hallway_doors"; - autoset_access = 0 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/fore) -"pZz" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"pZF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"pZG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/rotating_alarm/supermatter{ - dir = 8; - pixel_x = 14 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"pZH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/structure/closet/hydrant{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"pZL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"pZM" = ( -/obj/floor_decal/corner/darkblue/full, -/obj/floor_decal/corner/black/three_quarters{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"pZP" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/firstdeck/fore) -"pZT" = ( -/obj/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1; - target_pressure = 3500 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"pZV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"qae" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs/upper) -"qah" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"qaj" = ( -/obj/floor_decal/carpet{ - dir = 4 - }, -/obj/floor_decal/carpet{ - dir = 1 - }, -/obj/floor_decal/carpet{ - dir = 5 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/garden_room) -"qak" = ( -/obj/paint/black, -/turf/simulated/wall/ocp_wall, -/area/maintenance/substation/thirddeck) -"qap" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/crew_quarters/sauna) -"qar" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/red/bordercorner2, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"qau" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"qax" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"qay" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/machinery/button/alternate/door/bolts{ - desc = "Danger! Maintenance may only be performed if there are no hazardous gases or excess pressure in the chamber."; - dir = 4; - id_tag = "tox_airlock_exterior"; - name = "Test Chamber Bolt Control"; - pixel_x = -22; - pixel_y = -8; - req_access = list("ACCESS_TOX_STORAGE") - }, -/obj/structure/sign/warning/internals_required{ - dir = 4; - pixel_x = -32; - pixel_y = 6 - }, -/turf/simulated/floor/reinforced, -/area/rnd/toxins) -"qaC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/foreport) -"qaM" = ( -/obj/structure/catwalk, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/open, -/area/space) -"qaU" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/gas) -"qaX" = ( -/obj/machinery/shield_diffuser, -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_5_berth_hatch"; - name = "Escape Pod Five" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/security/sierra/hallway/port) -"qbg" = ( -/obj/structure/towel/fitness, -/obj/floor_decal/corner/black/half{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"qbk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/hallway) -"qbl" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"qbt" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/table/woodentable/walnut, -/obj/item/reagent_containers/food/drinks/teapot, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/corp, -/obj/item/material/ashtray/glass, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"qby" = ( -/obj/structure/bed/chair/office/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/corner/purple/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"qbA" = ( -/obj/floor_decal/ntlogo{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"qbE" = ( -/obj/floor_decal/techfloor/corner, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"qbF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"qbG" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway/port) -"qbH" = ( -/obj/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"qbO" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/sign/warning/nosmoking_2{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins/storage) -"qbZ" = ( -/obj/structure/table/rack, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/tcommsat/storage) -"qch" = ( -/obj/structure/table/standard, -/obj/item/storage/box/donkpocket_mixed{ - pixel_y = 12; - pixel_x = 5 - }, -/obj/item/storage/box/cups{ - pixel_x = -5 - }, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/office) -"qci" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"qck" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"qcm" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "auxair"; - name = "Auxiliary Air Storage Exterior Access Console"; - req_access = list("ACCESS_ENGINEERING"); - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/obj/machinery/meter, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"qcw" = ( -/obj/structure/bed/chair/office/comfy/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/deckofficer) -"qcH" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"qcJ" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"qcN" = ( -/obj/structure/closet/secure_closet/adjutant, -/obj/item/modular_computer/tablet/lease/preset/command, -/obj/item/device/flash, -/obj/item/device/flashlight, -/obj/item/storage/secure/safe{ - pixel_y = 24 - }, -/obj/item/gun/energy/gun/small/secure, -/obj/floor_decal/corner/darkblue/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"qcO" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Central Hallway - Turbolift"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"qcQ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/forestarboard) -"qcZ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_eva) -"qda" = ( -/obj/machinery/atmospherics/valve/shutoff/supply, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"qdc" = ( -/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ - RCon_tag = "Substation - Fusion Generator" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/control) -"qdg" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -21; - pixel_y = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"qdi" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "xenobio_surg"; - name = "Space Shutters"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level1) -"qdn" = ( -/obj/structure/table/steel, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 5 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"qds" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"qdz" = ( -/obj/machinery/botany/editor, -/obj/floor_decal/corner/green/half, -/obj/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"qdK" = ( -/obj/structure/bed/chair/comfy/brown, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"qdS" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/seconddeck/aft_stairwell) -"qee" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/airlock) -"qeg" = ( -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/structure/railing/mapped{ - dir = 8; - init_color = "#8c911d"; - color = "#8c911d" - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"qei" = ( -/obj/structure/railing/mapped, -/obj/structure/closet/wardrobe/orange, -/obj/item/clothing/head/soft/orange, -/obj/item/clothing/head/soft/orange, -/obj/floor_decal/borderfloor/full, -/obj/floor_decal/industrial/hatch/orange, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/brig) -"qek" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/item/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"qeq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/prepainted, -/area/maintenance/fourthdeck/aft) -"qez" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/purple, -/obj/machinery/camera/network/petrov{ - c_tag = "Petrov - Hallway - Aft" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"qeB" = ( -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"qeH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"qeK" = ( -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"qeU" = ( -/obj/floor_decal/corner/purple/half{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"qeZ" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"qfc" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/guppy_hangar/start) -"qff" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"qfh" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"qfi" = ( -/obj/floor_decal/solarpanel, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/solar{ - id = "auxsolarstarboard"; - name = "Aft Starboard Solar Array" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"qfk" = ( -/obj/structure/closet/l3closet/general, -/obj/floor_decal/industrial/outline/yellow, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"qfs" = ( -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/rnd/servers) -"qfu" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"qfv" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"qfB" = ( -/obj/machinery/vending/generic{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"qfC" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"qfE" = ( -/obj/floor_decal/corner/black/full, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"qfG" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/no_grille/regular{ - id = "cafewindow" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/cafe/upper) -"qfI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/blue/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"qfJ" = ( -/obj/structure/flora/pottedplant/fern, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"qfK" = ( -/obj/machinery/disposal, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 10; - pixel_y = -21 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"qfM" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/blast_door{ - id_tag = "AICoreLastResort"; - name = "AI Core Last Resort"; - pixel_x = 25; - pixel_y = -35 - }, -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "AICoreLastResort"; - name = "Last Resort"; - opacity = 0 - }, -/obj/machinery/flasher{ - pixel_y = -24; - pixel_x = 4 - }, -/obj/item/device/radio/intercom{ - dir = 0; - pixel_y = 18; - pixel_x = -6 - }, -/obj/machinery/flasher{ - dir = 4; - id_tag = "ai_core"; - pixel_x = 12; - pixel_y = 24 - }, -/obj/landmark{ - name = "lightsout" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/turret_protected/ai) -"qfV" = ( -/obj/structure/table/standard, -/obj/item/device/assembly/mousetrap/armed, -/obj/item/reagent_containers/food/snacks/cheesewedge/aged, -/obj/item/toy/plushie/mouse, -/obj/item/paper/sierrau/joke, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"qfW" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - id_tag = "null"; - name = "Captain Wardroom"; - secured_wires = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/captain/beach) -"qfX" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"qfZ" = ( -/obj/structure/closet/l3closet/scientist, -/obj/structure/catwalk, -/obj/machinery/light, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/xenoflora) -"qga" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"qgf" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/table/gamblingtable, -/obj/item/reagent_containers/food/drinks/pitcher{ - pixel_y = 12; - pixel_x = 6 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/punitelli{ - pixel_y = 7; - pixel_x = -6 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/pawn, -/obj/machinery/light, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"qgg" = ( -/obj/structure/bed/chair/wood/walnut{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/floor_decal/corner/beige/diagonal, -/obj/floor_decal/corner/brown/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/vacant/dormintories) -"qgl" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/armory) -"qgo" = ( -/turf/simulated/wall/prepainted, -/area/security/opscheck) -"qgs" = ( -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"qgy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"qgA" = ( -/obj/shuttle_landmark/sierra/deck4/crucian, -/turf/space, -/area/space) -"qgC" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/largecrate, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"qgH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"qgW" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white/monotile, -/area/hallway/infirmary) -"qhg" = ( -/obj/machinery/hologram/holopad/longrange, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"qhl" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"qhs" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"qhu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/structure/sign/warning/compressed_gas{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"qhw" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"qhC" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"qhF" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"qhU" = ( -/obj/structure/table/rack, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/barrier, -/obj/floor_decal/corner/red/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 4; - pixel_x = -14 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Bridge Checkpoint"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"qic" = ( -/obj/floor_decal/corner/red, -/obj/machinery/vending/snack{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"qie" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ - pixel_y = 7; - pixel_x = 5 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT{ - pixel_y = -3; - pixel_x = 3 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"qih" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"qij" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"qik" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"qin" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/evidence) -"qit" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown2_2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/aft) -"qiu" = ( -/obj/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/structure/bed/chair/office/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"qix" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular{ - id_tag = "med_dorms_blast_doors"; - name = "Space Shutters" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/sleep/cryo/south) -"qiF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"qiK" = ( -/obj/structure/sign/directions/bridge{ - pixel_y = 24; - dir = 8 - }, -/obj/structure/sign/directions/science{ - dir = 8; - pixel_y = 31 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/central_stairwell) -"qiM" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"qiT" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"qiW" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley/backroom) -"qja" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sleep/bunk) -"qjc" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/development) -"qji" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"qjj" = ( -/obj/paint_stripe/nt_red, -/obj/paint/nt_white, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod10/station) -"qjp" = ( -/turf/simulated/wall/prepainted, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"qju" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/security{ - name = "Interrogation" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/interrogation) -"qjv" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"qjy" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/flora/pottedplant/aquatic, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"qjC" = ( -/obj/decal/cleanable/dirt, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"qjD" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"qjM" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"qjP" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"qjQ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"qjU" = ( -/obj/floor_decal/techfloor, -/obj/machinery/flasher{ - dir = 1; - id_tag = "ai_core"; - pixel_y = -24 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"qjW" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_east = 2; - tag_north = 1; - tag_south = 8; - tag_west = 7 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/green, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"qjX" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -21; - dir = 4 - }, -/obj/structure/closet/secure_closet/hop/sierra, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"qjZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/obj/wallframe_spawn/reinforced_phoron/hull, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"qkq" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"qkx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"qkA" = ( -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/turbolift/medical_lift) -"qkP" = ( -/obj/machinery/portable_atmospherics/canister/hydrogen, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"qkU" = ( -/obj/paint/dark_gunmetal, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/paint_stripe/yellow, -/turf/simulated/wall/r_titanium, -/area/guppy_hangar/start) -"qli" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley/backroom) -"qlk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/blue/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"qlr" = ( -/obj/machinery/vending/generic{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"qlu" = ( -/obj/wallframe_spawn/reinforced/polarized/full{ - id = "cmo_windows" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/cmo) -"qlx" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/organ/internal/posibrain, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"qlD" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"qlG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/prison) -"qms" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/fore) -"qmw" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/bsa{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/corner/black/full, -/turf/simulated/floor/tiled/dark, -/area/command/bsa) -"qmA" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"qmB" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"qmG" = ( -/obj/floor_decal/corner/paleblue/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"qmH" = ( -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/structure/closet/emcloset/anchored, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/corner/green/three_quarters, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/hydroponics) -"qmR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/power/terminal, -/obj/structure/cable, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"qmS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/valve/shutoff/supply, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"qnf" = ( -/turf/simulated/floor/reinforced, -/area/turret_protected/ai_maint) -"qnl" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/door/window/southleft{ - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "xenobio3"; - name = "Containment Blast Doors" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"qnp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"qnx" = ( -/obj/machinery/mass_driver{ - dir = 4; - id_tag = "enginecore" - }, -/obj/machinery/power/supermatter, -/obj/engine_setup/core, -/turf/simulated/floor/greengrid{ - map_airless = 1 - }, -/area/engineering/engine_room) -"qnA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/black/full, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/floor_decal/borderfloorblack, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"qnF" = ( -/obj/machinery/sleeper, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/staging) -"qnJ" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"qnS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/machinery/light/spot, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"qob" = ( -/obj/floor_decal/corner/black/mono, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"qod" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"qoe" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id_tag = "med_pat_ward"; - name = "Infirmary Window Shutters" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/plating, -/area/medical/ward) -"qoh" = ( -/obj/machinery/door/airlock/civilian{ - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/taperoll/engineering/applied, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/vacant/mess) -"qop" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"qoq" = ( -/obj/floor_decal/techfloor, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"qoE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"qoF" = ( -/obj/decal/cleanable/dirt, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"qoL" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/fourthdeck/aft) -"qoP" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/aft) -"qoR" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange, -/obj/structure/window/boron_reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"qoW" = ( -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hardstorage) -"qoZ" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"qpe" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - id = "o21p_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d3starboard) -"qpl" = ( -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_5_berth_hatch"; - name = "Escape Pod Five" - }, -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/foreport) -"qpn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"qpp" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/dockcheck) -"qpr" = ( -/obj/machinery/portable_atmospherics/hydroponics/soil, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/grass/cut, -/area/rnd/xenobiology/xenoflora) -"qpw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"qpy" = ( -/obj/machinery/papershredder, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/blue/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"qpE" = ( -/obj/structure/table/steel, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/random/toolbox, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar_atmos) -"qpM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"qpN" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"qpQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"qpY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"qqa" = ( -/obj/decal/cleanable/dirt, -/obj/item/trash/semki, -/obj/structure/cable/green, -/obj/item/stack/cable_coil/green, -/obj/item/frame/apc, -/turf/simulated/floor/tiled/freezer, -/area/vacant/sauna) -"qqh" = ( -/obj/item/scrap_lump, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"qqj" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"qqk" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"qqC" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"qqF" = ( -/obj/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/crucian_hangar/start) -"qqH" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"qqN" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/infirmreception) -"qrk" = ( -/obj/machinery/hologram/holopad/longrange, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"qrn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"qrp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_r) -"qrt" = ( -/obj/structure/bed/chair/office/comfy/teal, -/obj/landmark/start{ - name = "Chief Medical Officer" - }, -/obj/structure/curtain/bed{ - pixel_y = -32 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/heads/office/cmo/cobed) -"qrw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/command{ - c_tag = "AI Upload - Access" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"qrB" = ( -/obj/structure/closet/fridge, -/obj/item/reagent_containers/food/drinks/bottle/small/beer, -/obj/item/reagent_containers/food/drinks/bottle/small/beer, -/obj/item/reagent_containers/food/drinks/bottle/small/beer/fake, -/obj/item/reagent_containers/food/drinks/bottle/small/beer, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo/south) -"qrJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"qrU" = ( -/obj/structure/table/steel, -/obj/machinery/chemical_dispenser/bar_soft/full, -/obj/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"qrY" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "observation_shielding"; - name = "Observation Shield" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/dungeon_master_lounge) -"qse" = ( -/obj/machinery/light/led/small{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"qsg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"qsi" = ( -/obj/floor_decal/corner/paleblue, -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/ward) -"qsk" = ( -/obj/structure/railing/mapped, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"qsl" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"qsm" = ( -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/random/toolbox, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"qsn" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"qsw" = ( -/obj/structure/disposaloutlet, -/obj/machinery/shield_diffuser, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"qsA" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 8 - }, -/obj/machinery/smartfridge/secure/extract, -/obj/machinery/button/blast_door{ - dir = 1; - id_tag = "xenobio_surg"; - name = "Containment Blast Doors"; - pixel_y = -21; - req_access = list("ACCESS_RESEARCH") - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/xenobiology/level1) -"qsC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"qsD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"qsE" = ( -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"qsI" = ( -/obj/structure/railing/mapped, -/obj/structure/reagent_dispensers/watertank, -/obj/floor_decal/spline/plain/yellow{ - dir = 4 - }, -/obj/floor_decal/industrial/warning, -/obj/machinery/camera/network/supply{ - c_tag = "Supply Office - Warehouse"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"qsO" = ( -/obj/structure/railing/mapped, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"qsX" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Garden - Port"; - dir = 1 - }, -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"qtq" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"qtr" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/soap/pink_soap, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head) -"qtw" = ( -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/maintenance/seconddeck/aftstarboard) -"qtF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/blue/bordercorner{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"qtJ" = ( -/obj/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/gas) -"qtL" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/vacant/mess) -"qtN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar_atmos) -"qtP" = ( -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/wood{ - icon_state = "wood_broken4" - }, -/area/maintenance/firstdeck/forestarboard) -"qtU" = ( -/obj/machinery/button/blast_door{ - dir = 8; - pixel_x = 24; - name = "Armory Lethal blast door-control"; - id_tag = "armory_lethal"; - req_access = list("ACCESS_ARMORY") - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/armory) -"qtY" = ( -/obj/structure/sign/warning/pods/south{ - pixel_y = 32 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"qub" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"que" = ( -/obj/structure/table/standard, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/device/science_tool, -/turf/simulated/floor/tiled, -/area/rnd/locker) -"quf" = ( -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"qui" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/machinery/door/blast/regular/open{ - id_tag = "PetrovShield"; - name = "Petrov Blast Shutters" - }, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/plating, -/area/shuttle/petrov/equipment) -"qus" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood/walnut, -/area/vacant/gambling) -"quv" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"quz" = ( -/obj/structure/bed/chair/padded/brown{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/deckofficer) -"quD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor/orange, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"quP" = ( -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"quR" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/open, -/area/hallway/primary/bridgedeck/central_stairwell) -"quV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"qvc" = ( -/obj/structure/table/woodentable, -/obj/item/material/clipboard{ - pixel_y = 3; - pixel_x = 5 - }, -/obj/item/material/clipboard{ - pixel_y = -3; - pixel_x = -2 - }, -/obj/item/reagent_containers/food/drinks/cans/coffeecola{ - pixel_y = 12; - pixel_x = -7 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"qvi" = ( -/obj/floor_decal/corner/purple/border, -/obj/item/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/exploration) -"qvm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"qvr" = ( -/obj/paint/red, -/turf/simulated/wall/r_titanium, -/area/crucian_hangar/start) -"qvx" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"qvA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"qvF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/structure/sign/warning/airlock{ - dir = 4; - pixel_x = -32 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"qvI" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/item/stack/material/steel/fifty, -/obj/item/stack/material/steel{ - amount = 20 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"qvJ" = ( -/obj/floor_decal/spline/fancy/black, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/towel/ilove, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"qvO" = ( -/obj/structure/bed/sofa/m/lime, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/cafe/upper) -"qvW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"qvX" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"qvY" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"qwe" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/airlock_canisters) -"qwk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"qwu" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"qwz" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/obj/structure/bed/chair/padded/green{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"qwA" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"qwC" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"qwJ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"qwK" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - id = "fuel1p_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d3starboard) -"qwN" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d1port) -"qwO" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/plating, -/area/space) -"qwS" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"qwT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/glass/security{ - id_tag = "security_entry_airlock_exit"; - dir = 8; - name = "Security Exit" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway/aft) -"qxe" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"qxi" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"qxo" = ( -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"qxv" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"qxz" = ( -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/staging) -"qxD" = ( -/obj/machinery/vending/snack{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/lime/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"qxP" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"qxU" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"qxX" = ( -/obj/floor_decal/industrial/warning, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"qyi" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"qyv" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/expedition/storage) -"qyD" = ( -/obj/machinery/door/airlock/glass/civilian{ - name = "Primary Tool Storage" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"qyK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/foreport) -"qyL" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/bridgedeck/aft) -"qyP" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/device/flashlight/lamp/lava/orange{ - pixel_x = -6; - pixel_y = 13 - }, -/obj/item/book/manual/evaguide{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"qyQ" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"qyT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"qyW" = ( -/obj/floor_decal/corner/grey/full, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"qzf" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/fourthdeck/aft_stairwell) -"qzh" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/item/stack/material/phoron/ten, -/obj/item/stack/material/phoron/ten, -/obj/structure/closet/crate/secure/phoron{ - req_access = list("ACCESS_ENGINE_EQUIP"); - name = "Emergency backup phoron crate" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"qzj" = ( -/obj/machinery/jukebox/custom_tape, -/obj/structure/table/woodentable/maple, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"qzl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"qzs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"qzu" = ( -/obj/shuttle_landmark/ert/deck3, -/turf/space, -/area/space) -"qzw" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"qzL" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "bridge_windows" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/bridge) -"qzM" = ( -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d1starboard) -"qzP" = ( -/obj/machinery/vending/parts/research{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"qzQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/center) -"qzT" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/lipstick/purple, -/obj/item/lipstick/jade, -/obj/item/lipstick/black, -/obj/item/lipstick, -/obj/item/storage/mirror{ - pixel_x = 24 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor) -"qAf" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"qAh" = ( -/obj/structure/bed/sofa/m/black{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"qAn" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"qAu" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green, -/obj/structure/curtain/open/bed, -/obj/structure/flora/pottedplant/decorative, -/obj/floor_decal/carpet/red{ - dir = 4 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/iaa/cobed) -"qAw" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/office) -"qAW" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"qAX" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/dungeon_master_lounge) -"qAY" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"qBa" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"qBc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"qBe" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"qBf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"qBg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"qBk" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"qBr" = ( -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"qBx" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"qBD" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/table/woodentable/walnut, -/obj/structure/hygiene/sink{ - pixel_y = -12 - }, -/obj/item/reagent_containers/glass/bucket/wood{ - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sauna) -"qBH" = ( -/obj/engine_setup/smes, -/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ - RCon_tag = "Substation - Engine" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_smes) -"qBN" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"qBO" = ( -/obj/floor_decal/industrial/warning, -/obj/structure/table/standard, -/obj/item/storage/box/monkeycubes{ - pixel_x = 2 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenobiology Aft" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"qBP" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"qBR" = ( -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/industrial/loading{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"qBV" = ( -/obj/machinery/power/smes/buildable/preset/sierra/substation{ - RCon_tag = "Substation - Third Deck" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/thirddeck) -"qBW" = ( -/obj/structure/closet/secure_closet/injection, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"qBY" = ( -/obj/structure/closet/fridge/meat, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"qCr" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"qCt" = ( -/obj/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"qCv" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/machinery/camera/network/command{ - c_tag = "Command - Head of Personnel"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"qCA" = ( -/obj/decal/cleanable/dirt, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/item/trash/raisins, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"qCU" = ( -/obj/machinery/atmospherics/binary/pump/on{ - name = "gas supply pump"; - target_pressure = 200 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/atmos) -"qCV" = ( -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/corner/purple/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"qDa" = ( -/obj/machinery/power/solar_control{ - dir = 1; - id = "auxsolarport"; - name = "Port Solar Control" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"qDd" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"qDh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"qDi" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"qDl" = ( -/obj/structure/table/standard, -/obj/item/device/taperecorder, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation) -"qDo" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"qDr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"qDx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/sign/warning/airlock{ - dir = 8; - pixel_x = 32 - }, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"qDB" = ( -/obj/structure/closet/secure_closet/decktech, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/suplocker_room) -"qDD" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"qDE" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"qDI" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/foreport) -"qDN" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - dir = 4; - id_tag = "escape_pod_5_berth"; - name = "escape pod five berth controller"; - pixel_x = -20; - tag_door = "escape_pod_5_berth_hatch" - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"qDO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleporter"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/teleporter) -"qDS" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/mortus{ - dir = 4; - name = "Confessional Room" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/office) -"qDT" = ( -/turf/simulated/wall/prepainted, -/area/vacant/storage) -"qEa" = ( -/obj/structure/filingcabinet{ - pixel_x = -10 - }, -/obj/structure/filingcabinet, -/obj/structure/filingcabinet{ - pixel_x = 10 - }, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"qEj" = ( -/obj/shuttle_landmark/petrov/out, -/turf/space, -/area/space) -"qEm" = ( -/obj/machinery/door/airlock/glass/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hydroponics/third_deck_storage) -"qEo" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/brigdoor/northleft, -/obj/structure/table/rack{ - dir = 8 - }, -/obj/item/aiModule/purge, -/obj/item/aiModule/quarantine, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_cyborg_upload) -"qEp" = ( -/obj/structure/table/steel_reinforced, -/obj/floor_decal/techfloor, -/obj/floor_decal/corner/black{ - dir = 8 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmospherics - South"; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"qEw" = ( -/obj/structure/table/standard, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"qEQ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"qFc" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"qFq" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"qFr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/snow, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/galley/freezer) -"qFy" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/heads/office/hop) -"qFD" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"qFF" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d3port) -"qFH" = ( -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/structure/bed/chair/padded/blue, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/button/alternate/door/bolts{ - id_tag = "medsafe_fore"; - name = "safe room door-control"; - pixel_x = -25 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"qFV" = ( -/obj/floor_decal/industrial/hatch/grey, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/civilian{ - name = "Bartenders'" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/bar/cobed) -"qFZ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/civilian{ - dir = 8; - name = "Central Stairwell" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/central_stairwell) -"qGg" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "library_space_lower"; - name = "Space Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/lounge/upper) -"qGs" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"qGw" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"qGA" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"qGC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"qGO" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"qGQ" = ( -/obj/machinery/hologram/holopad/longrange, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/guppy_hangar/start) -"qGT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"qGV" = ( -/obj/structure/bed/chair/pew/left/mahogany{ - dir = 1; - icon_state = "chair_pewchapel_left_over" - }, -/obj/decal/cleanable/dirt, -/obj/structure/bed/chair/pew/mahogany, -/turf/simulated/floor/wood/walnut, -/area/vacant/sauna) -"qGW" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"qGX" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod2/station) -"qHf" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"qHq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"qHz" = ( -/obj/structure/ladder/up, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/foreport) -"qHE" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 4; - internal_pressure_bound = 35000; - internal_pressure_bound_default = 35000 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d3port) -"qHR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/firstdeck/centralport) -"qHV" = ( -/obj/structure/bed/chair/office/comfy/red{ - dir = 4 - }, -/obj/landmark/start{ - name = "Detective" - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"qHZ" = ( -/obj/structure/flora/pottedplant/tropical, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = -6; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/heads/captain/secret_room/level_one) -"qIa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"qId" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"qIe" = ( -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"qIk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"qIp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"qIs" = ( -/obj/floor_decal/corner/research/mono, -/obj/machinery/computer/rdservercontrol{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"qIw" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 1 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"qIB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/port) -"qIK" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - id_tag = "guppy_shuttle_pump" - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/tele_beacon, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - cycle_to_external_air = 1; - dir = 1; - frequency = 1331; - id_tag = "guppy_shuttle"; - pixel_x = 32; - pixel_y = -20; - req_access = list("ACCESS_GUPPY") - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"qIQ" = ( -/obj/structure/closet/secure_closet/security/sierra, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 1; - name = "Security RC"; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"qIT" = ( -/obj/machinery/button/blast_door{ - dir = 4; - id_tag = "bsa_space"; - name = "Obstruction Field Disperser Space Shield"; - pixel_x = -24; - req_access = list("ACCESS_GUN") - }, -/obj/structure/sign/warning/vacuum{ - dir = 4; - pixel_x = -45 - }, -/obj/machinery/conveyor_switch{ - id = "bsa"; - name = "Obstruction Field Disperser shell loader" - }, -/obj/floor_decal/corner/black/full, -/turf/simulated/floor/tiled/dark, -/area/command/bsa) -"qIZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id_tag = "firingspace"; - name = "FIRING RANGE SAFETY SHIELD" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"qJj" = ( -/obj/structure/bed/chair/wheelchair, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"qJo" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/structure/hygiene/sink{ - pixel_y = -12 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery) -"qJr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/civilian{ - dir = 4; - name = "Steward's Room" - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/galley/backroom) -"qJJ" = ( -/obj/item/modular_computer/telescreen/preset/trashcompactor{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"qJK" = ( -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"qJO" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"qJP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/corner/green/border, -/obj/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"qJR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"qKa" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"qKb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"qKd" = ( -/obj/structure/closet/crate/trashcart, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"qKf" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/flasher{ - id_tag = "ai_core"; - pixel_y = 24 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"qKk" = ( -/obj/structure/bed/chair/padded/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"qKs" = ( -/obj/floor_decal/carpet/purple{ - dir = 1 - }, -/obj/floor_decal/carpet/purple{ - dir = 8 - }, -/obj/floor_decal/carpet/purple{ - dir = 9 - }, -/obj/structure/curtain/bed{ - pixel_y = 32 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/office/rd/cobed) -"qKw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"qKx" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"qKz" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped, -/turf/space, -/area/space) -"qKJ" = ( -/obj/structure/closet/l3closet/scientist, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"qKK" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/shuttle_landmark/sierra/hangar/guppy, -/turf/simulated/floor/tiled, -/area/guppy_hangar/start) -"qKL" = ( -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/machinery/door/airlock/research{ - name = "Robotics Laboratory"; - req_access = newlist(); - id_tag = "rbtk_door" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/assembly/office) -"qKU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/thirddeck/center) -"qLd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"qLg" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/table/glass, -/obj/item/device/scanner/antibody_scanner, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"qLh" = ( -/obj/machinery/door/window/southright{ - dir = 1; - name = "Test Chamber" - }, -/obj/machinery/door/window/southright{ - name = "Test Chamber" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell2) -"qLi" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - id_tag = "ai_core_outer"; - locked = 1; - name = "AI Core Internal Access" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "ai_core_airlock"; - name = "exterior access button"; - pixel_x = 24; - req_access = list("ACCESS_AI_UPLOAD") - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/turret_protected/ai) -"qLn" = ( -/obj/shuttle_landmark/skipjack/dock, -/turf/space, -/area/space) -"qLt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 8 - }, -/obj/structure/holoplant, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Observatory"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"qLx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"qLA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/equipment) -"qLC" = ( -/obj/structure/curtain/bed, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"qLF" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Heat Exchanger Output" - }, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/ocp_wall, -/area/shuttle/petrov/gas) -"qLI" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/crew_quarters/gym) -"qLJ" = ( -/obj/floor_decal/corner/darkblue/full, -/obj/floor_decal/corner/black/three_quarters{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"qLK" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"qLW" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"qMa" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralport) -"qMb" = ( -/obj/machinery/recharger/wallcharger{ - dir = 4; - pixel_x = -23; - pixel_y = -3 - }, -/obj/structure/closet/secure_closet{ - name = "Security Equipment Locker"; - req_access = list("ACCESS_SECURITY") - }, -/obj/item/storage/mre/menu7, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/storage/box/donut, -/obj/item/reagent_containers/food/drinks/bottle/small/beer/fake, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"qMl" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology - Corridor" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"qMm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/meter, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"qMA" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/bed/chair/rounded/beige{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"qME" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"qMH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"qMJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/spline/fancy/black/corner, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"qMT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/office) -"qMW" = ( -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"qMX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/space) -"qNb" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"qNe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"qNi" = ( -/obj/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold4w/visible/green, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"qNl" = ( -/obj/floor_decal/spline/fancy/black/corner{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/bar/cobed) -"qNm" = ( -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"qNr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"qNt" = ( -/obj/wallframe_spawn, -/obj/structure/barricade, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"qNw" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"qNx" = ( -/obj/machinery/power/smes/buildable/preset/sierra/engine_main{ - RCon_tag = "Prototype - Distribution" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/control) -"qNA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod2/station) -"qNK" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"qNQ" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/industrial/danger/corner, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"qNV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"qNW" = ( -/turf/simulated/floor/carpet/orange, -/area/security/range) -"qNZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"qOa" = ( -/obj/machinery/stasis_cage, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"qOc" = ( -/obj/item/paper/sticky{ - name = "I not wall, i am door."; - pixel_x = 25 - }, -/turf/simulated/floor/wood/walnut, -/area/maintenance/firstdeck/foreport) -"qOk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/medical/virology/atmos) -"qOn" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/fourthdeck/forestarboard) -"qOv" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/sleep/bunk) -"qOy" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"qOz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"qOC" = ( -/obj/machinery/vending/boozeomat{ - req_access = list("ACCESS_BAR") - }, -/obj/machinery/light/led/small{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 5 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"qOG" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/machinery/smartfridge/secure/medbay{ - req_access = list() - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"qOH" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/floor_decal/corner/black/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"qOK" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 9 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d3starboard) -"qOS" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - id_tag = "escape_pod_5_pump" - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod5/station) -"qOU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"qPa" = ( -/obj/structure/closet/secure_closet{ - name = "Secure Evidence Locker"; - req_access = list("ACCESS_SECURITY") - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techmaint, -/area/security/sierra/evidence) -"qPe" = ( -/obj/structure/table/steel, -/obj/random/powercell, -/obj/item/frame/fire_alarm, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"qPp" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"qPv" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"qPx" = ( -/turf/simulated/floor/tiled, -/area/security/brig) -"qPz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"qPA" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"qPH" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"qPL" = ( -/obj/machinery/fusion_fuel_compressor, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"qPR" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"qPS" = ( -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"qQa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/vacant/monitoring) -"qQu" = ( -/obj/structure/closet/crate/secure/biohazard/alt{ - req_access = list("ACCESS_XENOBIO") - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/petrov{ - c_tag = "Petrov - Equipment Room"; - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/equipment) -"qQx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"qQz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/obj/machinery/nav_light, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"qQA" = ( -/obj/wallframe_spawn/reinforced_phoron/titanium, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell3) -"qQC" = ( -/obj/floor_decal/borderfloorblack, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/bunk) -"qQF" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/medical{ - name = "Hospital Back Room" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_main_reg"; - name = "Infirmary Entry Shutters" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"qQG" = ( -/obj/machinery/shield_diffuser, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"qQI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"qQL" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"qQM" = ( -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/reagent_containers/food/snacks/slice/xenomeatbread/filled{ - pixel_x = 17 - }, -/obj/item/folder/nt{ - pixel_y = 7; - pixel_x = -10 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/sleep/bunk) -"qQO" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/tank{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "CO21p_out"; - initialize_directions = 1; - internal_pressure_bound = 1000; - internal_pressure_bound_default = 1000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/obj/structure/window/boron_reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d3starboard) -"qQR" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1441; - id = "waste_in"; - use_power = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"qQX" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"qQY" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"qRd" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"qRo" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"qRq" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/machinery/camera/network/hangar{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"qRr" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"qRx" = ( -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"qRF" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/table/woodentable_reinforced/ebony, -/obj/item/storage/box/glasses{ - pixel_y = 7 - }, -/obj/item/storage/box/glass_extras/sticks, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"qRL" = ( -/obj/random/obstruction, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"qRN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"qRO" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"qRS" = ( -/obj/floor_decal/corner/darkblue/full, -/obj/floor_decal/corner/red/full, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"qRU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"qRV" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/machinery/computer/modular/preset/engineering{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"qRX" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"qRZ" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/structure/bed/sofa/l/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"qSl" = ( -/obj/machinery/computer/modular/preset/cardslot/command{ - dir = 8 - }, -/obj/machinery/button/windowtint{ - dir = 8; - id = "pathfinder_office"; - pixel_x = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/machinery/button/blast_door{ - dir = 8; - pixel_x = 24; - pixel_y = 10; - id_tag = "exp_leader_window_to_space" - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"qSm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/port) -"qSp" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/dark/monotile, -/area/maintenance/seconddeck/aftport) -"qSv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"qSx" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/misc_lab) -"qSy" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/item/storage/box/lights/mixed, -/obj/item/clothing/gloves/thick/duty, -/obj/machinery/light/small, -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/foreport) -"qSD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"qSQ" = ( -/obj/structure/bed/sofa/r/black{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"qSS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"qSX" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"qSZ" = ( -/obj/structure/disposalpipe/segment/bent, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"qTe" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"qTi" = ( -/obj/structure/table/standard, -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/floor_decal/corner/beige/diagonal, -/obj/floor_decal/corner/brown/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/vacant/dormintories) -"qTm" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"qTB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/green, -/area/medical/mentalhealth/therapyroom) -"qTL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/rotating_alarm/supermatter{ - pixel_y = -14; - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"qTM" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d3port) -"qUe" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"qUp" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"qUq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"qUr" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"qUA" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/port) -"qUN" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/corner/green/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/virology{ - locked = 1; - id_tag = "virology_access_outer"; - frequency = 1379; - name = "Virology" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "vir_blast_enter"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology) -"qUR" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"qUW" = ( -/obj/machinery/computer/cryopod{ - pixel_y = -24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/fourthdeck/central_stairwell) -"qVa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Bridge Solar Access" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/solar/bridge_port) -"qVc" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"qVf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/ntlogo{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/entry) -"qVi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/civilian{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown3_2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/aft) -"qVk" = ( -/obj/structure/bed/chair/wood/walnut{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftport) -"qVo" = ( -/obj/shuttle_landmark/merc/deck3, -/turf/space, -/area/space) -"qVv" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"qVw" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"qVC" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"qVF" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -23; - pixel_y = 12 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/machinery/light/led/small, -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/obj/structure/closet/shipping_wall/filled{ - pixel_x = -32 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Bar - Counter"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"qVG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/black/full, -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"qVH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/camera/network/fourth_deck{ - c_tag = "Escape Pods - Port"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"qVI" = ( -/turf/simulated/wall/prepainted, -/area/chapel/main) -"qVP" = ( -/obj/structure/table/standard, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/floor_decal/corner/grey{ - dir = 5 - }, -/obj/item/flame/lighter/random, -/obj/item/storage/fancy/smokable/dromedaryco{ - pixel_y = 6; - pixel_x = -4 - }, -/obj/item/deck/cards{ - pixel_y = 9; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"qVU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"qVV" = ( -/turf/simulated/open, -/area/crew_quarters/lounge/upper) -"qVX" = ( -/obj/structure/table/marble, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_y = 8 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"qWf" = ( -/obj/structure/sign/nanotrasen{ - dir = 1 - }, -/turf/simulated/wall/r_wall/hull, -/area/hallway/primary/fourthdeck/center) -"qWi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"qWk" = ( -/obj/structure/sign/directions/security{ - pixel_y = -24; - dir = 4 - }, -/obj/structure/sign/directions/infirmary{ - pixel_y = -31; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/central_stairwell) -"qWn" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "solar_port_outer"; - name = "Engineering External Access" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar) -"qWo" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"qWx" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "vir_blast_window" - }, -/turf/simulated/floor/plating, -/area/medical/virology/lab) -"qWy" = ( -/obj/structure/table/standard, -/obj/item/hand_labeler, -/obj/floor_decal/corner/research/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/office) -"qWz" = ( -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/dark/monotile, -/area/maintenance/bridgedeck/port) -"qWD" = ( -/obj/structure/table/rack, -/obj/item/storage/box/trackimp, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/head/welding, -/obj/machinery/button/blast_door{ - dir = 4; - pixel_x = -24; - id_tag = "armory_lethal"; - name = "Armory Lethal blast door-control"; - req_access = list("ACCESS_ARMORY") - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"qWF" = ( -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hydroponics/third_deck_storage) -"qWK" = ( -/obj/machinery/washing_machine, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"qWS" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"qWV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 4; - name = "Captain"; - sort_type = "Captain" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"qXj" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"qXo" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"qXp" = ( -/obj/machinery/disposal, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/wood/corner, -/obj/structure/sign/directions/security{ - pixel_x = 32; - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"qXy" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Quarter"; - secured_wires = 1; - stripe_color = "#b7f27d" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/hop/cobed) -"qXB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head/deck3) -"qXM" = ( -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/structure/bed/chair/office/green{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/ward) -"qXP" = ( -/obj/machinery/door/airlock/hatch{ - autoset_access = 0; - dir = 4; - name = "Cockpit"; - req_access = list("ACCESS_EXPEDITION_SHUTTLE") - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cockpit) -"qXQ" = ( -/turf/simulated/open, -/area/maintenance/thirddeck/aftstarboard) -"qXR" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/self_destruct, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/nuke_storage) -"qYj" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/seconddeck) -"qYn" = ( -/obj/structure/lattice, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/space) -"qYq" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"qYt" = ( -/obj/machinery/door/blast/regular/escape_pod{ - id_tag = "escape_pod_4" - }, -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/port) -"qYz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - target_pressure = 200 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"qYD" = ( -/obj/structure/table/standard, -/obj/random/firstaid, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod1/station) -"qYE" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"qYL" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/one{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/pitcher{ - pixel_y = 4; - pixel_x = -3 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Supply Office - Office Room"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"qYN" = ( -/obj/machinery/door/window/brigdoor/northleft{ - dir = 2; - name = "thruster vent access"; - req_access = newlist() - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "ThrusterVents"; - name = "Thruster Blast Door" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"qYS" = ( -/obj/structure/curtain/medical, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"qYU" = ( -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id_tag = "concheckwindow"; - name = "Operation Checkpoint Shutters"; - opacity = 0 - }, -/obj/wallframe_spawn/reinforced, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/security/opscheck) -"qYV" = ( -/obj/machinery/access_button/airlock_interior{ - master_tag = "sd_starboard"; - name = "interior access button"; - pixel_x = -24; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/machinery/door/airlock/external/glass/bolted/cycling{ - id_tag = "sd_starboard_inner"; - name = "Second Deck Port Airlock" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"qYZ" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"qZb" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/techfloor, -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"qZf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"qZg" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"qZj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/civilian{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown1_2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/center) -"qZk" = ( -/obj/floor_decal/corner/red, -/obj/structure/table/steel, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"qZm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/laundry) -"qZn" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/firedoor, -/obj/paint_stripe/red, -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"qZo" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"qZq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"qZt" = ( -/obj/structure/lattice, -/obj/random/junk, -/obj/random/trash, -/turf/simulated/open, -/area/maintenance/seconddeck/aftport) -"qZE" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/machinery/sparker{ - id_tag = "engines"; - pixel_x = -24 - }, -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - injecting = 1; - use_power = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d3port) -"qZF" = ( -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/machinery/computer/modular/preset/security{ - dir = 4 - }, -/obj/floor_decal/corner/red/mono, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"qZJ" = ( -/obj/structure/table/woodentable/mahogany, -/obj/item/storage/bible/kojiki, -/obj/item/storage/bible/quran, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"qZL" = ( -/obj/floor_decal/corner/black/half, -/obj/floor_decal/corner/red/bordercorner2, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Gym"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"qZR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/civilian{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown1_2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/center) -"rac" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Fourth Deck Substation"; - req_access = newlist(); - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/substation/fourthdeck) -"ral" = ( -/obj/floor_decal/corner/grey{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"rap" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/hologram/holopad, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"rau" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"rav" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"raP" = ( -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/engineering/engine_room) -"raU" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "eng2"; - name = "Third Deck Port Nacelle Access"; - pixel_y = 21; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/machinery/atmospherics/valve/shutoff/fuel{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/thruster/d3port) -"raX" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/space) -"rbf" = ( -/obj/random/trash, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"rbg" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"rbh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"rbm" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"rbn" = ( -/obj/floor_decal/corner/darkblue/half, -/obj/floor_decal/corner/darkblue{ - dir = 5 - }, -/obj/structure/table/standard, -/obj/item/material/ashtray/bronze, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 1; - pixel_y = -13 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"rbs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"rbt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"rbu" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/obj/structure/sign/nanotrasen{ - dir = 8 - }, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod2/station) -"rbz" = ( -/obj/machinery/door/window/brigdoor/southright{ - autoset_access = 0; - dir = 8; - name = "Test Chamber"; - req_access = list("ACCESS_TOXINS") - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"rbD" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftstarboard) -"rbE" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/stack/material/plasteel/ten, -/obj/item/stack/material/plasteel/ten, -/obj/item/stack/material/plasteel/ten, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"rbF" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#4c535b" - }, -/area/quartermaster/hangar/upper) -"rbM" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/reagent_dispensers/water_cooler{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"rbR" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/box/evidence, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/ship) -"rbU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"rbV" = ( -/obj/structure/catwalk, -/obj/item/reagent_containers/food/snacks/meat/monkey, -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/open, -/area/rnd/xenobiology/water_cell) -"rcc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"rcj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/meter, -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/storage) -"rcp" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/seconddeck) -"rcx" = ( -/obj/machinery/door/airlock/research{ - dir = 4; - name = "Canister Storage"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/canister) -"rcD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft) -"rcN" = ( -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"rcO" = ( -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/aft_stairwell) -"rcS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/tech) -"rcV" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"rcW" = ( -/obj/machinery/vending/generic{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 4; - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"rdf" = ( -/obj/machinery/computer/modular/preset/security{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/black/border{ - dir = 5 - }, -/obj/machinery/button/windowtint{ - dir = 8; - id = "interrogation_no1_windows"; - pixel_x = 22; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation) -"rdj" = ( -/obj/decal/cleanable/blood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/foreport) -"rdn" = ( -/obj/floor_decal/corner/purple/full, -/obj/structure/closet/cabinet, -/obj/item/book/manual/research_and_development, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/rd/cobed) -"rdv" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"rdw" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/machinery/computer/cryopod{ - pixel_x = -32 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod6/station) -"rdH" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/random/obstruction, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/foreport) -"rdI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"rdK" = ( -/obj/machinery/atmospherics/valve/digital{ - dir = 4; - name = "emergency cooling valve" - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"rdM" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"rdN" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 5 - }, -/obj/structure/closet/emcloset/anchored, -/obj/machinery/camera/network/bridge_deck{ - dir = 8; - c_tag = "Bridge Deck - Aft Hallway" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"rdO" = ( -/obj/shuttle_landmark/sierra/deck3/crucian, -/turf/space, -/area/space) -"rdU" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"rdY" = ( -/obj/floor_decal/solarpanel, -/obj/machinery/power/solar{ - id = "auxsolarsport"; - name = "Aft Port Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/solar/port) -"red" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftport) -"rem" = ( -/turf/simulated/wall/prepainted, -/area/holocontrol) -"rep" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad/longrange, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"res" = ( -/obj/structure/table/steel, -/obj/item/device/flashlight/lamp, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"rev" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"reI" = ( -/obj/machinery/body_scan_display{ - pixel_y = -32 - }, -/obj/machinery/computer/operating{ - dir = 8 - }, -/obj/floor_decal/corner/grey_alt/three_quarters{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"reM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"reN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/glass/security{ - dir = 8; - name = "Security Airlock" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway) -"reP" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/decal/cleanable/blood/oil, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"reQ" = ( -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/commissary) -"reS" = ( -/obj/machinery/atmospherics/binary/pump/on{ - name = "Air to Supply" - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"reW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/table/standard, -/obj/item/device/destTagger{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/stack/package_wrap/cargo_wrap, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"rfa" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"rfi" = ( -/obj/paint_stripe/nt_red, -/obj/paint/nt_white, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod7/station) -"rfn" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"rfp" = ( -/obj/structure/table/steel, -/obj/machinery/photocopier/faxmachine{ - department = "CE"; - destination = "NanoTrasen Central Command" - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 5; - name = "Chief Engineer RC"; - pixel_y = 30 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"rfs" = ( -/obj/structure/bed/chair/padded/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"rfE" = ( -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"rfI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"rfN" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"rfT" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"rfU" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "PetrovShield"; - name = "Petrov Blast Shutters" - }, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/plating, -/area/shuttle/petrov/cockpit) -"rfX" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"rfZ" = ( -/obj/machinery/portable_atmospherics/canister/hydrogen, -/obj/floor_decal/industrial/outline/blue, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"rgg" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"rgx" = ( -/obj/shuttle_landmark/escape_pod/start/pod8, -/obj/wallframe_spawn/reinforced/titanium, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/escape_pod8/station) -"rgy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"rgK" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/heads/captain/secret_room/level_one) -"rgN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"rgQ" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/green/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"rgS" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"rhb" = ( -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"rhc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"rhi" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/surgery, -/obj/machinery/body_scan_display{ - pixel_y = -28 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery/second) -"rhk" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor, -/obj/paint_stripe/red, -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"rhl" = ( -/obj/machinery/door/airlock/hatch{ - dir = 4; - name = "Seating"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"rho" = ( -/obj/structure/largecrate, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"rhs" = ( -/obj/machinery/suit_storage_unit/science, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/eva) -"rhx" = ( -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"rhy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"rhB" = ( -/obj/paint_stripe/yellow, -/obj/paint/dark_gunmetal, -/turf/simulated/wall/r_titanium, -/area/guppy_hangar/start) -"rhC" = ( -/obj/machinery/computer/modular/preset/civilian, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo/bridge) -"rhD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft) -"rhF" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos/cobed) -"rhH" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/selfestructgrid, -/area/security/nuke_storage) -"rhJ" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"rhN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"rhQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - autoset_access = 0; - dir = 4; - frequency = 1331; - id_tag = "guppy_shuttle_outer"; - name = "Guppy External Access"; - req_access = list("ACCESS_GUPPY") - }, -/obj/machinery/door/blast/regular{ - id_tag = "guppy_hatch"; - name = "Rear Hatch" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"rhT" = ( -/obj/structure/cart{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"rhV" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - id = "fuel4p_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d1port) -"rhZ" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"ria" = ( -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf/steel{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/northleft{ - dir = 8; - name = "Security Checkpoint" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - opacity = 0; - id_tag = "lobb_shutt" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lob_bridge_lock" - }, -/turf/simulated/floor/plating, -/area/bridge/lobby) -"rig" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"rip" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/reinforced, -/area/space) -"riq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/fore) -"rit" = ( -/obj/fluid_mapped, -/mob/living/simple_animal/aquatic/fish, -/turf/simulated/floor/beach/sand, -/area/rnd/xenobiology/level2) -"riB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"riP" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/head/deck3) -"riQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/closet/walllocker{ - pixel_x = -28 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/corner/green/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"rjb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"rjg" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/aft) -"rjh" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"rjw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "First Deck - Starbound Necelle" - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"rjy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_to_maint" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/ward) -"rjz" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Telecoms Storage"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/storage) -"rjA" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d3port) -"rjF" = ( -/obj/floor_decal/solarpanel, -/obj/machinery/power/solar{ - id = "auxsolarsport"; - name = "Aft Port Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/airless, -/area/solar/port) -"rjN" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"rjS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"rkb" = ( -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine{ - department = "CMO"; - destination = "NanoTrasen Central Command" - }, -/obj/floor_decal/corner/blue{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"rkh" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "solar_bridge_port_airlock"; - name = "interior access button"; - pixel_x = 24; - pixel_y = 24; - req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/solar/bridge_port) -"rkp" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/quartermaster/storage) -"rku" = ( -/obj/structure/bed/chair/wood/walnut, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"rky" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"rkB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"rkR" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/blast_door{ - id_tag = "PetrovShield"; - name = "Blast Shutter Control"; - pixel_x = 5; - pixel_y = -3 - }, -/obj/item/device/radio, -/obj/machinery/camera/network/petrov{ - c_tag = "Petrov - Cockpit"; - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/cockpit) -"rkT" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"rkW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"rkX" = ( -/obj/machinery/atmospherics/unary/engine{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/exploration_shuttle/power) -"rkZ" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/plating, -/area/engineering/engine_monitoring) -"rle" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/full, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/ce) -"rlt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"rly" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/structure/reagent_dispensers/watertank, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"rlH" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"rlI" = ( -/obj/structure/holoplant, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/office) -"rlJ" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cargo_l) -"rlQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/holocontrol) -"rlU" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/space) -"rlW" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"rmf" = ( -/obj/structure/closet/crate/trashcart, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"rmo" = ( -/obj/structure/bed/chair/office/brown{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"rmB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"rmQ" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/machinery/power/apc/high{ - dir = 8; - name = "west bump"; - pixel_x = -25 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"rmS" = ( -/obj/floor_decal/spline/plain/black{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"rmW" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/door/airlock/external/escapepod{ - dir = 4; - id_tag = "escape_pod_4_berth_hatch"; - name = "Escape Pod Four" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/center) -"rnx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/structure/grille, -/obj/machinery/door/blast/regular{ - dir = 8; - id_tag = "engineroomvent"; - name = "Engine Room Vent" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"rnD" = ( -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"rnI" = ( -/obj/floor_decal/industrial/warning/half, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"rnL" = ( -/obj/machinery/drone_fabricator/sierra, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"rnO" = ( -/obj/machinery/button/blast_door{ - id_tag = "qm_warehouse2"; - name = "Warehouse Door Control"; - pixel_y = 27; - req_access = list("ACCESS_CARGO") - }, -/obj/vehicle/train/cargo/engine, -/obj/floor_decal/spline/plain/brown{ - dir = 6 - }, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"rnP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/atmos) -"rnQ" = ( -/obj/structure/bed/chair/padded/red, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/fore) -"rnX" = ( -/obj/machinery/computer/modular/preset/cardslot/command{ - dir = 8 - }, -/obj/floor_decal/carpet/blue2{ - dir = 4 - }, -/obj/floor_decal/carpet/blue2, -/obj/floor_decal/carpet/blue2{ - dir = 6 - }, -/obj/machinery/computer/guestpass{ - dir = 1; - pixel_y = -23 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/hop) -"rob" = ( -/obj/structure/largecrate, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"rom" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"roq" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"rot" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 8 - }, -/obj/machinery/atmospherics/valve/shutoff/supply, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"row" = ( -/obj/random/obstruction, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"rox" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "firingspace"; - name = "Firing Range Shields" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"roC" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/air_sensor{ - id_tag = "rust_sensor" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"roN" = ( -/obj/structure/hygiene/shower{ - dir = 8; - pixel_x = 9 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"roS" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/power/port_gen/pacman{ - sheets = 25 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"rpl" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/glass/maintenance{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar/upper) -"rpv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/button/blast_door{ - id_tag = "xenobioa2"; - name = "Containment Blast Doors"; - pixel_x = -6; - pixel_y = 21; - req_access = list("ACCESS_RESEARCH") - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"rpx" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"rpA" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell1) -"rpD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"rpE" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/open, -/area/space) -"rpI" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"rpP" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/firstdeck/forestarboard) -"rpR" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/reagentgrinder, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/stack/material/phoron, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/scan) -"rpY" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/grass/cut, -/area/hallway/primary/bridgedeck/center) -"rqd" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/stock_parts/circuitboard/helm, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech/high_risk) -"rqg" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/regular{ - id_tag = "vir_blast_window" - }, -/turf/simulated/floor/plating, -/area/medical/virology/lab) -"rql" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - name = "Third Deck Fore Starboard Nacelle Access"; - id_tag = "td_fore_starboard_outer" - }, -/obj/machinery/access_button/airlock_exterior{ - dir = 1; - master_tag = "td_fore_starboard"; - name = "exterior access button"; - pixel_x = 24; - req_access = list("ACCESS_EXTERNAL") - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/forestarboard) -"rqp" = ( -/obj/structure/sign/deck/third{ - dir = 8; - pixel_x = 32 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/obj/structure/sign/directions/supply{ - dir = 8; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"rqr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/beige/diagonal, -/obj/floor_decal/corner/brown/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/vacant/dormintories) -"rqs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/security{ - id_tag = "wardoor"; - name = "Warden" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/sierra/sergeant) -"rqt" = ( -/obj/floor_decal/corner/grey{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"rqD" = ( -/obj/machinery/door/airlock/hatch{ - name = "Cargo Bay Right"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_r) -"rqK" = ( -/obj/machinery/atmospherics/unary/engine{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"rqW" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/thirddeck/aftport) -"rqX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/prison) -"rrc" = ( -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"rri" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"rrl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/forensic/lab) -"rro" = ( -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"rrs" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"rru" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"rrx" = ( -/obj/structure/table/rack, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/tcommsat/storage) -"rrR" = ( -/obj/structure/table/steel, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/random/clipboard{ - pixel_y = -2; - pixel_x = 3 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/device/binoculars, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/hangar/upper) -"rrX" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"rrY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3starboard) -"rrZ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/surgery, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery) -"rsb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"rsf" = ( -/obj/structure/table/glass, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/item/diseasedisk, -/obj/item/diseasedisk, -/obj/item/diseasedisk, -/obj/floor_decal/corner/green/mono, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"rsi" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"rso" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"rsp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "firingspace"; - name = "Firing Range Shields" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/paint_stripe/red, -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/security/range) -"rsq" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped, -/obj/structure/handrail, -/turf/space, -/area/space) -"rst" = ( -/obj/structure/dispenser/oxygen, -/obj/floor_decal/industrial/outline/grey, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"rsv" = ( -/obj/structure/closet{ - anchored = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"rsE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal, -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"rsF" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"rsG" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/floor_decal/corner/brown/mono, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar_stairs/upper) -"rsS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"rta" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"rtg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/galley/backroom) -"rtl" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/purple/bordercorner2, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"rto" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"rtD" = ( -/obj/machinery/computer/air_control{ - input_tag = "test_xenoflora_in"; - name = "Test Chamber Gas Monitor"; - output_tag = "test_xenoflora_out"; - sensor_name = "Xenoflora Environment"; - sensor_tag = "xenobot_sensor" - }, -/obj/floor_decal/corner/green/three_quarters{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"rtE" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - name = "Robotics Laboratory"; - sort_type = "Robotics Laboratory" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft) -"rtI" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/largecrate, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"rtR" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 1 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director"; - departmentType = 3; - name = "Research Director RC"; - pixel_x = 32 - }, -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/heads/office/rd) -"rtT" = ( -/turf/simulated/open, -/area/space) -"rtU" = ( -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/infirmreception) -"rtV" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/black/border{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Interrogation Two"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation/second) -"rtY" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/port) -"rub" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - target_pressure = 40 - }, -/obj/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"rui" = ( -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"ruj" = ( -/obj/structure/bed/sofa/r/brown{ - dir = 1 - }, -/obj/floor_decal/carpet/red, -/obj/floor_decal/carpet/red{ - dir = 8 - }, -/obj/floor_decal/carpet/red{ - dir = 10 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"ruk" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/civilian{ - id_tag = "old_maintaince_privatedorm"; - name = "Old Dorms"; - locked = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/dormintories) -"rut" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/obj/machinery/ship_map, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"ruy" = ( -/obj/floor_decal/spline/fancy/wood/corner, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/random/ironing_board_structure, -/obj/item/ironing_iron, -/obj/machinery/light/spot, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"ruz" = ( -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/storage/box/lights/led_neon, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge/storage) -"ruB" = ( -/obj/shuttle_landmark/merc/deck2, -/turf/space, -/area/space) -"ruE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southleft{ - autoset_access = 0; - dir = 4; - name = "Supply Desk" - }, -/obj/machinery/door/window/brigdoor/southright{ - dir = 8; - name = "Supply Desk"; - req_access = newlist() - }, -/obj/machinery/door/blast/shutters/open{ - name = "Supply Desk Shutters"; - id_tag = "sup_office"; - dir = 4 - }, -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf{ - dir = 4 - }, -/obj/item/material/bell{ - pixel_y = 1; - pixel_x = 6 - }, -/turf/simulated/floor/plating, -/area/quartermaster/office) -"ruI" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"ruK" = ( -/obj/machinery/cryopod{ - dir = 2 - }, -/obj/machinery/computer/cryopod{ - pixel_x = -32 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod9/station) -"ruP" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "ThrusterVents"; - name = "Thruster Blast Door" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"ruT" = ( -/obj/structure/railing/mapped{ - dir = 8; - init_color = "#46698c"; - color = "#46698c" - }, -/obj/structure/railing/mapped{ - color = "#46698c"; - init_color = "#46698c" - }, -/turf/simulated/open, -/area/hallway/primary/bridgedeck/central_stairwell) -"rvc" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"rvf" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"rvh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/civilian{ - name = "Kitchen"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"rvk" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation) -"rvp" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Substation - Fourth Deck"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/fourthdeck) -"rvq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking_1{ - desc = "A warning sign which reads 'NO SMOKING'. Someone has scratched a variety of crude words in gutter across the entire sign."; - pixel_y = 32 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"rvv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"rvx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"rvy" = ( -/obj/floor_decal/corner/black/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"rvB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"rvD" = ( -/obj/floor_decal/corner/lightgrey/mono, -/obj/structure/bed/chair/office/green{ - dir = 4 - }, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/green/bordercee, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"rvT" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/test_room) -"rwb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"rwc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"rwo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"rwx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/decal/cleanable/generic, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"rwA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"rwJ" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "qm_warehouse2"; - name = "Warehouse Shutters" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/storage) -"rwM" = ( -/obj/structure/closet/secure_closet/guncabinet/sierra_armory/egun, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory) -"rwV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"rxa" = ( -/obj/structure/table/rack, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"rxd" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "hangar_checkpoint_shutters"; - name = "Hangar Deck Checkpoint Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/security/sierra/dockcheck) -"rxq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"rxw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/catwalk_plated/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/hallway) -"rxI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - id_tag = "iaadoorleft"; - name = "Internal Affairs Agent"; - secured_wires = 1; - hackProof = 1; - ai_control_disabled = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/iaa) -"rxK" = ( -/obj/floor_decal/corner/black/three_quarters{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/ship) -"rxO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"rxR" = ( -/obj/machinery/suit_storage_unit/mining, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/brown/border, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"rxU" = ( -/obj/structure/bed/chair/padded/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"rxZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/blue{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"rye" = ( -/obj/floor_decal/corner/paleblue, -/obj/structure/bed/chair/office/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/ward) -"ryg" = ( -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ryk" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"ryn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/green/border, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"ryq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"ryz" = ( -/obj/machinery/vending/coffee, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"ryC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"ryI" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"ryJ" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"ryR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"ryY" = ( -/obj/structure/closet/l3closet/general/multi, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/spline/plain/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"ryZ" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/exploration_shuttle/power) -"rzd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"rzi" = ( -/obj/floor_decal/corner/green/border{ - dir = 6 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/corner/green/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/sleep/cryo/south) -"rzl" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d1port) -"rzq" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/firstaid/radiation{ - pixel_y = 7 - }, -/obj/item/storage/firstaid/fire{ - pixel_y = -2 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"rzH" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"rzI" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"rzP" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/space) -"rzT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"rAd" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 10 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d3port) -"rAf" = ( -/obj/floor_decal/industrial/loading{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"rAg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown2_2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"rAi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"rAj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"rAl" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 1; - id_tag = "petrov_shuttle_dock_pump" - }, -/obj/machinery/airlock_sensor{ - id_tag = "petrov_shuttle_dock_sensor"; - master_tag = "petrov_shuttle_dock"; - pixel_x = -24; - frequency = 1380 - }, -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"rAm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"rAu" = ( -/obj/structure/table/steel, -/obj/machinery/button/blast_door{ - id_tag = "PetrovShield"; - name = "Blast Shutter Control"; - pixel_x = 5; - pixel_y = -3 - }, -/obj/machinery/button/alternate/door{ - desc = "A remote control-switch for airlocks."; - id_tag = "PetrovAccess"; - name = "Petrov Interior Door Control"; - pixel_x = -5; - pixel_y = 6 - }, -/obj/machinery/button/blast_door{ - id_tag = "PetrovBiohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -5; - pixel_y = -3 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "concheckwindow2"; - name = "Office Shutter Control"; - pixel_x = 5; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/security) -"rAC" = ( -/obj/machinery/door/window/westright{ - dir = 1; - name = "Medical Reception" - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/infirmreception) -"rAI" = ( -/obj/item/device/radio/intercom/locked/ai_private{ - pixel_y = 22 - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"rAK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"rAR" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"rAU" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/medical{ - name = "Hospital" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id_tag = "med_pat_ward"; - name = "Infirmary Window Shutters" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"rAX" = ( -/obj/structure/ladder/up, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"rAZ" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/critical{ - name = "north bump"; - pixel_y = 21; - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/solar/bridge_starboard) -"rBf" = ( -/obj/structure/table/rack, -/obj/item/tape_roll, -/obj/item/stack/material/cardboard/fifty, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/item/shuttle_beacon, -/obj/item/shuttle_beacon, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/spline/plain/yellow{ - dir = 9 - }, -/obj/random/maintenance/clean, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"rBp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"rBx" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/field_generator, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"rBy" = ( -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/thirddeck/aftport) -"rBA" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery) -"rBD" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar_atmos) -"rBL" = ( -/obj/machinery/light/spot, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled, -/area/security/brig) -"rBO" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"rBS" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"rBT" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/cell_charger, -/obj/item/cell/high, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"rBU" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/civilian{ - dir = 4; - name = "Restroom" - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/head_big) -"rBV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/center) -"rBY" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/ballistic, -/obj/item/clothing/head/helmet/ballistic, -/obj/item/clothing/head/helmet/ballistic, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"rBZ" = ( -/obj/machinery/recharge_station, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"rCc" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"rCd" = ( -/obj/machinery/atmospherics/unary/tank{ - color = "#ff0000"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"rCs" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"rCy" = ( -/obj/item/stool/bar, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"rCB" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"rCE" = ( -/obj/machinery/door/window/brigdoor/eastright{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/structure/closet/walllocker{ - pixel_x = 28 - }, -/obj/item/hand_labeler, -/turf/simulated/floor/tiled/techmaint, -/area/security/sierra/evidence) -"rCI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"rCL" = ( -/obj/machinery/vending/cola{ - dir = 1 - }, -/obj/machinery/light, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"rCN" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/compactor) -"rCX" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light/small, -/obj/item/stack/material/steel/fifty, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"rCZ" = ( -/obj/machinery/power/port_gen/pacman{ - sheets = 25 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"rDf" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/window/boron_reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"rDh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"rDj" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"rDm" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"rDr" = ( -/turf/simulated/floor/reinforced, -/area/exploration_shuttle/medical) -"rDs" = ( -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d1starboard) -"rDu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/pew, -/obj/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/actor/stage) -"rDD" = ( -/obj/floor_decal/corner/black/border{ - dir = 5 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"rDH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"rDP" = ( -/obj/floor_decal/industrial/traffic{ - dir = 1; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/office) -"rDR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"rEc" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/table/standard, -/obj/item/cell/high, -/obj/item/cell/high, -/obj/machinery/cell_charger, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"rEd" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"rEh" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"rEn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"rEv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/yellow{ - dir = 8 - }, -/obj/machinery/fabricator, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"rEy" = ( -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"rEG" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/paint_stripe/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced/polarized{ - id = "forensicswindow" - }, -/turf/simulated/floor/plating, -/area/security/sierra/forensic) -"rEQ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass/command, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/aft) -"rFc" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d1starboard) -"rFj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"rFm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"rFq" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/xenobiology/storage2) -"rFv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/ai_status_display{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"rFB" = ( -/obj/structure/bed/chair/comfy/brown, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"rFG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/ship_map, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"rFL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"rFM" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "td_fore_starboard_pump" - }, -/obj/floor_decal/industrial/warning/full, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"rFP" = ( -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/obj/machinery/mineral/stacking_machine{ - input_turf = 1; - output_turf = 2 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor, -/area/quartermaster/hangar) -"rFS" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/lava/orange{ - pixel_y = 13; - pixel_x = 9 - }, -/obj/machinery/space_heater/stationary/on{ - set_temperature = 348.15; - pixel_x = -30 - }, -/obj/structure/bed/sauna_bench/middle, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sauna) -"rFV" = ( -/obj/machinery/vending/cigarette{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar_stairs) -"rFX" = ( -/obj/machinery/door/firedoor, -/obj/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering{ - dir = 4; - name = "Second Deck Substation" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/substation/seconddeck) -"rGb" = ( -/obj/floor_decal/corner/black/bordercorner, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"rGn" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"rGu" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"rGI" = ( -/obj/machinery/door/airlock/multi_tile/research{ - frequency = 1379; - id_tag = "xenolow_airlock_outer"; - locked = 1; - name = "Xenobiology External Airlock" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/rnd/xenobiology/entry2) -"rGK" = ( -/obj/machinery/uniform_vendor{ - dir = 4; - icon_state = "robotics" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/computer/cryopod{ - pixel_x = -32 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"rGL" = ( -/obj/machinery/cryopod{ - dir = 2 - }, -/obj/machinery/computer/cryopod{ - pixel_x = -32 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod10/station) -"rGS" = ( -/obj/structure/table/rack, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/turf/simulated/floor/tiled/steel_ridged, -/area/tcommsat/storage) -"rGX" = ( -/obj/floor_decal/carpet/blue2{ - dir = 8 - }, -/obj/floor_decal/carpet/blue2{ - dir = 1 - }, -/obj/floor_decal/carpet/blue2{ - dir = 9 - }, -/turf/simulated/floor/carpet/blue3, -/area/crew_quarters/heads/office/cmo/cobed) -"rHt" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"rHA" = ( -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"rHE" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id_tag = "med_main_reg"; - name = "Infirmary Entry Shutters" - }, -/turf/simulated/floor/plating, -/area/medical/staging) -"rHM" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/seconddeck/foreport) -"rHO" = ( -/obj/structure/sign/warning/radioactive{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/catwalk, -/turf/simulated/open, -/area/space) -"rHY" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/rubble, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"rIc" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/rnd/entry) -"rIo" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"rIt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"rIu" = ( -/obj/structure/table/steel, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/pen/blue{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/folder/red, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/utility) -"rIw" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/full, -/obj/machinery/portable_atmospherics/powered/pump, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"rIx" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 15 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"rID" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"rIH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 10 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai_teleport) -"rIM" = ( -/obj/floor_decal/corner/lightgrey/mono, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/green/border{ - dir = 10 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"rIQ" = ( -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_9_hatch"; - name = "Escape Pod Nine Hatch" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod9/station) -"rIX" = ( -/obj/floor_decal/corner/purple/three_quarters{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8; - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/floor_decal/industrial/danger{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"rIZ" = ( -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"rJe" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/heads/office/rd/cobed) -"rJn" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 8 - }, -/obj/machinery/vending/coffee{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"rJu" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/sign/warning/nosmoking_1{ - desc = "A warning sign which reads 'NO SMOKING'. Someone has scratched a variety of crude words in gutter across the entire sign."; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"rJx" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/multi_tile/maintenance, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/forestarboard) -"rJC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"rJD" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"rJL" = ( -/obj/machinery/atmospherics/valve/shutoff, -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/engineering/atmos/storage) -"rJW" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"rJX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"rKi" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/greengrid, -/area/engineering/gravitaional_generator) -"rKp" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1441; - id = "n2_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos) -"rKu" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"rKv" = ( -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 5 - }, -/obj/machinery/door/window/westleft{ - name = "Patient Ward" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"rKy" = ( -/obj/item/storage/secure/safe{ - pixel_y = 28 - }, -/obj/floor_decal/corner/black/full, -/obj/structure/table/rack, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/iso_quarters) -"rKD" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Fuel Bay"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/fuelbay) -"rKH" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"rKP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/sortjunction{ - name = "Expedition Prep"; - sort_type = "Expedition Prep" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"rKU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal/empty, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/vacant/dormintories) -"rKZ" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"rLa" = ( -/obj/structure/filingcabinet/wallcabinet{ - pixel_y = 30 - }, -/obj/floor_decal/industrial/outline/orange, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"rLb" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"rLj" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/chapel/main) -"rLn" = ( -/obj/floor_decal/industrial/loading{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"rLs" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "fusion_observation" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/vacant/prototype/control) -"rLt" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"rLu" = ( -/obj/structure/table/woodentable, -/obj/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/pawn{ - pixel_y = -1; - pixel_x = 11 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -3; - pixel_y = 9 - }, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"rLy" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"rLB" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - target_pressure = 200 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"rLC" = ( -/obj/structure/table/woodentable_reinforced/ebony, -/obj/item/newspaper{ - pixel_y = 10; - pixel_x = -5 - }, -/obj/item/material/ashtray/plastic{ - pixel_y = -2; - pixel_x = 4 - }, -/obj/item/trash/cigbutt{ - pixel_y = 1; - pixel_x = -5 - }, -/obj/item/trash/cigbutt{ - pixel_y = 8; - pixel_x = 2 - }, -/obj/item/trash/cigbutt{ - pixel_y = -5; - pixel_x = 2 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/sleep/cryo/south) -"rLE" = ( -/obj/floor_decal/corner/purple/half{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"rLG" = ( -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"rLI" = ( -/obj/floor_decal/industrial/traffic, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"rLL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/b_green/bordercorner2{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc/charon{ - dir = 4; - name = "west bump"; - pixel_x = 24; - req_access = list(list("ACCESS_EXPLORER","ACCESS_ENGINEERING")) - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"rLP" = ( -/obj/floor_decal/corner/red/diagonal, -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/decal/cleanable/flour, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"rLR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/black/full, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/floor_decal/borderfloorblack, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"rLY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"rLZ" = ( -/obj/structure/inflatable/door, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"rMc" = ( -/obj/floor_decal/industrial/warning, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"rMh" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"rMj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"rMn" = ( -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"rMo" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/seconddeck/aftport) -"rMr" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"rMx" = ( -/obj/structure/ladder, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/firstdeck/aftport) -"rMB" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/woodentable/maple, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{ - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/teacup{ - pixel_x = 4 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"rMF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/solar/bridge_port) -"rMW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"rMY" = ( -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4; - locked = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/barricade, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"rMZ" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod2/station) -"rNb" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/stock_parts/circuitboard/autolathe, -/obj/item/stock_parts/circuitboard/unary_atmos/cooler, -/obj/item/stock_parts/circuitboard/unary_atmos/heater, -/obj/item/stock_parts/circuitboard/oxyregenerator, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech) -"rNl" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"rNm" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/engineering/locker_room) -"rNn" = ( -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"rNq" = ( -/obj/shuttle_landmark/sierra/deck3/guppy, -/turf/space, -/area/space) -"rNw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"rNx" = ( -/turf/unsimulated/mask, -/area/hallway/primary/bridgedeck/center) -"rNy" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/all/command{ - c_tag = "AI Core - Aft"; - dir = 4 - }, -/obj/machinery/flasher{ - dir = 4; - id_tag = "ai_core"; - pixel_x = -24 - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai) -"rNE" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/firstaid, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"rNG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Containment Pen"; - req_access = newlist() - }, -/obj/floor_decal/corner_steel_grid{ - dir = 5 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level2) -"rNH" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"rNK" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/blue/border, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/hop/cobed) -"rNN" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"rNR" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/mining, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition/eva) -"rNS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloorwhite, -/obj/floor_decal/corner/blue/border, -/obj/structure/closet/white_sierra, -/obj/item/clothing/suit/storage/toggle/labcoat, -/obj/item/clothing/suit/storage/toggle/labcoat, -/obj/item/storage/box/syringes, -/obj/item/storage/box/evidence, -/turf/simulated/floor/tiled/white, -/area/security/sierra/forensic/lab) -"rNU" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/mask/muzzle, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"rNX" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"rOc" = ( -/obj/machinery/status_display, -/turf/simulated/wall/prepainted, -/area/crew_quarters/commissary) -"rOi" = ( -/obj/decal/cleanable/dirt, -/obj/structure/cable/green, -/obj/machinery/power/apc/critical{ - name = "east bump"; - dir = 4; - pixel_x = 21 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/substation/seconddeck) -"rOv" = ( -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/machinery/shieldwallgen, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"rOx" = ( -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"rOG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 10 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"rOI" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/virusdish/random, -/obj/item/virusdish/random, -/obj/item/virusdish/random, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"rOW" = ( -/obj/structure/railing/mapped, -/obj/structure/bed/sofa/m/blue, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"rOZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/green/border{ - dir = 9 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = -30; - density = 0 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"rPc" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"rPm" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/solar/bridge_starboard) -"rPn" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"rPq" = ( -/obj/machinery/door/airlock/glass/atmos{ - name = "Atmospherics"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"rPt" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/heads/office/hos/cobed) -"rPu" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"rPv" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/bar) -"rPy" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/storage) -"rPD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"rPG" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/forensic) -"rPJ" = ( -/turf/simulated/open, -/area/hydroponics) -"rPN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4; - autoset_access = 0 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/xenobio) -"rPO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"rPQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/item/stool/padded/red, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"rPS" = ( -/obj/random/maintenance, -/obj/decal/cleanable/cobweb2, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"rQc" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"rQf" = ( -/obj/floor_decal/corner/black/mono, -/obj/machinery/computer/modular/preset/cardslot/command{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"rQg" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"rQm" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/fourthdeck/port) -"rQo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d3starboard) -"rQw" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"rQA" = ( -/obj/floor_decal/corner/grey/diagonal, -/obj/decal/cleanable/blood/oil, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/wardrobe/robotics_black, -/obj/item/clothing/under/rank/roboticist/skirt, -/obj/item/clothing/under/rank/roboticist/skirt, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/assembly/office) -"rQI" = ( -/obj/machinery/shield_diffuser, -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_6_berth_hatch"; - name = "Escape Pod Six" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"rQO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"rQV" = ( -/obj/decal/cleanable/dirt, -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/reagent_containers/syringe/drugs, -/obj/item/reagent_containers/syringe/drugs, -/obj/item/reagent_containers/syringe/drugs, -/obj/item/clothing/suit/straight_jacket, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"rRa" = ( -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/vacant/sauna) -"rRf" = ( -/obj/machinery/recharge_station, -/obj/floor_decal/corner/yellow/half{ - dir = 8 - }, -/obj/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/sign/directions/engineering{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/central_stairwell) -"rRl" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"rRm" = ( -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"rRq" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"rRw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/civilian{ - id_tag = "сhief_steward"; - name = "Chief Steward"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/command/chief_steward) -"rRF" = ( -/obj/structure/stairs/east, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/central_stairwell) -"rRI" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"rRK" = ( -/obj/machinery/cooker/oven, -/obj/floor_decal/corner/red/diagonal, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"rRL" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"rRP" = ( -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/button/blast_door{ - id_tag = "security_sergeant_blastdoor"; - name = "Warden's Blastdoor"; - req_access = list("ACCESS_WARDEN"); - pixel_y = 24; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"rRV" = ( -/obj/machinery/fusion_fuel_injector/mapped{ - dir = 1; - initial_id_tag = "aux_fusion_plant" - }, -/turf/simulated/floor/reinforced, -/area/vacant/prototype/engine) -"rRW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Port Auxiliary Storage"; - req_access = newlist() - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"rSg" = ( -/obj/wallframe_spawn/reinforced/polarized/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/actor/stage) -"rSj" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"rSl" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/storage) -"rSm" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d1starboard) -"rSn" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"rSp" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/door/window/southleft{ - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - id_tag = "xenobioa2"; - name = "Containment Blast Doors" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level2) -"rSx" = ( -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/corner, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"rSz" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"rSA" = ( -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"rSI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"rSO" = ( -/turf/simulated/wall/r_wall/hull, -/area/medical/mentalhealth) -"rSU" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/structure/iv_stand, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"rSW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/central_stairwell) -"rTa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"rTs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"rTz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Fourth Deck Substation"; - req_access = newlist(); - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/substation/fourthdeck) -"rTD" = ( -/obj/floor_decal/floordetail/edgedrain{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"rTE" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/door/airlock/external{ - autoset_access = 0; - frequency = 1331; - id_tag = "calypso_shuttle_outer"; - name = "Charon External Access"; - req_access = list(list("ACCESS_EXPEDITION_SHUTTLE")) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/airlock) -"rTO" = ( -/obj/floor_decal/corner/red/bordercorner, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"rUf" = ( -/obj/machinery/door/airlock/mining{ - dir = 4; - name = "Supply Office"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"rUl" = ( -/obj/structure/sign/science_1{ - dir = 1; - pixel_y = -32 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"rUn" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"rUp" = ( -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"rUv" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/medical{ - name = "Medical Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/office) -"rUB" = ( -/obj/structure/lattice, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d3starboard) -"rUE" = ( -/obj/machinery/atmospherics/unary/tank/oxygen{ - volume = 3200 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"rUI" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/green{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"rUK" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"rUW" = ( -/obj/item/frame/apc, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/item/stack/tile/walnut{ - pixel_y = 19 - }, -/turf/simulated/floor/plating, -/area/vacant/bar) -"rVa" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"rVe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"rVf" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/machinery/sparker{ - id_tag = "engines-1"; - pixel_x = -24 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d3starboard) -"rVB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/glass/security{ - name = "Brig Wing" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway/port) -"rVJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/grey/border, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"rVK" = ( -/obj/floor_decal/corner/red, -/obj/structure/table/steel, -/obj/item/reagent_containers/food/drinks/bottle/small/beer, -/obj/item/reagent_containers/food/drinks/bottle/small/beer{ - pixel_y = 3; - pixel_x = -6 - }, -/obj/item/reagent_containers/food/drinks/bottle/small/beer{ - pixel_y = 6; - pixel_x = 5 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"rVM" = ( -/obj/decal/cleanable/flour, -/turf/simulated/floor/plating, -/area/vacant/mess) -"rVO" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/glass/civilian{ - dir = 8; - name = "Engineer Bay Lobby" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/center) -"rVS" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos/cobed) -"rVT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"rVY" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/expedition) -"rWe" = ( -/obj/machinery/door/airlock/maintenance{ - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftport) -"rWg" = ( -/turf/simulated/open, -/area/maintenance/seconddeck/aftstarboard) -"rWi" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"rWn" = ( -/obj/machinery/power/port_gen/pacman/mrs{ - anchored = 1 - }, -/obj/structure/cable/yellow, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"rWp" = ( -/obj/floor_decal/corner/grey{ - dir = 9 - }, -/obj/structure/reagent_dispensers/water_cooler{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"rWt" = ( -/obj/structure/hygiene/drain/bath, -/turf/simulated/floor/pool, -/area/crew_quarters/sauna) -"rWw" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass/civilian{ - name = "Central Stairwell" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/central_stairwell) -"rWy" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/bed/padded, -/obj/item/bedsheet/green, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/bunk) -"rWz" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/seconddeck/port) -"rWD" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/firstdeck/foreport) -"rWJ" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"rWL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"rWN" = ( -/obj/wallframe_spawn/reinforced/polarized/no_grille/regular, -/obj/structure/curtain{ - color = "#990099"; - name = "church curtain" - }, -/turf/simulated/floor/plating, -/area/chapel/main) -"rWO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"rWR" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/bridgedeck/aft) -"rWV" = ( -/obj/machinery/power/generator{ - anchored = 1; - dir = 8 - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"rWX" = ( -/obj/floor_decal/spline/fancy/black/corner, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"rWZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"rXd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"rXf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar) -"rXh" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/scanner/gas, -/obj/item/device/scanner/gas, -/obj/item/device/scanner/plant, -/obj/item/device/scanner/health, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech) -"rXn" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"rXr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"rXt" = ( -/obj/floor_decal/corner/green/bordercee, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"rXu" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"rXw" = ( -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled/monotile, -/area/assembly/office) -"rXK" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"rXM" = ( -/obj/floor_decal/corner/brown/mono, -/obj/machinery/computer/modular/preset/dock{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"rXW" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"rYg" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"rYz" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"rYC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"rYJ" = ( -/obj/machinery/light, -/obj/machinery/computer/guestpass{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/flora/pottedplant/unusual, -/obj/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/rnd/research) -"rYT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/cafe/upper) -"rYW" = ( -/obj/structure/closet/crate/freezer, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/random/firstaid, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"rYX" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"rYZ" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"rZc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"rZd" = ( -/obj/structure/sign/warning/high_voltage{ - dir = 8 - }, -/turf/simulated/wall/prepainted, -/area/maintenance/solar/bridge_starboard) -"rZl" = ( -/obj/machinery/portable_atmospherics/canister/helium{ - start_pressure = 14999 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"rZr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"rZt" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/machinery/light, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"rZv" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"rZL" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/space) -"rZM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"rZQ" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"rZR" = ( -/obj/structure/table/woodentable, -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/folder/red{ - pixel_y = 7; - pixel_x = -4 - }, -/obj/item/folder/red{ - pixel_x = 4 - }, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"rZU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sauna) -"rZZ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/maintenance{ - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/starboard) -"sad" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/canister) -"sae" = ( -/obj/structure/closet/emcloset/anchored, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/yellow/bordercorner, -/obj/machinery/camera/network/fourth_deck{ - dir = 8; - c_tag = "Fourth Deck - Aft Stairwell" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"sah" = ( -/obj/random/obstruction, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"sak" = ( -/obj/random_multi/single_item/space_rabbit, -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"sar" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"sas" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/floor_decal/corner/purple, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/storage2) -"sat" = ( -/obj/structure/table/rack, -/obj/item/storage/firstaid/adv{ - pixel_y = 10 - }, -/obj/item/storage/firstaid/adv, -/obj/item/storage/firstaid/adv{ - pixel_y = -10 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/equipstorage) -"saA" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"saI" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/button/alternate/door{ - id_tag = "MedbayER"; - pixel_y = 27; - pixel_x = 8; - dir = 9; - name = "Critical Wing Second Exit" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"saJ" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/pizzabox/margherita, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"saO" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"saT" = ( -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/greengrid, -/area/engineering/gravitaional_generator) -"saX" = ( -/obj/structure/bed/sofa/m/brown, -/obj/floor_decal/carpet/red{ - dir = 1 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"sbe" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"sbo" = ( -/obj/structure/closet/emcloset/anchored, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/lime/border{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lime/bordercorner2, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"sbp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"sbq" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/corner/green/half, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"sbr" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/thirddeck/aftstarboard) -"sbs" = ( -/obj/floor_decal/industrial/traffic/corner{ - dir = 8; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/office) -"sbw" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"sbx" = ( -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/landmark{ - name = "JoinLateCryo" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/bridge) -"sbF" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/camera/network/hangar{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"sbG" = ( -/obj/machinery/computer/mining, -/obj/machinery/door/firedoor, -/obj/structure/table/standard, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar) -"sbJ" = ( -/obj/structure/bed/chair/rounded/yellow{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/yellow/bordercorner, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"sbL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"sbP" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"sbT" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/landmark{ - name = "JoinLateCyborg" - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"sbV" = ( -/obj/machinery/atmospherics/valve{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"sbX" = ( -/obj/structure/sign/warning/compressed_gas, -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d1port) -"sbY" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - sort_type = "Research Director"; - name = "Research Director" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"scf" = ( -/obj/floor_decal/industrial/traffic{ - dir = 6; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/structure/bed/chair/office/purple, -/turf/simulated/floor/tiled/white, -/area/rnd/office) -"scj" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"sck" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "xenobioaqua"; - name = "Containment Blast Doors" - }, -/obj/machinery/door/window/southright, -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Containment Pen"; - req_access = newlist() - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/water_cell) -"scs" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"scx" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 1 - }, -/obj/machinery/radio_beacon, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/seats_place) -"scz" = ( -/obj/structure/railing/mapped, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"scB" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"scE" = ( -/obj/machinery/stasis_cage, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"scO" = ( -/obj/floor_decal/techfloor, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/table/standard, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"scS" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"scU" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"scY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"sdb" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/artifact/no_anomalies, -/obj/machinery/anomaly_container, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell2) -"sdd" = ( -/obj/structure/table/steel, -/obj/item/storage/box/glasses/rocks, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"sdg" = ( -/obj/structure/table/woodentable_reinforced/mahogany/walnut, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"sdo" = ( -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "armory" - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/sierra/armory/lobby) -"sdr" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"sdt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"sdx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/grey/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/grey/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/grey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"sdy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_x = 29 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"sdz" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"sdE" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"sdG" = ( -/obj/machinery/space_heater/stationary/on{ - pixel_y = 30 - }, -/obj/structure/table/woodentable, -/obj/item/reagent_containers/glass/bucket/wood{ - pixel_y = 5 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 5 - }, -/obj/item/device/radio/intercom/department/security{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/breakroom) -"sdI" = ( -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/hallway) -"sdS" = ( -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"sef" = ( -/obj/structure/railing/mapped{ - dir = 4; - init_color = "#aa5f61"; - color = "#aa5f61" - }, -/turf/simulated/open, -/area/hallway/primary/firstdeck/central_stairwell) -"ses" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/armor/pcarrier/medium, -/obj/item/clothing/suit/armor/pcarrier/medium, -/obj/item/clothing/suit/armor/pcarrier/medium, -/obj/item/clothing/head/helmet, -/obj/item/clothing/head/helmet, -/obj/item/clothing/head/helmet, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/recharger/wallcharger{ - dir = 8; - pixel_x = 22 - }, -/obj/item/clothing/accessory/arm_guards, -/obj/item/clothing/accessory/arm_guards, -/obj/item/clothing/accessory/arm_guards, -/obj/item/clothing/accessory/leg_guards, -/obj/item/clothing/accessory/leg_guards, -/obj/item/clothing/accessory/leg_guards, -/obj/item/clothing/accessory/armband, -/obj/item/clothing/accessory/armband, -/obj/item/clothing/accessory/armband, -/obj/item/clothing/head/helmet/psipump/active{ - pixel_y = 9; - pixel_x = -8 - }, -/obj/item/clothing/head/helmet/psipump/active{ - pixel_x = 5; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"seu" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"sew" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/machinery/camera/network/hangar, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"sez" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"seA" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"seC" = ( -/obj/structure/closet/l3closet/virology, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology) -"seF" = ( -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"seK" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"seP" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/canister) -"seZ" = ( -/obj/floor_decal/industrial/warning, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"sfh" = ( -/obj/machinery/space_heater, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/xenobio) -"sfr" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/landmark{ - name = "JoinLateCyborg" - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"sfu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"sfH" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/staging) -"sfM" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/structure/table/steel_reinforced, -/obj/machinery/cell_charger, -/obj/item/cell/high, -/obj/item/cell/high, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"sfO" = ( -/obj/machinery/door/window/northright{ - name = "Armory Desk"; - req_access = newlist() - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "armory_shutters"; - name = "Armory Desk" - }, -/obj/paint_stripe/red, -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf/steel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/sierra/armory) -"sfU" = ( -/obj/machinery/flasher{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai) -"sfW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/storage/firstaid/surgery, -/turf/simulated/floor/plating, -/area/vacant/infirmary) -"sfZ" = ( -/obj/machinery/suit_storage_unit/security/alt, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/suits) -"sgf" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"sgn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall/hull, -/area/chapel/mortuary) -"sgo" = ( -/obj/structure/catwalk, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"sgt" = ( -/obj/machinery/suit_storage_unit/explorer, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/eva) -"sgv" = ( -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Security"; - departmentType = 5; - pixel_y = -32 - }, -/obj/item/device/taperecorder, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 8; - pixel_x = 14 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"sgw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"sgz" = ( -/obj/floor_decal/techfloor/orange, -/obj/machinery/conveyor{ - dir = 4; - id = "compactor" - }, -/obj/machinery/pile_ripper{ - active_power_usage = 300 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/compactor) -"sgD" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"sgF" = ( -/obj/structure/closet/walllocker{ - pixel_y = -28 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/bio_suit/anomaly, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/bio_hood/anomaly, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"sgG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"sgL" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/starboard) -"sgN" = ( -/obj/floor_decal/corner/lightgrey/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/cola{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/docking) -"sgV" = ( -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/carpet, -/area/vacant/dormintories) -"sgZ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/gym) -"sha" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/camera/network/command{ - c_tag = "Command - Head of Security"; - dir = 8 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"shf" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"shn" = ( -/obj/floor_decal/techfloor/orange, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/gravity_generator/main/station, -/turf/simulated/floor/greengrid, -/area/engineering/gravitaional_generator) -"sht" = ( -/obj/structure/flora/pottedplant/thinbush, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lightgrey/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lightgrey/bordercorner2, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"shv" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/medical/mortus{ - dir = 4; - name = "Chapel Morgue" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"shy" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/space, -/area/space) -"shE" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"shF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"shG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"shL" = ( -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"shP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/center) -"shR" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/space) -"shU" = ( -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/carpet, -/area/crucian_hangar/start) -"shV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"shX" = ( -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = -1 - }, -/obj/structure/sign/directions/supply{ - pixel_y = -8; - pixel_x = -32 - }, -/turf/simulated/open, -/area/hallway/primary/seconddeck/aft_stairwell) -"shZ" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - name = "Xenobotany Lab Access"; - id_tag = "xenobotany_access_inner" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/xenobiology/xenoflora) -"sij" = ( -/obj/machinery/computer/ship/engines{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"siw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/bluespace/chamber) -"siy" = ( -/obj/machinery/door/airlock/research{ - name = "Analysis Lab" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/scan) -"siB" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"siD" = ( -/obj/structure/railing/mapped, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/shieldgen, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"siF" = ( -/obj/machinery/button/toggle/valve/nacelle/third{ - pixel_x = -6; - pixel_y = 25; - id_tag = "RE2F"; - name = "Fourth Deck Port Nacelle Fuel Control" - }, -/obj/machinery/button/toggle/valve/nacelle/first{ - pixel_x = -6; - pixel_y = 34; - id_tag = "RE4F"; - name = "First Deck Port Nacelle Fuel Control" - }, -/obj/machinery/button/toggle/valve/nacelle/fourth{ - pixel_x = 6; - pixel_y = 25; - id_tag = "RE1F"; - name = "Fourth Deck Starboard Nacelle Fuel Control" - }, -/obj/machinery/button/toggle/valve/nacelle/second{ - pixel_x = 6; - pixel_y = 34; - id_tag = "RE3F"; - name = "First Deck Starboard Nacelle Fuel Control" - }, -/obj/structure/bed/chair/padded/yellow{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/fuelbay) -"siT" = ( -/obj/machinery/space_heater, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"siU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/green/bordercorner, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"siV" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"sjc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/b_green/bordercorner, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"sjf" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/computer/atmoscontrol/laptop{ - monitored_alarm_ids = list("petrov1","petrov2","petrov3"); - req_access = list("ACCESS_PETROV_HELM") - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"sju" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/civilian{ - name = "Restroom" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/head/deck3) -"sjy" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/reinforced, -/area/turret_protected/ai_maint) -"sjA" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod5/station) -"sjM" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/plating, -/area/engineering/fuelbay) -"sjN" = ( -/obj/random/junk, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"sjQ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/starboard) -"sjU" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d1port) -"sjZ" = ( -/obj/structure/sign/kiddieplaque{ - pixel_x = 32 - }, -/obj/machinery/tele_projector{ - dir = 6 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_teleport) -"skb" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/scan) -"ske" = ( -/obj/machinery/navbeacon/sierra/SD_fore1, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -24; - dir = 1 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/lime/bordercorner, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"skh" = ( -/obj/structure/table/glass, -/obj/item/modular_computer/laptop/preset/records{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology - Entrance"; - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/green/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"skl" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"skm" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/infirmreception) -"skp" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"skv" = ( -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Power Storage"; - req_access = newlist(); - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/auxpower) -"sky" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"skA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/bed/sauna_bench/middle/north, -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sauna) -"skE" = ( -/obj/floor_decal/corner/yellow/half, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/suplocker_room) -"skJ" = ( -/obj/machinery/smartfridge/drying_rack{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/green/border{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics/third_deck_storage) -"skO" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/airlock_brace{ - req_access = list("ACCESS_AI_UPLOAD") - }, -/obj/machinery/door/blast/regular{ - id_tag = "ai_upload_blast"; - name = "AI Upload" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"skP" = ( -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 4; - target_pressure = 15000 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"skT" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"skW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/center) -"slf" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/floor_decal/corner/red, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"sll" = ( -/obj/structure/hygiene/toilet{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled/freezer, -/area/vacant/cargo) -"slm" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/locker) -"sln" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/ce) -"slo" = ( -/obj/machinery/portable_atmospherics/canister/empty/oxygen, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"slu" = ( -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"slD" = ( -/obj/floor_decal/corner/black/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/command/bsa) -"slE" = ( -/obj/floor_decal/industrial/warning/fulltile, -/obj/floor_decal/industrial/danger{ - dir = 5 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar) -"slF" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/titanium, -/area/shuttle/petrov/cell1) -"slH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"slL" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/xenobio) -"slS" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d3port) -"slW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/northleft{ - name = "Security Checkpoint" - }, -/obj/machinery/door/window/southleft{ - autoset_access = 0; - name = "Security Checkpoint" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "hangar_checkpoint_shutters"; - name = "Hangar Deck Checkpoint Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf/steel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/sierra/dockcheck) -"smh" = ( -/obj/fluid_mapped, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"smr" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"smt" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/starboard) -"smx" = ( -/obj/floor_decal/industrial/hatch/red, -/obj/machinery/button/crematorium{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"smH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"smL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/sortjunction/flipped{ - sort_type = "Drone Station"; - name = "Drone Station" - }, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"smZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/aft_stairwell) -"sna" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/seconddeck) -"snt" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/sleep/cryo/bridge) -"snB" = ( -/obj/structure/table/standard, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"snH" = ( -/obj/structure/bed/sofa/r/beige{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"snI" = ( -/obj/structure/coatrack{ - pixel_x = -6; - pixel_y = 22 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/wood/corner, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"snP" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/prepainted, -/area/hallway/primary/firstdeck/fore) -"snS" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/foreport) -"sob" = ( -/obj/machinery/vending/games, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"sof" = ( -/obj/floor_decal/carpet/orange, -/obj/floor_decal/carpet/orange{ - dir = 4 - }, -/obj/floor_decal/carpet/orange{ - dir = 6 - }, -/obj/structure/reagent_dispensers/beerkeg, -/obj/item/reagent_containers/food/drinks/glass2/mug, -/turf/simulated/floor/carpet/orange, -/area/crew_quarters/heads/office/ce/cobed) -"sor" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/assembly/robotics) -"sou" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/structure/bed/chair/rounded/blue{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"soD" = ( -/obj/floor_decal/corner/darkblue/full, -/obj/floor_decal/corner/darkblue/full, -/obj/floor_decal/corner/black/bordercorner{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/floor_decal/corner/red/bordercorner2, -/obj/floor_decal/corner/red, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"soE" = ( -/obj/machinery/atmospherics/unary/engine{ - dir = 8 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3starboard) -"soJ" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"soM" = ( -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"soN" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 4; - id_tag = "fd_starboard_pump" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"soQ" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"soR" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"soS" = ( -/obj/structure/catwalk, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/open, -/area/space) -"soV" = ( -/obj/floor_decal/techfloor, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"soX" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/solar{ - id = "auxsolarstrbbridge"; - name = "Bridge Auxiliary Solar Array" - }, -/obj/floor_decal/solarpanel, -/turf/simulated/floor/reinforced, -/area/solar/bridge_port) -"soZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_sergeant_blastdoor"; - name = "Warden's Blastdoor" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/security{ - name = "Security Maintenance" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/sergeant) -"spe" = ( -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"spg" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/obj/engine_setup/coolant_canister, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"spi" = ( -/obj/structure/table/woodentable, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/paper_bin, -/obj/item/pen{ - pixel_x = -1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"spk" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "centcom_shuttle_dock_sensor"; - pixel_x = -24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 1; - id_tag = "centcom_shuttle_dock_pump" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"spm" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"sps" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"spC" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals_central6, -/obj/machinery/navbeacon/sierra/SD_afthallway1, -/mob/living/bot/cleanbot{ - name = "Balto"; - will_patrol = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"spO" = ( -/obj/structure/bed/chair/padded/green{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black, -/obj/machinery/media/music_writer{ - pixel_y = -27 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"spV" = ( -/obj/floor_decal/industrial/loading, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "hop_road_shutters"; - name = "HoP Line's Shutters"; - opacity = 0 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/hop) -"spW" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics/third_deck_storage) -"sqb" = ( -/obj/floor_decal/corner/paleblue/full, -/obj/structure/closet/cabinet, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/cmo/cobed) -"sqc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"sqg" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/crew_quarters/visitors) -"sqj" = ( -/obj/machinery/door/airlock/external/bolted{ - frequency = 1380; - id_tag = "escape_pod_1_hatch"; - name = "Escape Pod One Hatch" - }, -/obj/machinery/shield_diffuser, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod1/station) -"sqm" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"sqq" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"sqv" = ( -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"sqy" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "firing_range_outer"; - name = "Firing Range Airlock" - }, -/obj/machinery/access_button/airlock_exterior{ - desc = "Security access required."; - dir = 1; - master_tag = "firing_range"; - name = "exterior access button"; - pixel_x = -24; - pixel_y = 10; - req_access = list("ACCESS_EXTERNAL","ACCESS_SECURITY") - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"sqA" = ( -/obj/floor_decal/industrial/warning, -/obj/structure/table/woodentable/ebony, -/obj/item/stack/medical/splint{ - pixel_y = 12; - pixel_x = -4 - }, -/obj/item/stack/medical/bruise_pack{ - pixel_y = -7; - pixel_x = -4 - }, -/obj/item/folder/white{ - pixel_x = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"sqD" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/plating, -/area/vacant/infirmary) -"sqF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"sqQ" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/stack/package_wrap/cargo_wrap, -/obj/item/hand_labeler, -/obj/item/device/destTagger, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/floor_decal/corner/yellow/mono, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"sqV" = ( -/turf/simulated/wall/prepainted, -/area/vacant/bar) -"sra" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/actor) -"srf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"srn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"srp" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"srr" = ( -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"sru" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"srx" = ( -/obj/machinery/seed_storage/garden{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/green/border{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"srL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/sleeper{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod2/station) -"srV" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"srX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"srY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/civilian{ - name = "Private Room"; - id_tag = "bar_private_room_1"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/cafe) -"ssk" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/carpet/green, -/obj/floor_decal/carpet/green{ - dir = 4 - }, -/obj/floor_decal/carpet/green{ - dir = 6 - }, -/turf/simulated/floor/carpet/green, -/area/medical/mentalhealth/therapyroom) -"ssm" = ( -/obj/structure/table/standard, -/obj/item/hand_labeler, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/locker) -"ssq" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"sst" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/blue/border, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"ssv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"ssx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"ssI" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"ssJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"ssS" = ( -/obj/structure/table/woodentable/mahogany, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"ssT" = ( -/obj/machinery/navbeacon/sierra/FD_aftcentralhallway1, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Aft Hallway Chemistry"; - dir = 1 - }, -/mob/living/bot/cleanbot{ - name = "Monro"; - will_patrol = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"sta" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"std" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"stn" = ( -/obj/machinery/sparker{ - id_tag = "Isocell1"; - pixel_x = -18 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell1) -"sto" = ( -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/green/border{ - dir = 9 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Central Hallway - Starboard - Virology"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"stp" = ( -/obj/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"sts" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"stv" = ( -/obj/item/target/syndicate, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"stw" = ( -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/garden_room) -"stz" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/bunk) -"stB" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/no_grille, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/storage/eva) -"stC" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"stI" = ( -/obj/floor_decal/corner/purple/bordercorner, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/floor_decal/industrial/traffic{ - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/office) -"stL" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/safe_room/firstdeck) -"stN" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"stR" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"sup" = ( -/obj/floor_decal/industrial/warning, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"sur" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft_stairwell) -"sut" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/security{ - dir = 4; - name = "Guards' Bathroom" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/breakroom) -"suy" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/aft) -"suB" = ( -/obj/floor_decal/borderfloor{ - color = null; - dir = 8 - }, -/obj/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/machinery/sleeper/survival_pod{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"suH" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/woodentable_reinforced/mahogany, -/obj/item/device/flashlight/lamp/lava/cyan{ - pixel_y = -5; - pixel_x = 4 - }, -/turf/simulated/floor/carpet/magenta, -/area/crew_quarters/cafe) -"suJ" = ( -/obj/floor_decal/corner/black/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/black/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"suL" = ( -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/abandoned_hydroponics) -"suO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/port) -"suP" = ( -/obj/structure/table/woodentable/maple, -/obj/item/device/flashlight/lantern, -/obj/machinery/light, -/obj/floor_decal/carpet/purple, -/obj/floor_decal/carpet/purple{ - dir = 4 - }, -/obj/floor_decal/carpet/purple{ - dir = 6 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/office) -"suY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/hatch/grey, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/sierra/interrogation) -"suZ" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"sva" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"svc" = ( -/obj/machinery/shieldwallgen, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"sve" = ( -/obj/structure/table/woodentable/maple, -/obj/item/material/ashtray/glass, -/obj/item/storage/fancy/smokable/luckystars{ - pixel_y = 5; - pixel_x = -2 - }, -/obj/item/storage/fancy/matches/matchbox, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"svl" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"svv" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"svy" = ( -/obj/shuttle_landmark/sierra/deck1/crucian, -/turf/space, -/area/space) -"svE" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"svN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"svX" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"swe" = ( -/obj/structure/dispenser/oxygen, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/eva) -"swf" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/table/marble, -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"swn" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Forensic Office"; - sort_type = "Forensic Office" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"swy" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"swA" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/corner/paleblue/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/virology{ - name = "Patient Ward One" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/taperoll/engineering/applied, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology/lab) -"swB" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/port) -"swD" = ( -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"swH" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Outer Ring Access" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/turret_protected/ai_maint) -"swN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"swV" = ( -/obj/machinery/door/blast/shutters/open{ - name = "Supply Desk Shutters"; - id_tag = "sup_office"; - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/quartermaster/office) -"sxb" = ( -/obj/machinery/hologram/holopad/longrange, -/obj/floor_decal/corner/darkblue/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"sxf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/power/apc/charon{ - dir = 8; - name = "west bump"; - pixel_x = -25; - req_access = list(list("ACCESS_EXPLORER","ACCESS_ENGINEERING")) - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_r) -"sxg" = ( -/obj/structure/bed/sofa/l/beige, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Bar - Main Hall"; - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/cafe) -"sxq" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"sxv" = ( -/obj/floor_decal/corner/black{ - dir = 6 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"sxz" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/floor_decal/corner/purple{ - pixel_y = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"sxB" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/airlock) -"sxF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/rnd/entry) -"sxH" = ( -/obj/machinery/camera/network/engine{ - c_tag = "Engine - R-UST - Control"; - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"sxI" = ( -/obj/structure/table/standard, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for the prototype exhaust."; - id_tag = "prototype_exhaust"; - name = "Chamber Exhaust"; - pixel_x = -5; - pixel_y = 8 - }, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for the observation shutters."; - id_tag = "fusion_observation"; - name = "Chamber Observation"; - pixel_x = 5; - pixel_y = 8 - }, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for the engine containment doors."; - id_tag = "prototype_chamber_blast"; - name = "Chamber Containment"; - pixel_y = -3 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"sxJ" = ( -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d3port) -"sxK" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"sxM" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/cobed) -"sxS" = ( -/obj/structure/closet/l3closet/scientist, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"sxT" = ( -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell2) -"sxU" = ( -/obj/structure/bed/padded, -/obj/floor_decal/corner/grey/full, -/obj/item/bedsheet/blue, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"sxV" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/flora/ausbushes/sunnybush, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/docking) -"sxZ" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"syd" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry2) -"syi" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft_stairwell) -"syj" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/civilian{ - name = "Janitor Closet" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/janitor) -"syq" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/command/bsa) -"syr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"syu" = ( -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/office) -"syv" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/decal/cleanable/dirt, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"syx" = ( -/obj/machinery/vitals_monitor, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery/second) -"syB" = ( -/obj/structure/flora/pottedplant/flower, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"syI" = ( -/obj/machinery/beehive, -/obj/floor_decal/corner/green/half{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"syJ" = ( -/obj/structure/sign/warning/secure_area, -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/hallway) -"syK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"syO" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/suit_cooling_unit/miniature, -/obj/item/device/suit_cooling_unit/miniature, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"syP" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/space, -/area/space) -"syQ" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/item/stack/material/rods/fifty, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"syU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"sze" = ( -/obj/machinery/air_sensor{ - id_tag = "co2_sensor" - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/atmos) -"szf" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Fore Hallway"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"szj" = ( -/obj/structure/table/standard, -/obj/item/storage/box/botanydisk, -/obj/floor_decal/corner/green/half{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"szk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_cyborg_upload) -"szp" = ( -/obj/machinery/vending/coffee, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/office) -"szq" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/largecrate, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"szs" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"szv" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/civilian{ - name = "Cryo Storage" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/sleep/cryo) -"szw" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/eva) -"szH" = ( -/obj/floor_decal/borderfloorblack, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/bunk) -"szJ" = ( -/obj/structure/bed/chair/comfy/purple{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"szK" = ( -/obj/structure/sign/warning/airlock{ - dir = 1; - pixel_y = -32 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lightgrey/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"szN" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/structure/sign/warning/fire{ - dir = 1; - pixel_y = -40 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "incinerator_access_control"; - name = "Incinerator airlock control"; - pixel_x = 24; - pixel_y = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/incinerator) -"szP" = ( -/obj/floor_decal/corner/yellow/three_quarters, -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Supply Office - Supply locker room"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/suplocker_room) -"szW" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/random/hostile/xenobio, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level2) -"szX" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"szZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/tank{ - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "CO22p_out"; - initialize_directions = 1; - internal_pressure_bound = 1000; - internal_pressure_bound_default = 1000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/window/boron_reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d3port) -"sAc" = ( -/obj/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/random/storage, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"sAf" = ( -/obj/structure/bed/sofa/r/black{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"sAs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/substation/bridgedeck) -"sAu" = ( -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d3port) -"sAy" = ( -/obj/machinery/smartfridge{ - opacity = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/floor_decal/corner/green/three_quarters{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"sAA" = ( -/obj/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"sAG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/aftport) -"sAK" = ( -/obj/fluid_mapped, -/obj/item/clothing/mask/snorkel, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"sAM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation/second) -"sAP" = ( -/obj/structure/flora/pottedplant/minitree, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"sAS" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"sAX" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/vacant/cargo) -"sBe" = ( -/obj/structure/catwalk, -/obj/structure/sign/warning/fall{ - pixel_y = 32 - }, -/turf/simulated/open, -/area/rnd/xenobiology/level1) -"sBz" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/green/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/disease2/diseaseanalyser, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology/lab) -"sBA" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"sBG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"sBO" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"sBQ" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"sBR" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"sBY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/civilian{ - name = "Actor's Room" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/actor) -"sBZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft) -"sCf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"sCh" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"sCl" = ( -/turf/simulated/floor/reinforced/oxygen, -/area/engineering/atmos) -"sCm" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"sCv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "d3portnacelle" - }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"sCx" = ( -/obj/machinery/camera/ai/core{ - dir = 8; - c_tag = "AI Core - Fore Port Access" - }, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"sCB" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"sCP" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/medical, -/obj/structure/closet/medical_wall{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/white, -/area/vacant/infirmary) -"sCT" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/glass/civilian{ - name = "Library" - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/lounge) -"sCV" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"sDd" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/firstdeck/centralport) -"sDf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"sDj" = ( -/obj/structure/bed/chair/wood/maple{ - dir = 4 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/office) -"sDk" = ( -/obj/machinery/door/window/brigdoor/westright{ - dir = 2; - id_tag = "prison_lobby_window" - }, -/obj/machinery/door/window/brigdoor/westleft{ - dir = 1; - autoset_access = 0 - }, -/obj/paint_stripe/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/blast/shutters/open{ - name = "Prison Lobby Windows Shutters"; - id_tag = "prison_lobby_window" - }, -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf/steel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/security/sierra/brig) -"sDn" = ( -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/corner/purple/bordercorner, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"sDo" = ( -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/landmark/start{ - name = "Research Director" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"sDs" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"sDx" = ( -/obj/structure/railing/mapped{ - dir = 4; - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - dir = 1; - color = "#8c911d" - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"sDz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"sDE" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cargo_r) -"sDG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"sDH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/mining{ - name = "Cargo Prep" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/suplocker_room) -"sDI" = ( -/obj/machinery/atmospherics/unary/vent_pump/tank{ - dir = 8; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "n2_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/nitrogen, -/area/engineering/atmos) -"sDJ" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"sDM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"sDP" = ( -/obj/structure/table/woodentable/mahogany, -/obj/item/flora/pottedplantsmall/leaf{ - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"sDT" = ( -/obj/structure/table/standard, -/obj/floor_decal/corner/blue/diagonal, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/paper/sierra/medical_blood, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/glass{ - pixel_y = 7; - pixel_x = 8 - }, -/obj/machinery/keycard_auth/sierra{ - pixel_x = 5 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"sEd" = ( -/obj/structure/cable/yellow, -/obj/machinery/power/solar{ - id = "auxsolarstrbbridge"; - name = "Bridge Auxiliary Solar Array" - }, -/obj/floor_decal/solarpanel, -/turf/simulated/floor/reinforced, -/area/solar/bridge_starboard) -"sEe" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/camera/network/fourth_deck{ - c_tag = "Escape Pods - Starboard - Dock"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"sEf" = ( -/obj/structure/hygiene/toilet{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head/deck3) -"sEj" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"sEl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/fuelbay) -"sEn" = ( -/turf/simulated/wall/prepainted, -/area/medical/mentalhealth/therapyroom) -"sEr" = ( -/obj/floor_decal/corner/purple/half{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"sEs" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway/aft) -"sEt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "First Deck Substation"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/substation/firstdeck) -"sEy" = ( -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"sED" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"sEG" = ( -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cargo_l) -"sEP" = ( -/obj/item/material/knife/kitchen/cleaver, -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/foreport) -"sEU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"sFb" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"sFc" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"sFe" = ( -/obj/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external/glass/bolted/cycling{ - id_tag = "firing_range_inner"; - name = "Firing Range Airlock" - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "firing_range"; - name = "interior access button"; - pixel_x = -24; - pixel_y = -10; - req_access = list(list("ACCESS_SECURITY","ACCESS_EXTERNAL")) - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"sFf" = ( -/obj/floor_decal/corner/red/diagonal, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/structure/table/marble, -/obj/item/book/manual/chef_recipes, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"sFg" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell3) -"sFm" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"sFs" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"sFu" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"sFz" = ( -/obj/floor_decal/industrial/danger{ - dir = 5 - }, -/obj/structure/closet/walllocker{ - pixel_x = 28 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/item/storage/backpack/dufflebag, -/obj/item/storage/backpack/dufflebag, -/obj/item/storage/backpack/dufflebag, -/obj/item/storage/backpack/dufflebag, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/armory) -"sFR" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"sFS" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"sFU" = ( -/obj/floor_decal/corner/lime/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"sFX" = ( -/obj/structure/largecrate, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"sGb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"sGe" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/artbru, -/obj/item/reagent_containers/food/drinks/cans/artbru, -/obj/item/reagent_containers/food/drinks/cans/speer, -/obj/item/reagent_containers/food/drinks/cans/speer, -/obj/item/reagent_containers/food/drinks/cans/speer, -/obj/item/storage/box/glasses/square, -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/obj/floor_decal/carpet/blue2{ - dir = 8 - }, -/obj/floor_decal/carpet/blue2{ - dir = 1 - }, -/obj/floor_decal/carpet/blue2{ - dir = 9 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/garden_room) -"sGg" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/wood, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"sGv" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/central_stairwell) -"sGB" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/blast_door{ - id_tag = "xenobio4"; - name = "Containment Blast Doors"; - pixel_x = -4; - req_access = list("ACCESS_RESEARCH") - }, -/obj/machinery/button/blast_door{ - id_tag = "xenobio4_vent"; - name = "Cell 4 Vent"; - pixel_x = 8; - req_access = list("ACCESS_RESEARCH") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"sGC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/woodentable_reinforced/mahogany, -/obj/item/material/ashtray/bronze{ - pixel_y = -6; - pixel_x = 6 - }, -/turf/simulated/floor/carpet/green, -/area/crew_quarters/cafe) -"sGF" = ( -/obj/floor_decal/industrial/warning/corner, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"sGG" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/airlock) -"sGM" = ( -/obj/random/trash, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"sGP" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"sGW" = ( -/obj/structure/table/standard, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/item/towel/random, -/obj/item/towel/random, -/obj/item/towel/random, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/storage/box/detergent, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/prison) -"sGZ" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/development) -"sHd" = ( -/obj/machinery/status_display/supply_display, -/turf/simulated/wall/prepainted, -/area/hallway/primary/fourthdeck/aft_stairwell) -"sHi" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/landmark{ - name = "lightsout" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/aft) -"sHm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/forestarboard) -"sHp" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"sHs" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/aft_stairwell) -"sHv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"sHw" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 2; - name = "Petrov Security Desk" - }, -/obj/machinery/door/window/brigdoor/westright{ - dir = 1; - name = "Petrov Security Desk" - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "concheckwindow2"; - name = "Research Checkpoint Shutters"; - opacity = 0 - }, -/obj/paint/nt_white, -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf/steel{ - dir = 4 - }, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/plating, -/area/shuttle/petrov/security) -"sHD" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"sHE" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/command{ - name = "Bridge Access" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/nano) -"sHG" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"sHU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"sIf" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"sIg" = ( -/obj/structure/closet{ - name = "Prisoner's Locker" - }, -/obj/item/clothing/head/soft/orange, -/obj/item/clothing/head/soft/orange, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/prison) -"sIh" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level2) -"sIi" = ( -/obj/floor_decal/corner/green/half{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"sIl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"sIm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/structure/bed/chair/armchair/black{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa/high_sec) -"sIo" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/alarm/monitor/isolation/xenobio{ - alarm_id = "xenobio3_alarm"; - dir = 8; - name = "Xenobiology Third Xenopen"; - pixel_x = 23 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"sIq" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/computer/diseasesplicer{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"sIr" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"sIs" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"sIt" = ( -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge/storage) -"sIv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Division Maintenance"; - req_access = list("ACCESS_RESEARCH"); - autoset_access = 0 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/misc_lab) -"sIA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue) -"sIB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"sID" = ( -/obj/structure/bed/sofa/m/teal{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"sIK" = ( -/obj/machinery/camera/ai/core{ - c_tag = "AI Core - Entry"; - dir = 1 - }, -/obj/machinery/turretid/stun{ - check_synth = 1; - name = "AI Entry Chamber turret control"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/turret_protected/ai_teleport) -"sIL" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"sIN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/random/snack, -/turf/simulated/floor/wood/walnut, -/area/vacant/gambling) -"sIR" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"sIS" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Fore Hallway"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"sIU" = ( -/obj/structure/bed/chair/padded/black{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"sIV" = ( -/obj/decal/cleanable/blood/oil, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"sIW" = ( -/obj/structure/bed/chair/comfy/purple{ - dir = 4 - }, -/obj/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/rnd/office) -"sJb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border, -/obj/floor_decal/corner/grey/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/grey/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"sJv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"sJC" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"sJE" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - id_tag = "xenobio1"; - name = "Containment Blast Doors" - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level1) -"sJJ" = ( -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/industrial/danger/corner, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"sJQ" = ( -/obj/machinery/door/window/brigdoor/northleft{ - name = "thruster vent access"; - req_access = newlist() - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/door/blast/regular{ - id_tag = "ThrusterVents"; - name = "Thruster Blast Door" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"sJY" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/security) -"sKa" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"sKf" = ( -/obj/structure/table/standard, -/obj/item/device/camera, -/obj/item/hand_labeler{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/pen{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"sKi" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"sKn" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"sKr" = ( -/obj/structure/catwalk, -/turf/space, -/area/space) -"sKu" = ( -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 4 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"sKx" = ( -/turf/simulated/wall/ocp_wall, -/area/engineering/engine_room) -"sKy" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/guppy_hangar/start) -"sKC" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/corner/green/three_quarters{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"sKD" = ( -/obj/structure/table/rack, -/obj/item/device/radio{ - pixel_y = 9; - pixel_x = 6 - }, -/obj/item/device/radio{ - pixel_y = 2; - pixel_x = 1 - }, -/obj/item/crowbar/prybar, -/obj/item/crowbar/prybar, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/rnd/locker) -"sKE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"sKH" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "sierra_surgery2"; - name = "Operating Room 2"; - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/holosign/surgery{ - dir = 4; - id_tag = "sierra_surgery2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery/second) -"sKJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"sKM" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"sKN" = ( -/obj/structure/bed/chair/shuttle/blue{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/grey/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"sKQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"sKT" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"sKW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/light/small, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/substation/seconddeck) -"sKX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo/south) -"sLe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/structure/cable/yellow, -/obj/machinery/power/port_gen/pacman{ - sheets = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"sLg" = ( -/turf/simulated/wall/prepainted, -/area/vacant/dormintories) -"sLh" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/exploration) -"sLl" = ( -/obj/floor_decal/corner/lime/border{ - dir = 6 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 1 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"sLq" = ( -/obj/structure/table/standard, -/obj/random/snack, -/obj/random/snack, -/obj/random/smokes, -/obj/random/clipboard, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/floor_decal/corner/beige/diagonal, -/obj/floor_decal/corner/brown/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/vacant/dormintories) -"sLu" = ( -/obj/structure/closet/emcloset, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"sLE" = ( -/obj/structure/table/standard, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/pizzabox/vegetable{ - pixel_y = 12 - }, -/obj/structure/sign/warning/smoking{ - dir = 8; - pixel_x = 33 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/office) -"sLI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/bridgedeck/port) -"sLL" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tcommsat/storage) -"sLM" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"sLT" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "ai_starboard_inner"; - name = "Engineering External Access" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftport) -"sLV" = ( -/obj/structure/bed/chair/office/comfy/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/heads/captain/secret_room) -"sMd" = ( -/obj/machinery/door/airlock/civilian{ - dir = 4; - name = "Recreation Compartment" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/garden_room) -"sMe" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall/hull, -/area/command/bsa) -"sMf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/navbeacon/sierra/FD_forehallway_starboard, -/turf/simulated/floor/tiled, -/area/security/brig) -"sMj" = ( -/obj/floor_decal/corner/black/full, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos/cobed) -"sMp" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump{ - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "o23p_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d1starboard) -"sMw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"sMx" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "eng3"; - name = "First Deck Starboard Access"; - pixel_y = 21 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/thruster/d1starboard) -"sMy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"sMH" = ( -/obj/floor_decal/corner/purple/border, -/obj/item/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/exploration) -"sMQ" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/sleep/cryo/thirddeck) -"sMR" = ( -/obj/structure/table/rack, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"sMW" = ( -/obj/structure/table/glass, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/floor_decal/spline/fancy/black, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/NT, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"sMY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 4 - }, -/obj/structure/sign/warning/pods/south{ - dir = 8; - pixel_x = 32 - }, -/obj/floor_decal/borderfloorblack/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/danger/corner, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"sNa" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"sNg" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"sNi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/foreport) -"sNt" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/atmos) -"sNB" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/random_multi/single_item/boombox, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"sNE" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"sNM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"sNN" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"sNP" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"sNS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"sNT" = ( -/obj/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/vending/generic, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"sNV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"sNW" = ( -/obj/item/storage/toolbox/mechanical, -/obj/structure/table/steel, -/obj/item/device/radio/announcer/subspace, -/obj/machinery/power/apc/hyper{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"sNZ" = ( -/obj/paint_stripe/nt_red, -/obj/paint/nt_white, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod1/station) -"sOd" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"sOi" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/commissary) -"sOk" = ( -/obj/structure/reagent_dispensers/water_cooler{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo/south) -"sOJ" = ( -/obj/structure/table/glass, -/obj/machinery/dnaforensics, -/obj/machinery/recharger/wallcharger{ - dir = 4; - pixel_x = -22 - }, -/obj/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/floor_decal/corner/blue/border{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/forensic/lab) -"sON" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/reinforced, -/area/turret_protected/ai_maint) -"sOO" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"sOQ" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"sPa" = ( -/obj/structure/table/standard, -/obj/floor_decal/corner/blue{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border, -/obj/item/paper_bin, -/obj/item/stamp/cmo, -/obj/item/sticky_pad/random, -/obj/item/pen, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"sPn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"sPo" = ( -/obj/decal/cleanable/cobweb, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "cChamber2pV"; - name = "Fourth Deck Port Chamber Vent"; - pixel_x = -6; - pixel_y = 25 - }, -/obj/machinery/button/blast_door{ - id_tag = "cChamber4pV"; - name = "First Deck Port Chamber Vent"; - pixel_x = -6; - pixel_y = 34 - }, -/obj/machinery/button/blast_door{ - id_tag = "cChamber1pV"; - name = "Fourth Deck Starboard Chamber Vent"; - pixel_x = 6; - pixel_y = 25 - }, -/obj/machinery/button/blast_door{ - id_tag = "cChamber3pV"; - name = "First Deck Starboard Chamber Vent"; - pixel_x = 6; - pixel_y = 34 - }, -/obj/machinery/button/ignition{ - id_tag = "engines"; - pixel_x = 16; - pixel_y = 29 - }, -/obj/machinery/computer/ship/engines{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/fuelbay) -"sPq" = ( -/obj/machinery/optable, -/obj/floor_decal/corner/grey_alt{ - dir = 10 - }, -/obj/floor_decal/industrial/outline/red, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"sPt" = ( -/turf/simulated/wall/prepainted, -/area/bridge/meeting_room) -"sPu" = ( -/obj/machinery/navbeacon/sierra/FD_aftcentralhallway2, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/structure/sign/chemistry{ - pixel_y = 24 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"sPw" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/item/cell/high, -/obj/random/powercell, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/expedition{ - c_tag = "Expedition - Storage"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"sPB" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/rnd/xenobiology/xenoflora) -"sPD" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/hygiene/sink{ - pixel_y = -12 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"sPE" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"sPH" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - id_tag = "petrov_shuttle_dock_pump" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/machinery/oxygen_pump{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"sPL" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"sPM" = ( -/obj/floor_decal/carpet/blue{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/carpet/blue, -/obj/floor_decal/carpet/blue{ - dir = 6 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/captain) -"sPO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"sPR" = ( -/obj/machinery/button/blast_door{ - dir = 8; - id_tag = "hydro<-bar"; - name = "Hydroponics Shutters"; - pixel_x = 24; - pixel_y = 6; - req_access = list("ACCESS_BAR") - }, -/obj/machinery/button/blast_door{ - dir = 8; - id_tag = "bar<-cafe"; - name = "Bar Shutters"; - pixel_x = 24; - pixel_y = -6; - req_access = list("ACCESS_BAR") - }, -/obj/machinery/light/led/small, -/obj/structure/table/steel_reinforced, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 6 - }, -/obj/machinery/reagent_temperature, -/obj/item/storage/bar_fruit_jar{ - pixel_x = 4; - pixel_y = 12 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"sPT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"sPX" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"sQk" = ( -/obj/paint_stripe/red, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/wallframe_spawn/reinforced/polarized{ - id = "cadetwindow" - }, -/turf/simulated/floor/plating, -/area/security/range) -"sQs" = ( -/turf/simulated/floor/plating, -/area/shuttle/petrov/test_room) -"sQu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/gym) -"sQx" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"sQz" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - id_tag = "ai_starboard_pump" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"sQG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/computer/air_control{ - name = "Nacelle Chamber Monitoring"; - sensor_name = "Chamber"; - sensor_tag = "ReacEng2" - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"sQJ" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"sQQ" = ( -/obj/floor_decal/industrial/warning, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"sQS" = ( -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"sQY" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/rotating_alarm/supermatter{ - pixel_y = -14; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"sQZ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"sRc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"sRj" = ( -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/structure/curtain/open/privacy, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"sRo" = ( -/obj/machinery/door/airlock/vault/bolted{ - id_tag = "civsafedoor"; - name = "Second Deck Safe Room" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"sRu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/grille, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"sRw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, -/obj/floor_decal/techfloor/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"sRy" = ( -/obj/machinery/button/windowtint{ - pixel_y = -24; - dir = 1; - id = "cafewindow"; - pixel_x = 6 - }, -/obj/structure/bed/chair/rounded/brown{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/wood, -/obj/floor_decal/carpet/blue{ - dir = 8 - }, -/obj/floor_decal/carpet/blue, -/obj/floor_decal/carpet/blue{ - dir = 1 - }, -/obj/floor_decal/carpet/blue{ - dir = 10 - }, -/obj/floor_decal/carpet/blue{ - dir = 9 - }, -/obj/machinery/light_switch{ - pixel_x = -6; - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/cafe/upper) -"sRC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"sRF" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/catwalk_plated/dark, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/safe_room/bridge) -"sRG" = ( -/obj/structure/table/standard, -/obj/machinery/reagent_temperature, -/turf/simulated/floor/tiled/white, -/area/vacant/gambling) -"sRN" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"sRS" = ( -/obj/machinery/tele_projector{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/teleporter) -"sSb" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/gas) -"sSd" = ( -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/light/led/small{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - pixel_y = 8 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"sSe" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"sSp" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/corner/green/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/virology{ - name = "Virology Lab" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/taperoll/engineering/applied, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology) -"sSq" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"sSy" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"sSz" = ( -/obj/item/reagent_containers/spray/sterilizine, -/turf/simulated/floor/tiled/white, -/area/vacant/infirmary) -"sSB" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"sSC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Head Of Security"; - sort_type = "Head Of Security" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"sSD" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation) -"sSF" = ( -/obj/machinery/light/spot, -/obj/floor_decal/spline/fancy/black{ - dir = 6 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"sSL" = ( -/obj/structure/closet/emcloset, -/obj/random/coin, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"sSN" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"sSO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/structure/filingcabinet/wallcabinet{ - pixel_y = 30 - }, -/obj/structure/coatrack, -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/iaa/iso_quarters) -"sSX" = ( -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/lounge/upper) -"sTa" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/hull, -/obj/shuttle_landmark/ascent_seedship_inf/sierra, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"sTh" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"sTi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"sTq" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/bed/chair/wood/maple, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"sTr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"sTs" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"sTx" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"sTF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"sTL" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/vending/cigarette{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"sTO" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"sTU" = ( -/turf/simulated/wall/prepainted, -/area/medical/mentalhealth) -"sTZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"sUb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"sUj" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/light_construct{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"sUt" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 4; - name = "Heat Exchanger Input" - }, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/titanium, -/area/shuttle/petrov/gas) -"sUA" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/industrial/danger{ - dir = 5 - }, -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/folder/nt, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"sUC" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"sUI" = ( -/obj/structure/table/rack, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/transmitter, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/tcommsat/storage) -"sUO" = ( -/obj/structure/closet/crate/secure/biohazard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/eva) -"sUP" = ( -/obj/floor_decal/corner/black/three_quarters{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"sUQ" = ( -/obj/structure/towel/pink_stripped, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"sUW" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"sVc" = ( -/obj/machinery/hologram/holopad/longrange, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/exploration/briefing_room) -"sVd" = ( -/obj/floor_decal/corner/black{ - dir = 9 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"sVe" = ( -/obj/machinery/optable, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"sVf" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"sVh" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/button/windowtint{ - dir = 1; - id = "bo_windows"; - pixel_x = -6; - pixel_y = -21 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -21; - pixel_x = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"sVl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"sVq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/foreport) -"sVs" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"sVt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"sVA" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"sVB" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/aft_stairwell) -"sVH" = ( -/obj/structure/table/marble, -/obj/machinery/reagentgrinder/juicer, -/obj/item/reagent_containers/glass/beaker/large, -/obj/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"sVI" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod2/station) -"sVK" = ( -/obj/floor_decal/corner/black/half{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"sVN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/warning/hot_exhaust{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"sVS" = ( -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"sWc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"sWf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"sWj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/rotating_alarm/supermatter{ - dir = 8; - pixel_x = 14 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"sWn" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide{ - start_pressure = 0 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"sWv" = ( -/obj/floor_decal/chapel{ - dir = 1 - }, -/obj/structure/bed/chair/pew/mahogany, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"sWy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/cafe/upper) -"sWH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"sWJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm/warm{ - dir = 4; - pixel_x = -24; - req_access = list(); - target_temperature = 398.15; - temperature = 343.15 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/breakroom) -"sWY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"sWZ" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"sXd" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/open, -/area/space) -"sXg" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"sXh" = ( -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d1port) -"sXu" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"sXy" = ( -/obj/structure/table/steel_reinforced, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/device/scanner/gas, -/obj/item/device/t_scanner, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"sXB" = ( -/obj/floor_decal/corner/green/three_quarters, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/structure/hygiene/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"sXC" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe) -"sXD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"sXI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/aft) -"sXS" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"sXZ" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod4/station) -"sYe" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"sYg" = ( -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/stamp/rd/nt, -/obj/structure/table/glass/boron, -/obj/item/toy/desk/newtoncradle{ - pixel_x = 4; - pixel_y = -34 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"sYq" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"sYx" = ( -/obj/floor_decal/corner/darkblue/mono, -/obj/machinery/vending/snack, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"sYz" = ( -/obj/machinery/cryopod, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"sYD" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/adv{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"sYL" = ( -/obj/landmark/test/safe_turf, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"sYN" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"sYU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/sofa/l/black{ - dir = 4 - }, -/obj/machinery/light, -/turf/simulated/floor/carpet/green, -/area/crew_quarters/cafe) -"sYX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"sZd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/seats_place) -"sZi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"sZm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/yellow/bordercorner, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"sZq" = ( -/obj/machinery/vending/snack, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/sign/warning/smoking{ - dir = 8; - pixel_x = 33 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/office) -"sZs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/iaa/iso_quarters) -"sZx" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external/bolted/cycling{ - name = "Xenobotany Lab Access"; - id_tag = "xenobotany_access_outer" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/xenobiology/xenoflora) -"sZz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"sZF" = ( -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"sZT" = ( -/obj/floor_decal/corner/green/bordercorner, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"sZU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/simulated/open, -/area/medical/staging) -"sZZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "td_port" - }, -/obj/floor_decal/industrial/warning/cee, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"taa" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/fourthdeck/forestarboard) -"tac" = ( -/obj/machinery/air_sensor{ - id_tag = "engine_sensor" - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/engineering/engine_room) -"tah" = ( -/obj/machinery/camera/all/command{ - c_tag = "AI Core - Fore"; - dir = 8 - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"taj" = ( -/obj/structure/sign/directions/med{ - pixel_y = 30 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"tam" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"tao" = ( -/obj/structure/ladder/up, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftport) -"taq" = ( -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/closet/crate/secure/biohazard, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level2) -"taA" = ( -/obj/structure/displaycase{ - desc = "A display case for prized possessions. It taunts you to kick it. Her card reader is damaged, you can also notice some transparent formations on the glass."; - req_access = list("ACCESS_CENT_GENERAL") - }, -/obj/item/gun/energy/laser{ - desc = "A Hephaestus Industries G40E carbine, designed to kill with concentrated energy blasts. He seems to lack some details."; - origin_tech = list("combat"=2,"magnets"=1); - projectile_type = /obj/item/projectile/beam/practice - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"taB" = ( -/obj/structure/rubble/war, -/obj/structure/rubble/war, -/obj/structure/rubble/war, -/obj/fluid_mapped, -/mob/living/simple_animal/aquatic/fish, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"taC" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"taE" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"taX" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"tbc" = ( -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"tbn" = ( -/obj/structure/sign/nanotrasen{ - dir = 1 - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/centralstarboard) -"tbv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"tbD" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 8 - }, -/obj/item/folder/nt, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/random/tool, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"tbI" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 4; - internal_pressure_bound = 35000; - internal_pressure_bound_default = 35000 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d3starboard) -"tbO" = ( -/obj/decal/cleanable/dirt, -/obj/structure/bed/chair/office/dark, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"tbT" = ( -/obj/floor_decal/borderfloorwhite{ - dir = 5 - }, -/obj/floor_decal/corner/lime/border{ - dir = 5 - }, -/obj/structure/table/woodentable/walnut, -/obj/structure/flora/pottedplant/drooping{ - pixel_y = 13; - pixel_x = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"tbY" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - dir = 8; - id_tag = "engineroomvent"; - name = "Engine Room Vent" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"tcb" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"tch" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/airlock_sensor{ - id_tag = "solar_starboard_sensor"; - master_tag = "solar_starboard"; - pixel_x = 10; - pixel_y = 27 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "solar_starboard"; - pixel_x = -5; - pixel_y = 21; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"tcn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"tco" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/office) -"tcu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"tcy" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"tcB" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/mopbucket, -/obj/item/mop, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"tcE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"tcJ" = ( -/obj/floor_decal/spline/fancy/black, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"tcS" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/structure/table/woodentable/walnut, -/obj/item/storage/box/donut, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"tcU" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"tdh" = ( -/obj/floor_decal/industrial/traffic/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tdi" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"tdl" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/structure/closet/crate/secure{ - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/obj/item/stock_parts/power/apc/buildable, -/obj/item/stock_parts/power/apc/buildable, -/obj/item/stock_parts/power/battery/buildable, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"tdn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Bridge Solar Access" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/maintenance/solar/bridge_starboard) -"tdq" = ( -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"tdu" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"tdx" = ( -/obj/item/material/ashtray/glass{ - pixel_y = -2 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/black{ - pixel_y = 7 - }, -/obj/structure/table/woodentable_reinforced/ebony, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"tdI" = ( -/obj/structure/bookcase/manuals/medical, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"tdN" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/turret_protected/ai_cyborg_upload) -"tdV" = ( -/obj/structure/railing/mapped, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"tdY" = ( -/obj/floor_decal/corner/paleblue/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"tee" = ( -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/structure/window/boron_reinforced, -/obj/structure/window/boron_reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"tep" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/paint_stripe/red, -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/security/sierra/suits) -"tez" = ( -/obj/machinery/door/airlock/mining{ - id_tag = "qmdoor-hallway"; - name = "Quartermaster"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/deckofficer) -"teA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/machinery/camera/network/hangar{ - c_tag = "Hangar - Xenobiology Entrance"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs/upper) -"teQ" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"tfa" = ( -/obj/structure/closet/secure_closet/xenoarchaeologist_sierra, -/obj/structure/window/reinforced, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/locker) -"tfe" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/medical{ - dir = 8; - door_color = "#4c535b"; - name = "Morgue" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"tfi" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"tfk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"tfl" = ( -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"tfs" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -32 - }, -/obj/structure/closet/secure_closet/security/sierra/science, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/security{ - c_tag = "Security - RND Checkpoint"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"tfy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/lime/border{ - dir = 5 - }, -/obj/structure/bed/chair/comfy/beige, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"tfE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/seconddeck) -"tfG" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"tfO" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/item/device/radio/intercom/locked/ai_private{ - pixel_y = 22 - }, -/obj/machinery/computer/teleporter{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_teleport) -"tfP" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"tfU" = ( -/obj/structure/table/woodentable/walnut, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"tfZ" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"tge" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"tgq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"tgt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"tgJ" = ( -/obj/machinery/door/airlock/hatch{ - dir = 4; - name = "Seating"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_r) -"tgK" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway/aft) -"tgM" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"tgQ" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"thi" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/catwalk_plated/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/hallway) -"thl" = ( -/obj/decal/cleanable/dirt, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"thx" = ( -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/green/bordercorner, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon/sierra/FD_forecentralhallway1, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"thy" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"thC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"thP" = ( -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"thR" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/wall/r_wall, -/area/space) -"thT" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"thW" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/xenobiology/level1) -"thZ" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/machinery/airlock_sensor{ - pixel_y = -16; - pixel_x = 24; - id_tag = "engine_atmos_airlock_chamber"; - master_tag = "engine_atmos_airlock" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"tih" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/engineering/atmos/storage) -"tin" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/structure/table/standard, -/obj/item/material/ashtray/plastic, -/obj/random/snack, -/obj/random/smokes, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"tix" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"tiA" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/turf/simulated/floor/plating, -/area/rnd/development) -"tiB" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"tiD" = ( -/obj/structure/table/woodentable, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/stack/package_wrap/cargo_wrap, -/turf/simulated/floor/tiled/dark, -/area/vacant/dungeon) -"tiE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"tiK" = ( -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/assembly/office) -"tiZ" = ( -/obj/structure/railing/mapped, -/obj/structure/cart{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"tjb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"tjd" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/medical/mortus{ - name = "Observation" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"tji" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"tjj" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"tjn" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/water_cell) -"tjw" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/foreport) -"tjC" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"tjQ" = ( -/obj/structure/closet/secure_closet/decktech, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/suplocker_room) -"tjZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"tkb" = ( -/obj/structure/roller_bed, -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/maintenance_equipstorage) -"tkg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/blast/regular{ - dir = 8; - id_tag = "borg"; - name = "Cyborg Upload" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_cyborg_upload) -"tkp" = ( -/turf/simulated/wall/r_wall/hull, -/area/turret_protected/ai_maint) -"tkt" = ( -/obj/structure/table/rack, -/obj/item/defibrillator/compact/loaded, -/obj/item/defibrillator/compact/loaded, -/obj/item/crowbar/prybar, -/obj/item/crowbar/prybar, -/obj/item/crowbar/prybar, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/radio, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/suit_cooling_unit/miniature, -/obj/item/device/suit_cooling_unit/miniature, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"tkw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"tkF" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"tkL" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -23; - pixel_y = 12 - }, -/obj/structure/catwalk, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/open, -/area/rnd/xenobiology/water_cell) -"tkO" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/aft) -"tkT" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tkX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"tkY" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"tli" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hydroponics) -"tlm" = ( -/obj/machinery/power/smes/buildable{ - RCon_tag = "Solar - Bridge Starboard" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"tlu" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/prepainted, -/area/security/sierra/interrogation) -"tlv" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/industrial/danger{ - dir = 10 - }, -/obj/machinery/computer/modular/preset/cardslot/command, -/obj/machinery/button/windowtint{ - pixel_x = -5; - pixel_y = 24; - id = "bridge_outer_windows" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/nano) -"tlw" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/obj/machinery/meter, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"tlx" = ( -/obj/structure/closet/secure_closet/engineering_sierra, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/gps, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"tlz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 1 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft) -"tlB" = ( -/obj/structure/table/rack, -/obj/item/storage/belt/archaeology, -/obj/item/storage/belt/archaeology, -/obj/item/storage/belt/archaeology, -/obj/item/storage/ore, -/obj/item/storage/ore, -/obj/item/storage/ore, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/brown/border{ - dir = 10 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/mining{ - dir = 4; - c_tag = "Mining - Equipment" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"tlF" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"tlM" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"tlW" = ( -/obj/floor_decal/industrial/warning, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry2) -"tma" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d3port) -"tmr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"tms" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/light_switch{ - pixel_x = 21; - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/assembly/robotics) -"tmy" = ( -/obj/structure/bed/chair/rounded/blue{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"tmA" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"tmL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"tmM" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/starboard) -"tmY" = ( -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/corner/black/mono, -/obj/structure/table/standard, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"tng" = ( -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tni" = ( -/obj/wallframe_spawn/reinforced/polarized{ - id = "rcheckinner_windows" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "PetrovShield"; - name = "Petrov Blast Shutters" - }, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/plating, -/area/shuttle/petrov/security) -"tnk" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/medical/morgue) -"tnl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/holocontrol) -"tnm" = ( -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tnn" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"tnr" = ( -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/folder/red, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/machinery/button/blast_door{ - dir = 1; - id_tag = "armory_shutters"; - name = "Desk Shutters"; - pixel_y = -20; - req_access = list("ACCESS_ARMORY") - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory) -"tnx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/fuel{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"tny" = ( -/obj/machinery/computer/prisoner{ - dir = 4 - }, -/obj/floor_decal/corner/red/mono, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"tnB" = ( -/obj/structure/table/standard, -/obj/item/device/scanner/health, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/storage/firstaid/radiation, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"tnF" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/exploration/eva) -"tnL" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"tnR" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/sign/warning/airlock{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"tnS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"tnX" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"tnY" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"tnZ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/cargo) -"tod" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"tof" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"tok" = ( -/obj/machinery/computer/ship/engines, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"ton" = ( -/obj/machinery/camera/motion/command{ - c_tag = "Command - Internal Affairs Office"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bookcase/manuals/security, -/obj/floor_decal/corner/black/full, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"top" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"tot" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular{ - id_tag = "auxbar"; - name = "Blast Shutters" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/vacant/bar) -"tow" = ( -/obj/floor_decal/corner/black/border{ - dir = 10 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"toA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"toC" = ( -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - c_tag = "Xenobiology - Lower - Containment Fore"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"toD" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery) -"toF" = ( -/obj/structure/catwalk, -/turf/simulated/floor/shuttle_ceiling/sierra, -/area/space) -"toK" = ( -/obj/structure/table/woodentable/mahogany, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"toO" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod4/station) -"toT" = ( -/obj/machinery/hologram/holopad, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/holocontrol) -"toV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/aft) -"tpb" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"tpf" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"tpi" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"tpp" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/bed/sofa/r/blue{ - dir = 8 - }, -/obj/machinery/camera/network/bridge_deck{ - dir = 8; - c_tag = "Bridge Deck - Aft Hallway - Starboard Rooms" - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"tpH" = ( -/turf/simulated/wall/prepainted, -/area/medical/wardhallway) -"tpJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"tpK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"tpL" = ( -/turf/simulated/floor/wood/bamboo{ - name = "stairs" - }, -/area/crew_quarters/garden_room) -"tqd" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/industrial/warning, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"tqe" = ( -/obj/machinery/status_display{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"tqf" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/central_stairwell) -"tqj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"tqr" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/tcommsat/chamber) -"tqv" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1441; - id = "fuel_in"; - pixel_y = 1; - use_power = 1 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/fuelbay) -"tqw" = ( -/obj/structure/table/standard, -/obj/item/device/geiger, -/obj/item/device/scanner/health, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"tqx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -24; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"tqy" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 1; - icon_state = "railing0-1" - }, -/turf/simulated/open, -/area/maintenance/seconddeck/aftstarboard) -"tqE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/computer/modular/preset/cardslot/command{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"tqL" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"tqM" = ( -/obj/floor_decal/corner/black/full, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"tqV" = ( -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/obj/structure/sign/nanotrasen{ - dir = 4 - }, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/cargo_r) -"tqW" = ( -/obj/machinery/computer/ship/helm{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"trg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"tri" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Fore Hallway - Fore"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"trx" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"trz" = ( -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sauna) -"trA" = ( -/obj/machinery/door/firedoor, -/obj/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - dir = 4; - name = "Second Deck Substation" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/substation/seconddeck) -"trC" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"trM" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/floor_decal/techfloor/corner, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/forestarboard) -"trR" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"trS" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/research{ - name = "Control Room" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/security) -"tse" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/hop/cobed) -"tsj" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"tsm" = ( -/obj/floor_decal/carpet/blue2{ - dir = 4 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/hop, -/obj/landmark/start{ - name = "Chief Medical Officer" - }, -/turf/simulated/floor/carpet/blue3, -/area/crew_quarters/heads/office/cmo/cobed) -"tsn" = ( -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/window/basic, -/obj/structure/hygiene/drain, -/obj/structure/hygiene/shower{ - dir = 4 - }, -/obj/machinery/door/window/eastright, -/obj/structure/curtain/open/shower, -/obj/structure/closet/walllocker{ - pixel_x = -28 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals10, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/breakroom) -"tsv" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/hallway) -"tsG" = ( -/obj/machinery/atmospherics/binary/pump/on{ - name = "Scrubber to Waste" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"tsN" = ( -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"tta" = ( -/obj/item/paper_bin, -/obj/item/pen{ - pixel_x = -1 - }, -/obj/item/pen/red{ - pixel_x = 5 - }, -/obj/structure/table/woodentable_reinforced/ebony, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"ttc" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/virology/atmos) -"ttd" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"tto" = ( -/obj/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"ttq" = ( -/obj/structure/table/rack, -/obj/item/device/flashlight/flare/glowstick/random, -/obj/random/single/color/cable_coil, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"ttA" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"ttD" = ( -/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ - RCon_tag = "Substation - Gravitational Generator" - }, -/obj/structure/cable/green, -/obj/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"ttF" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar) -"ttL" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/thirddeck/aftstarboard) -"tud" = ( -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 8 - }, -/obj/machinery/atmospherics/valve/shutoff/supply, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/entry) -"tun" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"tuB" = ( -/obj/machinery/suit_storage_unit/standard_unit{ - req_access = newlist() - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/sign/warning/nosmoking_1{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"tuE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"tuF" = ( -/turf/simulated/floor/plating, -/area/vacant/sauna) -"tuG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/center) -"tuN" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/foundation, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"tuR" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Third Deck Substation Bypass" - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/substation/thirddeck) -"tuX" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/bridgedeck/aft) -"tvj" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"tvk" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/exploration_shuttle/power) -"tvm" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/heads/office/cmo/cobed) -"tvr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/rotating_alarm/supermatter{ - pixel_y = 14 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"tvu" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/personal/patient, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery) -"tvE" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/zpipe/down/cyan{ - dir = 1 - }, -/turf/simulated/open, -/area/space) -"tvF" = ( -/turf/simulated/open, -/area/hallway/primary/seconddeck/central_stairwell) -"tvG" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/omni/filter{ - tag_north = 2; - tag_south = 1; - tag_west = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"tvK" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/rnd/xenobiology/entry2) -"tvN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"tvZ" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"twd" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/captain/beach) -"twj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar_atmos) -"twk" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/computer/modular/preset/aislot/research{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai) -"twl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"twq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"twv" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"twx" = ( -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"twz" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs) -"twA" = ( -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"twE" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 1; - id_tag = "nuke_shuttle_dock_airlock_pump" - }, -/obj/machinery/oxygen_pump{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"twH" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/tech_supply, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"twJ" = ( -/obj/structure/window/basic{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"twN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"twO" = ( -/obj/structure/bed/sofa/l/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/sleep/cryo/south) -"twT" = ( -/obj/structure/closet/wardrobe/exploration, -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration) -"twU" = ( -/obj/machinery/button/alternate/door{ - desc = "A remote control-switch for the office door."; - dir = 6; - id_tag = "captaindoor"; - name = "Office Door Control"; - pixel_x = 6; - pixel_y = 24; - req_access = list("ACCESS_CAPTAIN") - }, -/obj/machinery/button/windowtint{ - id = "cap_windows"; - pixel_x = -3; - pixel_y = 24 - }, -/obj/machinery/computer/modular/preset/cardslot/command, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"twV" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/floor_decal/spline/fancy/black, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 1; - pixel_y = -13 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"twY" = ( -/obj/structure/closet/l3closet/general, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"twZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head/deck3) -"txb" = ( -/obj/random/vendor{ - dir = 4 - }, -/obj/floor_decal/corner/red/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/fore) -"txc" = ( -/obj/floor_decal/spline/fancy/black/corner{ - dir = 4 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"txi" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown2_3" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/center) -"txq" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"txt" = ( -/obj/machinery/computer/modular/preset/security{ - dir = 4 - }, -/obj/machinery/button/blast_door{ - id_tag = "security_permabrig_fitst_cell_shutters"; - name = "1st Cell Shutters"; - req_access = list("ACCESS_SECURITY"); - pixel_y = 18; - pixel_x = -21; - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/button/blast_door{ - id_tag = "security_permabrig_lobby_shutters"; - name = "Desk Shutters"; - req_access = list("ACCESS_SECURITY"); - pixel_y = -2; - pixel_x = -28; - dir = 4 - }, -/obj/machinery/button/blast_door{ - id_tag = "security_permabrig_second_cell_shutters"; - name = "2nd Cell Shutters"; - req_access = list("ACCESS_SECURITY"); - pixel_y = 6; - pixel_x = -21; - dir = 4 - }, -/obj/machinery/button/blast_door{ - id_tag = "security_permabrig_third_cell_shutters"; - name = "3d Cell Shutters"; - req_access = list("ACCESS_SECURITY"); - pixel_y = -6; - pixel_x = -21; - dir = 4 - }, -/obj/machinery/button/flasher{ - id_tag = "security_perm_chamber_flash"; - name = "Chamber Flasher"; - pixel_x = -28; - pixel_y = 10; - dir = 4; - req_access = list("ACCESS_SECURITY") - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"txv" = ( -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/obj/item/storage/mirror{ - pixel_y = 32 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"txx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"txC" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"txH" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped, -/obj/item/reagent_containers/food/snacks/old/pizza, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"tyd" = ( -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell1) -"tyl" = ( -/obj/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftstarboard) -"tym" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/structure/reagent_dispensers/water_cooler{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"tyD" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"tyI" = ( -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/supply{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level2) -"tyJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"tyL" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod5/station) -"tyX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"tze" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/hallway/primary/bridgedeck/center) -"tzi" = ( -/obj/machinery/computer/ship/engines{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, -/obj/structure/window/reinforced/polarized, -/obj/machinery/power/apc/charon{ - dir = 8; - name = "west bump"; - pixel_x = -25; - req_access = list(list("ACCESS_EXPLORER","ACCESS_ENGINEERING")) - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cockpit) -"tzt" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod4/station) -"tzF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/darkblue/diagonal, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"tzJ" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"tzK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown2_2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/fore) -"tzL" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/floor_decal/carpet/blue{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa) -"tzM" = ( -/obj/structure/closet/emcloset, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"tzT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tzU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"tzW" = ( -/obj/structure/table/standard, -/obj/item/defibrillator/loaded, -/obj/item/auto_cpr, -/obj/item/storage/box/freezer{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/maintenance_equipstorage) -"tAb" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"tAe" = ( -/obj/floor_decal/corner/darkblue/half{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue{ - dir = 6 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/hallway/primary/bridgedeck/central_stairwell) -"tAp" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/corner, -/obj/machinery/access_button/airlock_interior{ - master_tag = "engine_airlock"; - name = "Cycle to Core"; - pixel_x = 24; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"tAr" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"tAz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/storage) -"tAA" = ( -/obj/floor_decal/industrial/warning/corner, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"tAK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"tAO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/machinery/camera/network/hangar{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"tAU" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"tAW" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/green/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"tBd" = ( -/obj/structure/bed/chair/padded/red, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation) -"tBl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/sleep/cryo/south) -"tBq" = ( -/obj/structure/closet/emcloset, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/sign/warning/airlock{ - dir = 8; - pixel_x = 32 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/maintenance/fourthdeck/aft) -"tBs" = ( -/obj/machinery/shield_diffuser, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tBx" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"tBy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"tBz" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"tBD" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/machinery/tele_beacon, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"tBF" = ( -/obj/machinery/light, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/paleblue/border, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"tBK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/equipment) -"tBP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"tBS" = ( -/obj/floor_decal/corner/black/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"tBT" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"tBW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"tCa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"tCc" = ( -/obj/machinery/atmospherics/unary/heater, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"tCf" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/paint_stripe/red, -/obj/machinery/door/blast/shutters{ - dir = 4; - id_tag = "security_sergeant_shutters"; - name = "Warden Desk" - }, -/obj/wallframe_spawn/reinforced/polarized{ - id = "bo_windows" - }, -/turf/simulated/floor/plating, -/area/security/sierra/sergeant) -"tCs" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"tCx" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"tCB" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"tCD" = ( -/obj/structure/sign/warning/fire, -/obj/paint/black, -/turf/simulated/wall/ocp_wall, -/area/maintenance/incinerator) -"tCE" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"tCJ" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"tCL" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"tCO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"tCR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"tCS" = ( -/obj/floor_decal/carpet/blue2{ - dir = 8 - }, -/obj/floor_decal/carpet/blue2, -/obj/floor_decal/carpet/blue2{ - dir = 10 - }, -/obj/structure/curtain/bed{ - pixel_y = -32 - }, -/turf/simulated/floor/carpet/blue3, -/area/crew_quarters/heads/office/cmo/cobed) -"tDf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"tDh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/floor_decal/corner/grey{ - dir = 10 - }, -/obj/machinery/computer/air_control{ - dir = 1; - input_tag = "CO21p_in"; - name = "Propellent Supply Control"; - output_tag = "CO21p_out"; - sensor_name = "Tank"; - sensor_tag = "ReacEngCO21" - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"tDj" = ( -/obj/floor_decal/techfloor, -/obj/machinery/light/small, -/obj/structure/table/standard, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"tDm" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - id_tag = "escape_pod_10_berth"; - name = "escape pod ten berth controller"; - pixel_x = -32; - pixel_y = -28; - tag_door = "escape_pod_10_berth_hatch"; - frequency = 1380; - dir = 1 - }, -/obj/floor_decal/industrial/warning, -/obj/floor_decal/steeldecal/steel_decals_central4, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"tDo" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"tDr" = ( -/obj/structure/table/woodentable/ebony, -/obj/item/frame/intercom, -/obj/item/stack/cable_coil/blue, -/turf/simulated/floor/wood/yew, -/area/crew_quarters/heads/office/ce/cobed) -"tDs" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/closet/emcloset, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"tDu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"tDw" = ( -/obj/floor_decal/corner/black{ - dir = 6 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"tDx" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/aft) -"tDD" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass/medical{ - name = "Hospital" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 2; - id_tag = "med_pat_ward"; - name = "Infirmary Window Shutters" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"tDG" = ( -/obj/structure/table/woodentable/mahogany, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"tDI" = ( -/obj/structure/table/steel, -/obj/item/stack/flag/green, -/obj/item/stack/flag/green, -/obj/item/stack/flag/green, -/obj/item/stack/flag/yellow, -/obj/item/stack/flag/yellow, -/obj/item/stack/flag/yellow, -/obj/item/stack/flag/red, -/obj/item/stack/flag/red, -/obj/item/stack/flag/red, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"tDJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"tDL" = ( -/obj/floor_decal/corner/darkblue, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"tDU" = ( -/obj/wallframe_spawn/reinforced, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/paint_stripe/red, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"tDW" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"tEi" = ( -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"tEq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration) -"tEs" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/zpipe/up/fuel, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"tEF" = ( -/obj/machinery/light_construct{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"tEG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"tEK" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/starboard) -"tET" = ( -/obj/structure/table/rack/dark, -/obj/item/stack/material/glass/fifty, -/obj/item/stack/material/glass/fifty, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"tEV" = ( -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins/storage) -"tEX" = ( -/turf/simulated/wall/prepainted, -/area/engineering/engine_monitoring) -"tEY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"tFf" = ( -/obj/machinery/atmospherics/unary/vent_pump/tank{ - dir = 8; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "fuel_out"; - initialize_directions = 1; - internal_pressure_bound = 8000; - internal_pressure_bound_default = 8000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/obj/machinery/air_sensor{ - id_tag = "fuel_sensor" - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/engineering/fuelbay) -"tFi" = ( -/obj/structure/bed/chair/office/teal{ - dir = 4 - }, -/obj/floor_decal/corner/beige/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"tFu" = ( -/turf/simulated/wall/prepainted, -/area/storage/primary) -"tFA" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod3/station) -"tFC" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/cryopod/robot{ - pixel_x = -32 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"tFG" = ( -/obj/item/stool/bar/padded, -/obj/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/cafe) -"tFO" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"tGd" = ( -/obj/floor_decal/corner/black/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tGg" = ( -/obj/floor_decal/corner/green/border{ - dir = 10 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tGm" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"tGr" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/rnd/xenobiology/level1) -"tGv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"tGC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"tGH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/research{ - dir = 4; - name = "Miscellaneous Research"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/containment) -"tGK" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"tGL" = ( -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/command/bsa) -"tGQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"tGS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/wall/r_wall/hull, -/area/engineering/engine_room) -"tHa" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/maintenance_equipstorage) -"tHc" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/structure/bed/chair/padded/blue, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"tHv" = ( -/obj/structure/holoplant, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"tHC" = ( -/obj/floor_decal/corner/paleblue, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"tHE" = ( -/obj/structure/inflatable/wall, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"tHF" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tHG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"tHP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"tHT" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/guppy_hangar/start) -"tHW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"tHZ" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry2) -"tIa" = ( -/obj/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1; - target_pressure = 80 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"tIc" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"tId" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/camera/network/engine{ - c_tag = "Engine - Aft Starboard" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"tIg" = ( -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"tIm" = ( -/obj/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 6 - }, -/obj/machinery/computer/air_control{ - dir = 1; - input_tag = "fuel4p_in"; - name = "Fuel Supply Control"; - output_tag = "fuel4p_out"; - sensor_name = "Tank"; - sensor_tag = "ReacEngPlasma4" - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"tIn" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"tIp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/industrial/danger/corner, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"tIt" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"tIu" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/bar/cobed) -"tIz" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"tIK" = ( -/obj/floor_decal/industrial/traffic{ - dir = 9; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/office) -"tIN" = ( -/obj/structure/table/standard, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/nanopaste, -/obj/item/stack/nanopaste, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/floor_decal/corner/grey_alt/three_quarters{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Robotics Lab - Surgery"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"tIV" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/bed/chair/shuttle, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ - dir = 4; - id_tag = "escape_pod_11"; - name = "escape pod eleven controller"; - pixel_x = -20; - tag_door = "escape_pod_11_hatch"; - frequency = 1380 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/escape_pod/escape_pod11/station) -"tIX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar) -"tJj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/light/spot, -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"tJs" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/box/cups, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"tJv" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"tJx" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/bed/sofa/r/black, -/obj/machinery/button/alternate/door/bolts{ - dir = 8; - id_tag = "bar_private_room_1"; - name = "Lock"; - pixel_x = 24; - pixel_y = -7 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/carpet/green, -/area/crew_quarters/cafe) -"tJz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"tJC" = ( -/obj/structure/table/marble, -/obj/machinery/door/blast/shutters{ - id_tag = "cafe"; - name = "Cafe Shutters"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"tJJ" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - id = "fuel3p_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d1starboard) -"tJM" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Toxins Storage"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins/storage) -"tJY" = ( -/obj/structure/hygiene/shower{ - dir = 8; - pixel_x = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/rnd/xenobiology/entry) -"tKa" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"tKr" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/hardstorage) -"tKy" = ( -/obj/structure/closet, -/obj/item/melee/classic_baton, -/obj/decal/cleanable/dirt, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/wood{ - icon_state = "wood_broken2" - }, -/area/maintenance/firstdeck/forestarboard) -"tKC" = ( -/obj/floor_decal/corner/purple/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/random/vendor{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/aft) -"tKH" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/rnd/xenobiology/xenoflora) -"tKO" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"tKP" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/storage) -"tKQ" = ( -/turf/simulated/floor/bluegrid, -/area/engineering/bluespace/chamber) -"tKT" = ( -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"tKX" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "petrov2"; - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell2) -"tLc" = ( -/obj/structure/largecrate, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"tLm" = ( -/obj/structure/catwalk, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/shuttle_ceiling/sierra, -/area/space) -"tLp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"tLz" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"tLA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/smes/buildable/preset/sierra/shuttle/charon, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"tLH" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/grey/border{ - dir = 9 - }, -/turf/simulated/floor/wood/walnut, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"tLU" = ( -/obj/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tLY" = ( -/obj/structure/table/standard, -/obj/item/aicard, -/obj/item/aiModule/reset, -/obj/structure/sign/warning/detailed{ - dir = 4; - pixel_x = -32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech) -"tMa" = ( -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d3starboard) -"tMb" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/sleeper) -"tMe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"tMh" = ( -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell2) -"tMl" = ( -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"tMr" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/floor_decal/industrial/outline/blue, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"tMz" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"tMB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"tMD" = ( -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/structure/table/marble, -/obj/machinery/reagentgrinder/juicer{ - pixel_y = 8 - }, -/obj/structure/window/reinforced, -/obj/floor_decal/corner/red/diagonal, -/obj/floor_decal/spline/fancy/black{ - dir = 6 - }, -/obj/item/reagent_containers/glass/beaker/insulated, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"tMH" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/hallway) -"tML" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/computer/arcade, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"tMU" = ( -/obj/item/storage/mirror{ - pixel_x = -26; - pixel_y = 1 - }, -/obj/structure/hygiene/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 8 - }, -/obj/machinery/atmospherics/valve/shutoff/supply, -/turf/simulated/floor/tiled, -/area/rnd/research) -"tMV" = ( -/obj/structure/closet/secure_closet/crew/research, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/white/monotile, -/area/maintenance/fourthdeck/aft) -"tNf" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"tNg" = ( -/obj/machinery/door/blast/regular{ - dir = 8; - id_tag = "toxins_petrov_exhaust"; - name = "Toxins Exhaust Blast Doors" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/gas) -"tNj" = ( -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#c0c0c0" - }, -/area/quartermaster/hangar/upper) -"tNn" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"tNo" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hardstorage) -"tNv" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"tNA" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"tNI" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"tNN" = ( -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/obj/item/storage/mirror{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/old_tile, -/area/crew_quarters/head) -"tOd" = ( -/obj/machinery/shield_diffuser, -/obj/machinery/door/blast/regular{ - id_tag = "chapel_shutters_md"; - name = "Mass Driver Shutters"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/chapel/main) -"tOi" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/airlock) -"tOk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/floor_decal/techfloor/corner, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"tOl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft_stairwell) -"tOr" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"tOt" = ( -/obj/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tOw" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"tOx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southright{ - name = "Robotics Laboratory Desk"; - req_access = newlist() - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/structure/wall_frame/standard, -/obj/structure/table/wallf{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/assembly/robotics) -"tOC" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"tOD" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"tOK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/status_display{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/navbeacon/sierra/TD_fore7, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"tON" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"tOO" = ( -/obj/floor_decal/industrial/traffic{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tOU" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/holocontrol) -"tPf" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/washing_machine, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"tPh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"tPq" = ( -/obj/structure/closet/secure_closet{ - name = "Secure Evidence Locker"; - req_access = list("ACCESS_SECURITY") - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techmaint, -/area/security/sierra/evidence) -"tPr" = ( -/obj/structure/inflatable/door, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"tPs" = ( -/obj/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/structure/railing/mapped{ - dir = 1; - icon_state = "railing0-1" - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"tPx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/navbeacon/sierra/SD_centralhallway2, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"tPA" = ( -/obj/floor_decal/corner/black/full, -/obj/structure/closet/secure_closet/iaa, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/cobed) -"tPH" = ( -/obj/machinery/floodlight{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"tPJ" = ( -/obj/floor_decal/industrial/outline/orange, -/obj/machinery/rotating_alarm/security_alarm{ - pixel_y = 13 - }, -/turf/simulated/floor/plating{ - burnt = 1; - name = "burnt plating" - }, -/area/crew_quarters/safe_room/bridge) -"tPK" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"tPO" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/random/mre, -/obj/structure/table/woodentable/walnut, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"tPS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/full, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftstarboard) -"tQf" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "sd_port_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 8; - id_tag = "sd_port"; - name = "Second Deck Port Airlock Controller"; - pixel_x = 20; - req_access = list("ACCESS_EXTERNAL") - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"tQj" = ( -/obj/machinery/vending/hydronutrients, -/obj/machinery/light_construct{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/abandoned_hydroponics) -"tQm" = ( -/obj/machinery/light_switch{ - dir = 4; - on = 1; - pixel_x = -23 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/obj/item/storage/box/monkeycubes{ - pixel_y = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"tQu" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/aft) -"tQA" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/thirddeck/foreport) -"tQD" = ( -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Power Storage"; - req_access = newlist() - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/auxpower) -"tQG" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 4; - id_tag = "sd_starboard_pump" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"tQH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/firstdeck) -"tQO" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"tQZ" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"tRf" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - frequency = 1331; - id_tag = "rescue_shuttle_dock_airlock_outer"; - name = "Docking Port Airlock" - }, -/obj/machinery/shield_diffuser, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/center) -"tRg" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/thirddeck/center) -"tRq" = ( -/obj/structure/bed/sofa/l/teal{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"tRr" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"tRB" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ - RCon_tag = "Substation - Teleporter" - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"tRD" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/space, -/area/space) -"tRF" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d1starboard) -"tRG" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/thirddeck/aft_stairwell) -"tRI" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Surgery - Operation Theatre Two" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery/second) -"tRN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/civilian{ - name = "Hydroponics Bay" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"tRS" = ( -/obj/structure/railing/mapped, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"tRV" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Bluespace Drive - Chamber"; - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/engineering/bluespace/chamber) -"tSd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"tSs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"tSD" = ( -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tSK" = ( -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/window/reinforced, -/obj/machinery/computer/modular/preset/dock{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 5 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"tSM" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"tSN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"tSQ" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"tST" = ( -/obj/machinery/light/spot, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"tSV" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 10 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"tSW" = ( -/obj/machinery/light_switch{ - pixel_y = 29 - }, -/obj/structure/bed/chair/padded/blue, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"tTa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"tTc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"tTe" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/glass/civilian{ - name = "Central Stairwell" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/central_stairwell) -"tTh" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/item/folder, -/obj/item/folder, -/obj/item/folder, -/obj/item/folder, -/turf/simulated/floor/lino, -/area/command/chief_steward) -"tTp" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/dockcheck) -"tTs" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"tTw" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod4/station) -"tTy" = ( -/obj/structure/bed/sofa/m/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"tTD" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"tTF" = ( -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/green/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics/third_deck_storage) -"tTM" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"tTS" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"tTU" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"tTX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"tUc" = ( -/obj/structure/table/rack, -/obj/random/accessory, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"tUi" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Fourth Deck - Port Necelle"; - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"tUj" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - id_tag = "ai_core_pump" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/turret_protected/ai_teleport) -"tUm" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 1; - id_tag = "solar_port_pump" - }, -/obj/machinery/light/small, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"tUx" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"tUB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"tUC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level2) -"tUE" = ( -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"tUF" = ( -/obj/machinery/door/airlock/hatch{ - id_tag = "engine_electrical_maintenance"; - locked = 1; - name = "SMES Access"; - req_access = newlist() - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"tUH" = ( -/obj/structure/catwalk, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 1; - id_tag = "auxair"; - name = "Auxiliary Air Storage Exterior Access Console"; - pixel_y = -20; - req_access = list("ACCESS_ENGINEERING") - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"tUJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"tUS" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 4 - }, -/obj/machinery/camera/network/supply{ - c_tag = "Supply Office - Quartermaster"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"tVb" = ( -/obj/floor_decal/corner/red, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"tVg" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"tVj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/forensic) -"tVm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"tVp" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"tVr" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"tVt" = ( -/obj/floor_decal/spline/plain/black{ - dir = 1 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tVx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"tVD" = ( -/obj/machinery/computer/shuttle_control/explore/exploration_shuttle, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cockpit) -"tVL" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/eva) -"tVN" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"tVV" = ( -/obj/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/structure/bed/chair/office/comfy/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"tWg" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 1; - id_tag = "prototype_controller"; - name = "Fusion Maintenance Access Controller"; - pixel_y = -21; - req_access = list("ACCESS_ENGINE_EQUIP"); - tag_exterior_door = "prototype_exterior"; - tag_interior_door = "prototype_interior" - }, -/obj/machinery/computer/air_control{ - input_tag = "rust_injector"; - name = "R-UST Gas Injection Controls"; - sensor_name = "Fusion Chamber"; - sensor_tag = "rust_sensor"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"tWh" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - id_tag = "escape_pod_7_berth"; - name = "escape pod seven berth controller"; - pixel_x = -32; - pixel_y = 21; - tag_door = "escape_pod_7_berth_hatch"; - frequency = 1380 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralstarboard) -"tWj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"tWs" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/turf/simulated/floor/carpet, -/area/vacant/dormintories) -"tWx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/heads/captain/secret_room/level_one) -"tWK" = ( -/obj/structure/cryofeed, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"tWT" = ( -/obj/machinery/door/airlock/research{ - dir = 4; - name = "Robotics Laboratory"; - req_access = newlist() - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"tWV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - autoset_access = 0; - dir = 4; - frequency = 1331; - id_tag = "guppy_shuttle_outer"; - name = "Guppy External Access"; - req_access = list("ACCESS_GUPPY") - }, -/obj/machinery/door/blast/regular{ - id_tag = "guppy_hatch"; - name = "Rear Hatch" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/button/blast_door{ - id_tag = "guppy_hatch"; - name = "Rear Hatch Control"; - req_access = list("ACCESS_GUPPY"); - pixel_x = 25; - pixel_y = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"tWW" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"tXc" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/lapvend, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/equipment) -"tXe" = ( -/obj/structure/catwalk, -/turf/simulated/open, -/area/space) -"tXg" = ( -/obj/floor_decal/corner/grey/border{ - dir = 10 - }, -/obj/structure/table/glass, -/obj/item/towel/random, -/obj/item/storage/box/detergent, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/old_tile, -/area/crew_quarters/head) -"tXi" = ( -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/green, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"tXm" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"tXp" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"tXG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"tXL" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/machinery/light/spot, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"tXM" = ( -/obj/structure/iv_stand, -/obj/structure/roller_bed, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"tXS" = ( -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell3) -"tXW" = ( -/obj/floor_decal/corner/grey/full, -/obj/structure/reagent_dispensers/water_cooler{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"tXY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"tXZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/holocontrol) -"tYr" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/utility) -"tYE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/engine_room) -"tYF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"tYJ" = ( -/obj/structure/table/woodentable_reinforced/ebony, -/obj/item/device/flashlight/lamp{ - pixel_y = 13; - pixel_x = -3 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/storage/fancy/smokable/trident{ - pixel_y = -2; - pixel_x = -5 - }, -/obj/item/flame/lighter/zippo{ - pixel_y = 8; - pixel_x = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa/high_sec) -"tYV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"tYX" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/closet/shipping_wall/filled{ - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"tZc" = ( -/obj/paint_stripe/red, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/door/blast/shutters/open{ - name = "Brig's visiting room shutters"; - id_tag = "visiting_room_windows_shutters" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/turf/simulated/floor/plating, -/area/security/prison) -"tZj" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway) -"tZs" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hardstorage) -"tZt" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hydroponics) -"tZw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"tZC" = ( -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"tZE" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/tank{ - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "o21p_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d3starboard) -"tZF" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/port) -"tZJ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/medical/mortus{ - dir = 4; - name = "Chapel" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"tZT" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Infrimary - Staging"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/ward) -"tZZ" = ( -/obj/machinery/shieldwallgen, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"uao" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/industrial/danger/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"uat" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"uau" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/table/glass, -/obj/item/device/scanner/health, -/obj/item/storage/fancy/vials, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"uav" = ( -/obj/structure/table/rack, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/obj/item/clothing/mask/breath/emergency, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"uaD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/port) -"uaK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"uaL" = ( -/obj/random/obstruction, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"uaM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"uaO" = ( -/obj/floor_decal/corner/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"uaP" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/random/junk, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"uaQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"uaS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"uaW" = ( -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ubk" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood{ - icon_state = "wood_broken4" - }, -/area/maintenance/firstdeck/forestarboard) -"ubm" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"ubp" = ( -/turf/simulated/wall/r_wall/hull, -/area/space) -"ubr" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"ubB" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"ubG" = ( -/obj/item/stack/material/wood/walnut{ - amount = 2 - }, -/turf/simulated/floor/carpet, -/area/vacant/gambling) -"ubH" = ( -/obj/machinery/door/window/brigdoor/northleft{ - dir = 4; - req_access = list("ACCESS_TOXINS"); - name = "Test Chamber"; - autoset_access = 0 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/blast/regular/open{ - id_tag = "misclab"; - name = "Test Chamber Blast Doors"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"ubP" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/airlock_canisters) -"ucf" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/photocopier, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"uci" = ( -/obj/structure/table/marble, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/reagent_temperature, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"uco" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftport) -"ucp" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/drinks/teapot{ - pixel_x = 4; - pixel_y = 16 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"ucs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/foreport) -"ucu" = ( -/obj/structure/closet/crate/radiation, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"ucx" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"ucy" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"ucE" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_north = 1; - tag_south = 2; - tag_west = 8 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"ucQ" = ( -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ucR" = ( -/obj/random/trash, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"ucT" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/ward) -"ucV" = ( -/obj/floor_decal/industrial/traffic{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ucW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Fourth Deck - Starbound Necelle" - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"ucY" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"uda" = ( -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"udc" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"udn" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe) -"udr" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"udy" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"udF" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/wallframe_spawn/reinforced/polarized/full{ - id = "hop_windows" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/hop) -"udI" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"udJ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/tech) -"udP" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/prison) -"udR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"uea" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for the engine radiator viewport shutters."; - dir = 8; - id_tag = "EngineRadiatorViewport"; - name = "Engine Radiator Viewport Shutters"; - pixel_x = 25; - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"ueh" = ( -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"uek" = ( -/obj/machinery/portable_atmospherics/canister/empty, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"uel" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/fourthdeck/center) -"uem" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"ueq" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"uet" = ( -/obj/machinery/light, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/turretid/stun{ - pixel_y = -32; - name = "Maintenance turret control panel" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/turret_protected/ai_maint) -"uew" = ( -/obj/floor_decal/spline/fancy/wood/corner, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"ueK" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "petrov_shuttle_sensor"; - pixel_x = -24; - pixel_y = 12 - }, -/obj/machinery/oxygen_pump{ - pixel_y = 32 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - id_tag = "petrov_shuttle_pump" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/petrov/airlock) -"ueY" = ( -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/foreport) -"ufa" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"ufg" = ( -/obj/machinery/atmospherics/valve{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"ufm" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"ufo" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/office) -"ufy" = ( -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/obj/structure/sign/nanotrasen{ - dir = 8 - }, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/cargo_l) -"ugb" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 4; - id_tag = "eng4"; - name = "First Deck Port Nacelle Access"; - pixel_x = -20; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/high/critical{ - pixel_y = -24; - name = "south bump" - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"ugd" = ( -/obj/machinery/door/blast/regular/escape_pod{ - id_tag = "escape_pod_10" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/maintenance/exterior) -"ugw" = ( -/obj/machinery/door/airlock/research{ - dir = 4; - name = "Robotics Laboratory"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/machinery/holosign/surgery{ - dir = 1; - id_tag = "robosurg" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"ugG" = ( -/obj/machinery/cryopod, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod5/station) -"ugK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/meter, -/obj/paint/black, -/turf/simulated/wall/ocp_wall, -/area/maintenance/incinerator) -"ugM" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 9 - }, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"ugQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"ugW" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"uhk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d3port) -"uhv" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/tank/air{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod4/station) -"uhC" = ( -/obj/floor_decal/corner/red{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1; - target_pressure = 40 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"uhD" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - dir = 1; - name = "Internal Affairs Agent Maintaince"; - secured_wires = 1; - hackProof = 1; - ai_control_disabled = 1 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/iaa) -"uhE" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"uhJ" = ( -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/xenobiology/storage2) -"uhR" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/structure/railing/mapped{ - dir = 1; - icon_state = "railing0-1" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"uhW" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"uhY" = ( -/obj/structure/window/basic{ - dir = 1 - }, -/obj/random/ironing_board_structure, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"uib" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"uim" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - c_tag = "Longterm - Hydroponics"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"uiv" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/sign/poster{ - pixel_x = -32 - }, -/obj/structure/closet/bombclosetsecurity, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/suits) -"uiA" = ( -/obj/machinery/conveyor{ - id = "packageSort1"; - dir = 1 - }, -/obj/structure/plasticflaps/airtight, -/turf/simulated/floor/plating, -/area/quartermaster/office/post) -"uiB" = ( -/obj/machinery/hologram/holopad{ - pixel_x = 16; - pixel_y = 16 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"uiC" = ( -/obj/structure/railing/mapped, -/obj/machinery/camera/network/research{ - c_tag = "Xenobio - aqua chamber" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/water_cell) -"uiE" = ( -/obj/item/storage/box/cups, -/obj/floor_decal/spline/fancy/black, -/obj/structure/table/standard, -/obj/machinery/light/spot, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/prison) -"uiJ" = ( -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"uiQ" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 6 - }, -/obj/machinery/computer/modular/preset/cardslot/command_eng{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"ujc" = ( -/obj/structure/catwalk, -/obj/structure/ladder/up, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ujk" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lightgrey/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/lightgrey/bordercorner2, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"ujt" = ( -/obj/structure/table/rack, -/obj/item/stock_parts/console_screen, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech) -"uju" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 1 - }, -/obj/structure/bed/chair/office/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/suplocker_room) -"ujv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"ujx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1port) -"ujy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"ujE" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/bed/chair/padded/yellow{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"ujN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"ujZ" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/item/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"ukd" = ( -/obj/structure/railing/mapped, -/obj/random/vendor/contraband/maintenance{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"uke" = ( -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"ukj" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d3starboard) -"ukl" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - id = "o22p_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d3port) -"ukn" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"ukq" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"ukv" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"ukw" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"ukA" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"ukG" = ( -/obj/structure/table/standard, -/obj/floor_decal/corner/paleblue, -/obj/item/flora/pottedplantsmall/leaf{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"ukQ" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/rnd/xenobiology/xenoflora) -"ukT" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe) -"ukV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/bluespace) -"ukZ" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/corner/red/bordercorner2, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/item/camera_assembly, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"ulg" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"uli" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/bluespace/chamber) -"ult" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"ulv" = ( -/obj/floor_decal/corner/purple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"ulw" = ( -/obj/machinery/shield_diffuser, -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_11_berth_hatch"; - name = "Escape Pod Eleven" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralport) -"uly" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"ulA" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/machinery/light/spot, -/obj/floor_decal/corner/darkblue/border{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"ulB" = ( -/obj/machinery/air_sensor/nacelle/third/oxygen, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d1starboard) -"ulC" = ( -/obj/structure/closet/emcloset, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/firstdeck/foreport) -"ulE" = ( -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"ulM" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftport) -"ulQ" = ( -/obj/machinery/suit_storage_unit/science, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"ulS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"ulT" = ( -/obj/machinery/seed_extractor, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"ulW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/forensic) -"ulX" = ( -/obj/floor_decal/corner/red, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"uma" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/maintenance{ - autoset_access = 0; - name = "Dormitory Maintenance"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/south) -"umm" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"umo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"ums" = ( -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"umw" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"umI" = ( -/obj/random/vendor{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/lime/border{ - dir = 10 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"umT" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/center) -"umU" = ( -/obj/machinery/flasher{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"una" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"une" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/civilian{ - dir = 8; - name = "Holodeck" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/holocontrol) -"ung" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"uni" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/down, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "32-2"; - d1 = 32 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/turf/simulated/open, -/area/maintenance/seconddeck/starboard) -"unm" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/foreport) -"unn" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/firstdeck/foreport) -"unp" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"uns" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"unu" = ( -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"unx" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"unF" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"unH" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/substation/bridgedeck) -"unN" = ( -/obj/structure/grille, -/obj/floor_decal/corner/yellow/border{ - dir = 5 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"unU" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"unX" = ( -/turf/simulated/floor/tiled, -/area/maintenance/firstdeck/aftstarboard) -"uod" = ( -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"uoi" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"uoA" = ( -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#4c535b" - }, -/area/quartermaster/hangar/upper) -"uoB" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/security) -"uoD" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cargo_r) -"uoG" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"uoH" = ( -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d1port) -"uoI" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"uoJ" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"uoK" = ( -/obj/wallframe_spawn/reinforced, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/rnd/servers) -"uoL" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"uoM" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"uoZ" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"uph" = ( -/obj/machinery/door/blast/regular/escape_pod{ - dir = 8; - id_tag = "escape_pod_5" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/maintenance/firstdeck/foreport) -"upm" = ( -/obj/structure/railing/mapped, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"upq" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"upr" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"ups" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/vendor/contraband/maintenance{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"upE" = ( -/obj/item/stool/bar/padded, -/obj/floor_decal/corner/red{ - dir = 10 - }, -/obj/floor_decal/corner/red{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/cafe) -"upI" = ( -/obj/machinery/air_sensor{ - id_tag = "h2_sensor" - }, -/turf/simulated/floor/reinforced/hydrogen, -/area/engineering/atmos) -"upK" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 8 - }, -/obj/machinery/air_sensor/nacelle/first, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - injecting = 1; - use_power = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d3starboard) -"upM" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"upN" = ( -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/obj/random/drinkbottle, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"upO" = ( -/obj/machinery/computer/shuttle_control{ - dir = 4; - shuttle_tag = "Petrov"; - req_access = list("ACCESS_PETROV_HELM") - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/cockpit) -"upT" = ( -/obj/structure/towel/black{ - pixel_y = -12 - }, -/obj/structure/hygiene/toilet, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"upY" = ( -/obj/structure/table/standard, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/maintenance/abandoned_hydroponics) -"uqa" = ( -/obj/machinery/portable_atmospherics/canister/chlorine, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins/storage) -"uqd" = ( -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"uqg" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/floor_decal/corner/red/bordercee{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"uql" = ( -/obj/floor_decal/corner/purple, -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"uqm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"uqr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external/bolted/cycling{ - frequency = 1380; - id_tag = "centcom_shuttle_dock_inner"; - name = "Docking Port Airlock" - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/docking) -"uqy" = ( -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"uqC" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/corner/black/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"uqE" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/locker) -"uqJ" = ( -/obj/structure/table/steel, -/obj/item/storage/box/condimentbottles, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"uqL" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/disposalpipe/up{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"uqZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/artifact_harvester, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/scan) -"ura" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow, -/obj/machinery/power/tracker, -/turf/simulated/floor/reinforced, -/area/solar/bridge_port) -"urd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"urq" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins/storage) -"urs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"urv" = ( -/obj/floor_decal/corner/grey_alt{ - dir = 10 - }, -/obj/machinery/button/holosign{ - dir = 1; - id_tag = "robosurg"; - pixel_x = -6; - pixel_y = -21 - }, -/obj/machinery/button/windowtint{ - dir = 1; - id = "robotics_surgery"; - pixel_x = 6; - pixel_y = -21 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/external_cooling_device, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"urw" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - id_tag = "cedoor"; - name = "Chief Engineer"; - req_access = newlist(); - secured_wires = 1; - stripe_color = "#ffbf00" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/heads/office/ce) -"urz" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/multi_tile/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftstarboard) -"urE" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/fore) -"urH" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"urK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access = list("ACCESS_SEC_DOORS"); - autoset_access = 0; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"urR" = ( -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - c_tag = "Xenobiology - Lower - Containment Aft"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"usb" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"usc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"usl" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/shuttle_control/lift/medical, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"usp" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24; - req_access = list(list("ACCESS_ATMOS","ACCESS_ENGINE_EQUIP","ACCESS_GUPPY")) - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_ridged, -/area/guppy_hangar/start) -"usr" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - dir = 4; - name = "Adjutants Room" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"usv" = ( -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/cable/green, -/obj/paint_stripe/red, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized{ - id = "cadetwindow" - }, -/turf/simulated/floor/plating, -/area/security/range) -"usx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"usD" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"usG" = ( -/obj/machinery/suit_cycler/medical/alt, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"usI" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"usQ" = ( -/obj/machinery/jukebox/custom_tape/old, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"usS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"usU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/forensic) -"utb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/glass/research{ - dir = 8; - id_tag = "PetrovAccess"; - name = "Petrov Access" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/airlock) -"utn" = ( -/turf/simulated/wall/r_wall/hull, -/area/medical/virology/lab) -"utv" = ( -/obj/structure/railing/mapped, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"utC" = ( -/obj/machinery/power/smes/batteryrack, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"utD" = ( -/obj/floor_decal/corner/black/three_quarters{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue/bordercorner, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"utF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft) -"utP" = ( -/obj/floor_decal/industrial/traffic/corner{ - dir = 4 - }, -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"utW" = ( -/obj/machinery/vending/cigarette{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/lime/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/holocontrol) -"utX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - dir = 4; - id_tag = "toxin_lab_access"; - name = "Toxin Lab Access Console"; - req_access = list("ACCESS_TOX_STORAGE"); - pixel_x = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"uuA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"uuL" = ( -/obj/machinery/door/firedoor, -/obj/random/obstruction, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/vacant/infirmary) -"uuS" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/accessory, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"uuV" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"uvj" = ( -/obj/machinery/radiocarbon_spectrometer, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/ship) -"uvl" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/disposal/deliveryChute, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/reinforced, -/area/exploration_shuttle/airlock) -"uvx" = ( -/obj/structure/railing/mapped{ - dir = 1; - color = "#b19664"; - init_color = "#b19664" - }, -/obj/structure/railing/mapped{ - dir = 4; - init_color = "#b19664"; - color = "#b19664" - }, -/turf/simulated/open, -/area/hallway/primary/thirddeck/central_stairwell) -"uvE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"uvJ" = ( -/obj/floor_decal/industrial/hatch/red, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery) -"uvK" = ( -/obj/structure/catwalk, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"uvV" = ( -/obj/machinery/organ_printer/flesh/mapped, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery) -"uvY" = ( -/obj/item/stool, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/solar/bridge_starboard) -"uwd" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/foreport) -"uwf" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/science{ - name = "Exploration Storage" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"uwh" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"uwk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"uwl" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - dir = 1; - id_tag = "calypso_shuttle_pump" - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/exploration_shuttle/airlock) -"uwr" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/folder/envelope/preset/captain, -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"uwx" = ( -/obj/structure/table/standard, -/obj/item/storage/box/cups, -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = 28 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/floor_decal/corner/black/half{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"uwA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/sortjunction{ - dir = 1; - name = "Expedition Leader's Office"; - sort_type = "Expedition Leader's Office" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"uwC" = ( -/obj/machinery/telecomms/processor/preset_two, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"uwG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"uwI" = ( -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/closet/walllocker{ - pixel_x = 28 - }, -/obj/item/reagent_containers/food/snacks/proteinbar, -/obj/item/reagent_containers/food/snacks/proteinbar, -/obj/item/reagent_containers/food/snacks/proteinbar, -/obj/item/reagent_containers/food/snacks/proteinbar, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/reagent_containers/food/drinks/cans/waterbottle, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/armory) -"uwR" = ( -/obj/floor_decal/ntlogo{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"uwY" = ( -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"uxa" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"uxd" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"uxe" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/storage) -"uxg" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"uxi" = ( -/obj/structure/girder, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/crew_quarters/sauna) -"uxj" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/random/maintenance, -/obj/machinery/light_construct{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"uxl" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"uxm" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Armory"; - req_access = newlist(); - dir = 4 - }, -/obj/floor_decal/industrial/hatch/grey, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/sierra/sergeant) -"uxr" = ( -/obj/random/obstruction, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"uxv" = ( -/obj/machinery/chemical_dispenser/full, -/obj/floor_decal/corner/beige{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/item/device/radio/intercom/department/medbay{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"uxx" = ( -/obj/floor_decal/corner/lime/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/fore) -"uxy" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/holocontrol) -"uxB" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"uxN" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/floor_decal/corner/green/half{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"uxP" = ( -/obj/machinery/sleeper/survival_pod{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/machinery/pager/medical{ - name = "Call Medics button"; - pixel_y = 24 - }, -/obj/structure/sign/emergonly{ - dir = 4; - pixel_x = -32 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/maintenance_equipstorage) -"uxQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/foreport) -"uyd" = ( -/obj/structure/lattice, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/cable{ - d1 = 32; - icon_state = "32-1" - }, -/obj/machinery/atmospherics/pipe/zpipe/down/fuel, -/turf/simulated/open, -/area/maintenance/firstdeck/aftstarboard) -"uyf" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"uyB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"uyI" = ( -/obj/structure/table/standard, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/item/storage/box/cups, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Devlab"; - dir = 1 - }, -/obj/item/device/science_tool, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/development) -"uyK" = ( -/obj/structure/lattice, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/open, -/area/space) -"uyP" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/hull, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"uyQ" = ( -/obj/structure/sign/warning/high_voltage, -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/iaa) -"uzc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - target_pressure = 3500 - }, -/obj/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"uzk" = ( -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"uzm" = ( -/obj/machinery/floodlight{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"uzq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"uzw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"uzC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/meter, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"uzD" = ( -/obj/machinery/washing_machine, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/laundry) -"uzI" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/regular/open{ - id_tag = "xenobioa3"; - name = "Containment Blast Doors" - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level2) -"uzL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"uzM" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"uzR" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/brown/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 9 - }, -/obj/structure/bed/chair/padded/brown{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"uzU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/full, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftstarboard) -"uzY" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftport) -"uAb" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/obj/structure/sign/nanotrasen{ - dir = 1 - }, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/power) -"uAd" = ( -/obj/decal/cleanable/dirt, -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/machinery/light_construct, -/obj/floor_decal/spline/fancy/wood, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"uAg" = ( -/obj/machinery/door/airlock/glass/command{ - name = "E.V.A."; - req_access = newlist(); - secured_wires = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"uAj" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "briefing_windows" - }, -/turf/simulated/floor/plating, -/area/bridge/marine_room) -"uAo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - dir = 4; - name = "Bridge Access"; - id_tag = "bridge_hallway_doors_port" - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lob_bridge_lock" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/hallway) -"uAp" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"uAv" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/fourthdeck) -"uAB" = ( -/obj/structure/bed/chair/pew, -/obj/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/actor/stage) -"uAC" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"uAJ" = ( -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"uAN" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"uAU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1starboard) -"uAY" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/fore) -"uAZ" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 15 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"uBb" = ( -/obj/structure/closet/hydrant{ - pixel_y = -28 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"uBf" = ( -/obj/machinery/computer/modular/preset/security{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory) -"uBi" = ( -/obj/machinery/vending/coffee{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge/upper) -"uBj" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"uBB" = ( -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"uBD" = ( -/obj/machinery/door/airlock/civilian{ - id_tag = "toilet_eng_2"; - name = "Toilet"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head/deck3) -"uBE" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/bridgedeck/aft) -"uBI" = ( -/obj/structure/iv_stand, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/maintenance_equipstorage) -"uBS" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 32 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/machinery/vending/security, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"uBX" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"uBY" = ( -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/thirddeck/center) -"uCg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/external{ - autoset_access = 0; - frequency = 1331; - id_tag = "guppy_shuttle_inner"; - name = "Guppy Internal Access"; - req_access = list("ACCESS_GUPPY") - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"uCk" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"uCl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/civilian{ - name = "Actor's Room" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/actor) -"uCq" = ( -/obj/machinery/atmospherics/omni/mixer{ - tag_east = 2; - tag_north = 1; - tag_north_con = 0.33; - tag_south = 1; - tag_south_con = 0.33; - tag_west = 1; - tag_west_con = 0.34 - }, -/obj/machinery/button/ignition{ - id_tag = "toxlab_petrov"; - pixel_y = -23; - pixel_x = 6 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"uCr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"uCw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell3) -"uCy" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Bridge Checkpoint"; - autoset_access = 0; - req_access = list("ACCESS_SEC_DOORS") - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/regular/lockdown{ - id_tag = "lob_bridge_lock" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/lobby) -"uCB" = ( -/turf/simulated/wall/prepainted, -/area/vacant/infirmary) -"uCK" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - id_tag = "BSD_windows"; - name = "Bluespace Chamber Lockdown" - }, -/turf/simulated/floor/plating, -/area/engineering/bluespace/chamber) -"uCN" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"uCO" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple/bordercorner, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"uCT" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/chapel/main) -"uCW" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/engineering/engine_room) -"uDc" = ( -/obj/structure/table/woodentable/walnut, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - pixel_y = 3; - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"uDo" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"uDp" = ( -/obj/structure/closet/crate, -/obj/item/storage/belt/utility, -/obj/item/stack/cable_coil, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"uDG" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/door/window/southleft{ - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "xenobio1"; - name = "Containment Blast Doors" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"uDK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"uDL" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"uDN" = ( -/obj/structure/largecrate, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"uDO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"uDT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"uDW" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/storage/tech/high_risk) -"uDZ" = ( -/obj/structure/flora/pottedplant/thinbush, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lightgrey/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"uEb" = ( -/obj/structure/closet/crate, -/obj/item/stack/material/phoron/fifty, -/obj/item/stack/material/phoron/fifty, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"uEh" = ( -/obj/machinery/atmospherics/valve{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/rnd/xenobiology/xenoflora) -"uEk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/bed/chair/padded/red{ - dir = 8 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"uEl" = ( -/obj/machinery/bodyscanner, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/sign/warning/nosmoking_1{ - dir = 8; - pixel_x = 32; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/staging) -"uEn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"uEp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/starboard) -"uET" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/maintenance/bridgedeck/starboard) -"uFc" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"uFe" = ( -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"uFk" = ( -/obj/floor_decal/carpet/purple, -/turf/simulated/floor/carpet/purple, -/area/chapel/office) -"uFw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"uFL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level1) -"uFR" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "mining_internal" - }, -/turf/simulated/floor, -/area/quartermaster/hangar) -"uFT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/sleep/bunk) -"uGe" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/mortus{ - dir = 4; - name = "Chapel Morgue" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"uGf" = ( -/obj/floor_decal/corner/black/border{ - dir = 6 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"uGm" = ( -/obj/floor_decal/corner/black/mono, -/obj/structure/bed/chair/rounded/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"uGq" = ( -/obj/structure/towel/black{ - pixel_y = 18 - }, -/obj/structure/hygiene/toilet{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"uGu" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tcommsat/storage) -"uGv" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"uGw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"uGz" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_r) -"uGA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/hallway) -"uGD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/mining{ - name = "Delivery Office"; - req_access = newlist() - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office/post) -"uGF" = ( -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/greengrid, -/area/engineering/gravitaional_generator) -"uGI" = ( -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor/stage) -"uGJ" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/barrier, -/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ - RCon_tag = "Substation - Fusion Generator" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"uGK" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/structure/sign/warning/compressed_gas{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"uGM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"uGN" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"uGS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"uGT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"uGY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/valve/shutoff/supply{ - name = "supply valve to Deck 4, Hangar" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"uHd" = ( -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/fore) -"uHi" = ( -/obj/item/reagent_containers/glass/bucket, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/cistern) -"uHj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/button/alternate/door/bolts{ - dir = 4; - id_tag = "toilet1"; - name = "Lock"; - pixel_x = -24 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head) -"uHw" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"uHB" = ( -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/obj/random/cash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"uHE" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"uHG" = ( -/obj/floor_decal/corner/red, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/third_deck{ - c_tag = "Third Deck - Bar - Entry"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"uHH" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory) -"uHL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"uHQ" = ( -/obj/structure/closet/crate, -/obj/random/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"uHU" = ( -/obj/machinery/air_sensor/nacelle/third/co2, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d1starboard) -"uHX" = ( -/obj/structure/table/steel, -/turf/simulated/floor/wood/walnut{ - icon_state = "walnut_broken5" - }, -/area/vacant/bar) -"uHZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"uIc" = ( -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - dir = 1; - color = "#8c911d" - }, -/obj/structure/railing/mapped{ - dir = 4; - init_color = "#8c911d"; - color = "#8c911d" - }, -/turf/simulated/floor/plating, -/area/rnd/misc_lab) -"uIe" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"uIk" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"uIl" = ( -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"uIp" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"uIr" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 4; - frequency = 1380; - id_tag = "petrov_shuttle_airlock"; - pixel_x = -24; - req_access = list("ACCESS_PETROV_HELM"); - tag_airpump = "petrov_shuttle_pump"; - tag_chamber_sensor = "petrov_shuttle_sensor"; - tag_exterior_door = "petrov_shuttle_outer"; - tag_interior_door = "petrov_shuttle_inner" - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"uIu" = ( -/obj/structure/bed/sofa/r/teal{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Personnel - Recreation"; - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/office) -"uIv" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/structure/sign/deck/bridge{ - pixel_y = 35 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"uIA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Cell Three"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"uIC" = ( -/obj/machinery/cryopod, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo) -"uIE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"uIF" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - dir = 4; - name = "Emergency Exit"; - id_tag = "guppy_emergency_exit" - }, -/obj/machinery/button/blast_door{ - id_tag = "guppy_emergency_exit"; - name = "Emergency Exit Control"; - req_access = list("ACCESS_GUPPY"); - pixel_y = -24; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"uIG" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"uIL" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/actor/stage) -"uIO" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/bed/padded, -/obj/item/bedsheet/blue, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/south) -"uIP" = ( -/obj/machinery/button/blast_door{ - dir = 4; - id_tag = "bsa_door2"; - name = "Obstruction Field Disperser Blast Door"; - pixel_x = -24; - req_access = list("ACCESS_GUN") - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/structure/railing/mapped{ - init_color = "#aa5f61"; - color = "#aa5f61" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"uIX" = ( -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_upload) -"uIY" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/space, -/area/space) -"uJe" = ( -/obj/machinery/door/airlock/civilian{ - name = "Sauna" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/sauna) -"uJh" = ( -/obj/structure/filingcabinet{ - pixel_x = -10 - }, -/obj/structure/filingcabinet, -/obj/structure/filingcabinet{ - pixel_x = 10 - }, -/obj/item/folder/red{ - pixel_y = 4; - pixel_x = -3 - }, -/obj/item/folder/red{ - pixel_y = 4; - pixel_x = -3 - }, -/obj/item/folder/red{ - pixel_y = 4; - pixel_x = -3 - }, -/obj/item/folder/red{ - pixel_y = 4; - pixel_x = -3 - }, -/obj/item/folder/blue{ - pixel_y = 5; - pixel_x = 5 - }, -/obj/item/folder/blue{ - pixel_y = 5; - pixel_x = 5 - }, -/obj/item/folder/blue{ - pixel_y = 5; - pixel_x = 5 - }, -/obj/item/folder, -/obj/item/folder, -/obj/item/folder/nt, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/iaa/high_sec) -"uJj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/red/bordercorner, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"uJl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"uJo" = ( -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"uJr" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"uJt" = ( -/obj/machinery/atmospherics/unary/heater, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"uJu" = ( -/obj/floor_decal/corner/blue{ - dir = 5 - }, -/obj/machinery/computer/air_control{ - input_tag = "o21p_in"; - name = "Oxygen Supply Control"; - output_tag = "o21p_out"; - sensor_name = "Tank"; - sensor_tag = "ReacEngOxygen1" - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"uJv" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/machinery/sparker{ - id_tag = "engines-3"; - pixel_x = -24 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d1starboard) -"uJz" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "abahyd_blast"; - name = "Space Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/maintenance/abandoned_hydroponics) -"uJF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"uJG" = ( -/obj/floor_decal/corner/black/half, -/obj/floor_decal/corner/red/bordercorner2, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/corner/red/bordercorner, -/obj/structure/closet/walllocker{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"uJR" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/office) -"uJV" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"uJY" = ( -/obj/floor_decal/corner/grey/full, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"uKe" = ( -/obj/machinery/door/blast/regular{ - id_tag = "petrovcell2"; - name = "Test Chamber Blast Doors" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell2) -"uKk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"uKo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"uKq" = ( -/obj/machinery/atmospherics/valve/shutoff/supply, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"uKr" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/command{ - c_tag = "Command - Starboard Hallway Entry" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"uKy" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/maintenance{ - dir = 8; - autoset_access = 0 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/starboard) -"uKz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"uKA" = ( -/obj/item/ore/iron, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"uKL" = ( -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/obj/structure/sign/nanotrasen{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/power) -"uKY" = ( -/obj/machinery/chemical_dispenser/full, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/scan) -"uLa" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"uLi" = ( -/obj/structure/hygiene/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/item/storage/mirror{ - pixel_x = 29 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/heads/captain/secret_room/level_one) -"uLm" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cargo_l) -"uLo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/space) -"uLp" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/brown/bordercorner2{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"uLu" = ( -/obj/floor_decal/spline/fancy/wood/corner, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"uLv" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hydroponics/third_deck_storage) -"uLH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/item/taperoll/engineering/applied, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"uLI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/lime/bordercorner, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"uLR" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/lino, -/area/command/chief_steward) -"uLY" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/floor_decal/corner/red, -/obj/machinery/camera/network/hangar{ - c_tag = "Hangar - Ground Crew Room"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"uMe" = ( -/obj/floor_decal/corner/red/border, -/obj/machinery/light/led/small, -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"uMi" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/test_room) -"uMn" = ( -/obj/structure/closet/secure_closet/guncabinet/sierra_armory/launcher, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"uMs" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"uMt" = ( -/obj/structure/sign/warning/hot_exhaust{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"uMu" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/largecrate, -/obj/random/tool, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"uMF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/catwalk_plated, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/aft) -"uMG" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 8; - name = "Sorting Office"; - sort_type = "Sorting Office" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"uMK" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"uMU" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"uNk" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/structure/bed/chair/armchair/black{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa/high_sec) -"uNn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"uNq" = ( -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "qm_warehouse2"; - name = "Warehouse Shutters" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/storage) -"uNw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"uNx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/sierra/evidence) -"uND" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/structure/bookcase/manuals/xenoarchaeology, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"uNF" = ( -/obj/machinery/recharger/wallcharger{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"uNG" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery/second) -"uNI" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = list(list("ACCESS_SECURITY","ACCESS_FORENSICS")); - secured_wires = 1; - autoset_access = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/security/sierra/dockcheck) -"uNO" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"uNU" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "ai_bridge_airlock"; - pixel_x = 2; - pixel_y = 24; - req_access = list("ACCESS_EXTERNAL"); - tag_airpump = "ai_bridge_pump"; - tag_chamber_sensor = "ai_bridge_sensor"; - tag_exterior_door = "ai_bridge_outer"; - tag_interior_door = "ai_bridge_inner" - }, -/obj/machinery/airlock_sensor{ - id_tag = "ai_bridge_sensor"; - pixel_x = -12; - pixel_y = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - id_tag = "ai_bridge_pump" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"uOc" = ( -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/sierra/hallway) -"uOd" = ( -/obj/structure/table/steel_reinforced, -/obj/floor_decal/corner/darkblue/mono, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/microwave, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"uOe" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/computer/modular/preset/security, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai) -"uOm" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"uOv" = ( -/obj/paint_stripe/red, -/obj/paint/red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod2/station) -"uOw" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"uOQ" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue) -"uOR" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"uOS" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"uOV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"uOX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"uPb" = ( -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - RD Enter" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"uPc" = ( -/obj/structure/closet/secure_closet/engineering_sierra, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/gps, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"uPf" = ( -/obj/shuttle_landmark/escape_pod/start/pod1, -/obj/wallframe_spawn/reinforced/titanium, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/escape_pod1/station) -"uPh" = ( -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/command/bsa) -"uPj" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"uPl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/meter, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"uPn" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/hydrogen, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/shuttlefuel) -"uPo" = ( -/obj/random/closet, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"uPp" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/garden_room) -"uPB" = ( -/obj/decal/cleanable/dirt, -/obj/structure/table/woodentable, -/obj/item/deck/cards, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/green{ - pixel_y = 11 - }, -/obj/item/reagent_containers/food/drinks/cans/coffeecola{ - pixel_y = 11; - pixel_x = 10 - }, -/obj/item/trash/chips{ - pixel_y = 8; - pixel_x = -11 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"uPD" = ( -/obj/item/taperoll/engineering/applied, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"uPM" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"uPQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"uPV" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hydroponics/third_deck_storage) -"uPX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atm{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"uPY" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"uQe" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - id = "o23p_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d1starboard) -"uQl" = ( -/obj/structure/undies_wardrobe, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Actors - Dressing room"; - dir = 8 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor) -"uQp" = ( -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"uQt" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/central_stairwell) -"uQx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation) -"uQE" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/civilian{ - locked = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/taperoll/engineering/applied, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/bar) -"uQF" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/turret_protected/ai) -"uQI" = ( -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/medical/locker) -"uQO" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/hangar_stairs) -"uQR" = ( -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"uQX" = ( -/obj/landmark{ - name = "lightsout" - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/storage/primary) -"uRf" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"uRg" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"uRj" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/airlock) -"uRn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"uRo" = ( -/obj/structure/bookcase/manuals/xenoarchaeology, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"uRw" = ( -/obj/structure/sign/warning/docking_area{ - dir = 1 - }, -/turf/simulated/wall/r_wall/hull, -/area/hallway/primary/fourthdeck/center) -"uRz" = ( -/obj/random/obstruction, -/obj/structure/largecrate, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"uRI" = ( -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"uRL" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/vacant/storage) -"uRR" = ( -/obj/machinery/telecomms/server/presets/security, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"uRY" = ( -/obj/floor_decal/corner/black/border, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hydroponics/third_deck_storage) -"uSa" = ( -/obj/structure/rubble/war, -/obj/structure/rubble/war, -/obj/structure/rubble/war, -/obj/structure/rubble/war, -/obj/structure/rubble/war, -/obj/fluid_mapped, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"uSb" = ( -/obj/item/storage/mirror{ - pixel_x = -1; - pixel_y = 32 - }, -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/obj/floor_decal/industrial/warning, -/obj/decal/cleanable/blood/drip, -/obj/decal/cleanable/blood/splatter, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"uSj" = ( -/obj/machinery/oxygen_pump{ - pixel_x = -32 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/xenoflora) -"uSn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/vacant/gambling) -"uSt" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"uSA" = ( -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor, -/area/quartermaster/hangar) -"uSB" = ( -/obj/machinery/atmospherics/binary/pump/on{ - target_pressure = 200 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"uSJ" = ( -/obj/floor_decal/stairs{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/wood/bamboo{ - name = "stairs" - }, -/area/crew_quarters/garden_room) -"uSS" = ( -/obj/machinery/door/blast/regular{ - id_tag = "petrovcell1"; - name = "Test Chamber Blast Doors" - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell1) -"uSV" = ( -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/machinery/navbeacon/sierra/SD_centralhallway1, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"uTd" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/green/border{ - dir = 6 - }, -/obj/structure/stairs/south, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics/third_deck_storage) -"uTf" = ( -/obj/structure/railing/mapped, -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"uTg" = ( -/obj/structure/sign/nanotrasen{ - dir = 4 - }, -/turf/simulated/wall/r_wall/hull, -/area/vacant/infirmary) -"uTl" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"uTw" = ( -/obj/structure/closet/l3closet/scientist, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - c_tag = "Xenobiology - Lower - Airlock"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry2) -"uTy" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "interrogation_no2_windows" - }, -/turf/simulated/floor/plating, -/area/security/sierra/interrogation/second) -"uTz" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"uTA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/actor/stage) -"uTE" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "bridge_windows" - }, -/obj/structure/cable/green, -/turf/simulated/floor/plating, -/area/bridge) -"uTP" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"uTR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"uTY" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"uUc" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 - }, -/obj/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"uUh" = ( -/obj/structure/table/glass, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/floor_decal/corner/green/mono, -/obj/item/storage/lockbox/vials, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"uUl" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/machinery/computer/modular/preset/aislot/research{ - dir = 4 - }, -/obj/machinery/camera/network/research{ - c_tag = "Xenobiology - Desk"; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"uUH" = ( -/obj/machinery/constructable_frame, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"uUK" = ( -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/light_switch{ - pixel_x = 10; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"uUN" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/camera/network/petrov{ - c_tag = "Petrov - Anomaly Lab" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"uVa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"uVb" = ( -/obj/structure/table/marble, -/obj/machinery/microwave, -/obj/floor_decal/corner/red/diagonal, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"uVi" = ( -/obj/machinery/cryopod{ - dir = 2 - }, -/obj/machinery/computer/cryopod{ - pixel_x = -32 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod11/station) -"uVm" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"uVs" = ( -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/glass, -/obj/item/storage/secure/briefcase, -/obj/floor_decal/spline/fancy/black, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"uVt" = ( -/obj/machinery/button/blast_door{ - dir = 4; - id_tag = "hangar_atmos_storage"; - name = "Storage Door Control"; - pixel_x = -24; - req_access = list(list("ACCESS_HANGAR","ACCESS_ENGINE_EQUIP")) - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar_atmos) -"uVw" = ( -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/suits) -"uVD" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/infirmreception) -"uVF" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 8 - }, -/obj/machinery/air_sensor/nacelle/third, -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 1; - injecting = 1; - use_power = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d1starboard) -"uVJ" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"uVV" = ( -/obj/structure/table/standard, -/obj/random/firstaid, -/obj/machinery/light/small/emergency{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod2/station) -"uWa" = ( -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/green/bordercorner, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod5/station) -"uWf" = ( -/obj/floor_decal/corner/green/half{ - dir = 1 - }, -/obj/machinery/smartfridge/drying_rack, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"uWh" = ( -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"uWi" = ( -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"uWj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/gym) -"uWs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "firingspace"; - name = "Firing Range Shields" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/paint_stripe/red, -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/security/range) -"uWu" = ( -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/head) -"uWA" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/spline/fancy/wood, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"uWB" = ( -/obj/floor_decal/corner/green/bordercee{ - dir = 1 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"uWD" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"uWK" = ( -/obj/landmark{ - name = "carpspawn" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/open, -/area/space) -"uWM" = ( -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"uWO" = ( -/obj/machinery/door/firedoor, -/obj/paint_stripe/red, -/obj/wallframe_spawn/reinforced/polarized{ - id = "hos_windows" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/hos) -"uWS" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/bridgedeck/center) -"uXb" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/obj/item/stool/wood, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/breakroom) -"uXj" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"uXm" = ( -/obj/structure/cable/yellow, -/obj/machinery/power/solar_control{ - id = "auxsolarbridge"; - name = "Bridge Solar Control"; - track = 1 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Solar Control - Bridge Deck - Port"; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/solar/bridge_port) -"uXp" = ( -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"uXq" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/pottedplant/tall, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"uXH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"uXO" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/warning/high_voltage{ - dir = 1; - pixel_y = -32 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/center) -"uXP" = ( -/obj/structure/table/rack, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Robotics Fabricators" - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"uXR" = ( -/obj/structure/sign/warning/high_voltage{ - dir = 8 - }, -/turf/simulated/wall/prepainted, -/area/maintenance/solar/bridge_port) -"uXX" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"uXY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/seconddeck/fore) -"uYf" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"uYl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/obj/wallframe_spawn/reinforced_phoron/hull, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"uYq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_access = newlist() - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"uYs" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/eva) -"uYt" = ( -/obj/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"uYw" = ( -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"uYA" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/heads/captain/secret_room/level_one) -"uYB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/fore) -"uYI" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"uYL" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/aft_stairwell) -"uYM" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/test_room) -"uYP" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/thirddeck/aft_stairwell) -"uYT" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/equipment) -"uYU" = ( -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/power/smes/batteryrack, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/servers) -"uYX" = ( -/obj/structure/table/steel, -/obj/item/paper/monitorkey, -/obj/item/stamp/ce, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"uYY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"uZh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level2) -"uZq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/green/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"uZt" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"uZu" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"uZx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"uZz" = ( -/obj/machinery/ai_status_display, -/turf/simulated/wall/r_wall/prepainted, -/area/hallway/primary/firstdeck/center) -"uZC" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"uZH" = ( -/obj/structure/table/standard, -/obj/item/scalpel/basic, -/obj/item/circular_saw, -/obj/machinery/vending/wallmed2{ - pixel_x = 24; - pixel_y = 1; - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"uZJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 4 - }, -/obj/floor_decal/corner/grey{ - dir = 10 - }, -/obj/machinery/computer/air_control{ - dir = 1; - input_tag = "CO23p_in"; - name = "Propellent Supply Control"; - output_tag = "CO23p_out"; - sensor_name = "Tank"; - sensor_tag = "ReacEngCO23" - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"uZL" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"uZT" = ( -/obj/paint_stripe/blue, -/obj/paint/dark_gunmetal, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/cargo_r) -"uZU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lightgrey/border, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"uZW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "firingspace"; - name = "Firing Range Shields" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/paint_stripe/red, -/obj/wallframe_spawn/reinforced, -/turf/simulated/floor/plating, -/area/security/range) -"vaa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"vab" = ( -/obj/floor_decal/carpet, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/crew_quarters/cafe/upper) -"vah" = ( -/obj/structure/closet/crate/radiation_gear, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"vas" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"vau" = ( -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"vaw" = ( -/obj/structure/catwalk, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar/upper) -"vaA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"vaD" = ( -/obj/structure/stairs/north, -/turf/simulated/floor/tiled/techfloor/grid, -/area/assembly/robotics) -"vaF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"vaH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/civilian{ - dir = 4; - name = "Observatory" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/dungeon_master_lounge) -"vaI" = ( -/obj/structure/table/steel_reinforced, -/obj/item/storage/box/armband/engine, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"vaJ" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - sort_type = "Research and Development"; - name = "Research and Development" - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"vaO" = ( -/turf/simulated/wall/prepainted, -/area/rnd/locker) -"vaQ" = ( -/obj/floor_decal/corner/darkblue, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"vaT" = ( -/obj/machinery/atmospherics/binary/pump/on{ - name = "Scrubber to Waste"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/virology/atmos) -"vbe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/space_heater, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"vbg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "specops_dock"; - pixel_x = 32; - pixel_y = 21; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"vbh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/entry) -"vbi" = ( -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "sierra_surgery2" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/surgery/second) -"vbj" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/suits) -"vbl" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"vbm" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/obj/structure/closet/crate, -/obj/random/junk, -/obj/random/junk, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/foreport) -"vbs" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"vbG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"vbQ" = ( -/obj/structure/table/standard, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/camera/network/command{ - c_tag = "Command - Teleporter"; - dir = 1 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"vbR" = ( -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"vbU" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"vbV" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/scan) -"vcd" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/iaa/cobed) -"vcg" = ( -/obj/structure/closet/crate, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"vcl" = ( -/obj/structure/sign/warning/hot_exhaust, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1port) -"vcm" = ( -/obj/structure/closet/emcloset, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/holocontrol) -"vcn" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"vco" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/flora/pottedplant/smalltree, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"vcq" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "Skynet_launch"; - name = "Mech Bay"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/monotile, -/area/assembly/chargebay) -"vcv" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"vcz" = ( -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"vcA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/aft) -"vcB" = ( -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"vcH" = ( -/obj/structure/railing/mapped, -/obj/machinery/body_scanconsole{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"vcI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/corner, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"vcJ" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/seats_place) -"vcO" = ( -/obj/machinery/door/airlock/command{ - dir = 1; - id_tag = "pmdoor"; - name = "Head of Personnel Maintaince"; - secured_wires = 1; - stripe_color = "#b7f27d" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/heads/office/hop) -"vcQ" = ( -/obj/floor_decal/corner/grey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"vcS" = ( -/obj/structure/bed/sofa/m/black{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/carpet/green, -/area/crew_quarters/cafe) -"vcT" = ( -/obj/floor_decal/corner/darkblue/full, -/obj/floor_decal/corner/black/half{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/item/folder/blue, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"vcZ" = ( -/obj/machinery/uniform_vendor{ - dir = 4; - icon_state = "robotics" - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/central_stairwell) -"vdd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"vdh" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/bluespace/chamber) -"vdj" = ( -/obj/machinery/door/window/brigdoor/westleft{ - req_access = newlist(); - id_tag = "iaaright"; - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"vdr" = ( -/obj/floor_decal/corner/grey/diagonal, -/obj/structure/closet/secure_closet/explorer/engineer, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/clothing/gloves/insulated, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration) -"vdu" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/forestarboard) -"vdv" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/full, -/obj/structure/table/steel, -/obj/item/storage/toolbox/electrical, -/obj/item/clothing/gloves/insulated, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shield/thirddeck) -"vdx" = ( -/obj/floor_decal/spline/fancy/black/corner{ - dir = 8 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"vdz" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/interrogation) -"vdA" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/xenobiology/storage2) -"vdC" = ( -/obj/item/device/radio/intercom/locked/ai_private{ - pixel_y = 22 - }, -/obj/machinery/flasher{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai) -"vdE" = ( -/obj/machinery/air_sensor/nacelle/fourth/oxygen, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d1port) -"vdI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/corner/darkblue/mono, -/obj/structure/filingcabinet/wallcabinet{ - pixel_y = 30 - }, -/obj/structure/table/steel_reinforced, -/obj/item/device/taperecorder, -/obj/item/device/toner, -/obj/item/device/toner, -/obj/item/device/toner, -/obj/item/device/toner, -/obj/item/device/toner, -/obj/item/device/tape, -/obj/item/device/tape, -/obj/item/device/tape, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"vdJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"vdL" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"vdS" = ( -/obj/item/stool, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"vdU" = ( -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"vdV" = ( -/obj/machinery/air_sensor{ - id_tag = "containment_sensor" - }, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"vdW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"vdZ" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sauna) -"vec" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"veg" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/random/maintenance, -/obj/random/single/playing_cards, -/obj/machinery/door/window/westleft{ - name = "Commissary rack"; - req_access = newlist() - }, -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"vek" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"vem" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"ves" = ( -/obj/structure/table/steel, -/obj/structure/bedsheetbin, -/obj/structure/sign/poster/nyc/space_escort{ - pixel_y = 32 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/sleep/bunk) -"vez" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"veC" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"veV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"veY" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway/aft) -"vfb" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/storage/primary) -"vfj" = ( -/obj/machinery/pipedispenser, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"vfn" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/northright{ - name = "Excavation suit storage"; - req_access = newlist() - }, -/obj/item/rig/industrial/equipped, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition/storage) -"vfs" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"vfy" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lightgrey/border, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"vfC" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"vfD" = ( -/obj/item/modular_computer/telescreen/preset/engineering{ - pixel_y = 26 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_sierra/junior, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"vfI" = ( -/obj/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/empty, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"vfK" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"vfQ" = ( -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/corner/orange/diagonal, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/sign/warning/high_voltage{ - pixel_y = 32; - pixel_x = 32; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/prison) -"vfY" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology - Decontamination"; - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology) -"vgc" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/random/soap, -/obj/item/storage/box/lights/led_neon, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/foreport) -"vgk" = ( -/obj/structure/sign/warning/airlock{ - pixel_y = 32 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"vgl" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/machinery/meter, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/toxins) -"vgm" = ( -/obj/structure/rubble, -/obj/decal/cleanable/dirt, -/obj/random/junk, -/obj/random/junk, -/obj/decal/cleanable/filth, -/obj/decal/cleanable/greenglow, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"vgw" = ( -/obj/structure/table/marble, -/obj/floor_decal/corner/red/diagonal, -/obj/decal/cleanable/cobweb{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"vgx" = ( -/obj/machinery/radiocarbon_spectrometer, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/ship) -"vgF" = ( -/obj/floor_decal/corner/mauve/mono, -/obj/machinery/computer/ship/navigation{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"vgH" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/starboard) -"vgO" = ( -/obj/wallframe_spawn/reinforced/titanium, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/escape_pod5/station) -"vgU" = ( -/obj/machinery/door/airlock/hatch{ - autoset_access = 0; - dir = 4; - name = "Cockpit"; - req_access = list("ACCESS_EXPEDITION_SHUTTLE") - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cockpit) -"vgV" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/corner/paleblue/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/virology{ - name = "Main Patient Ward" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/taperoll/engineering/applied, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology/ward) -"vgW" = ( -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/floor_decal/techfloor/corner, -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/item/device/radio/intercom/locked/ai_private{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"vha" = ( -/obj/floor_decal/corner/red, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"vhj" = ( -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"vho" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"vhv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"vhy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/standard, -/obj/item/paper_bin, -/obj/item/pen, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"vhE" = ( -/obj/machinery/atmospherics/valve/shutoff/supply, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"vhF" = ( -/obj/item/storage/toolbox/mechanical, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftport) -"vhH" = ( -/obj/machinery/door/blast/regular/escape_pod{ - id_tag = "escape_pod_3" - }, -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/foreport) -"vhK" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/aft) -"vhP" = ( -/obj/machinery/seed_storage/garden, -/obj/machinery/button/blast_door{ - id_tag = "abahyd_blast"; - name = "Hydro Blast Door"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled, -/area/maintenance/abandoned_hydroponics) -"vhV" = ( -/obj/random/obstruction, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"vhZ" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"via" = ( -/obj/structure/filingcabinet/chestdrawer{ - dir = 1 - }, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/heads/office/cmo/cobed) -"vif" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"vig" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 8 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod2/station) -"vii" = ( -/obj/structure/sign/warning/high_voltage{ - dir = 1 - }, -/turf/simulated/wall/prepainted, -/area/maintenance/solar) -"vik" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod2/station) -"vio" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"vir" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"vit" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/machinery/disposal/small{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/warning/airlock{ - color = "#ff9900"; - name = "\improper WAY TO SPACE"; - dir = 4; - pixel_x = -32 - }, -/obj/floor_decal/corner/black/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation) -"viv" = ( -/obj/shuttle_landmark/sierra/deck2/guppy, -/turf/space, -/area/space) -"viz" = ( -/obj/structure/bed/chair/armchair/black{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa) -"viI" = ( -/obj/structure/sign/warning/vent_port{ - pixel_y = 32 - }, -/obj/floor_decal/corner/green/bordercorner, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"viJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"viL" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/thirddeck) -"viM" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - name = "Commissary rack"; - req_access = newlist(); - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/floor_decal/corner/black/full, -/obj/floor_decal/industrial/outline/yellow, -/obj/random/single/lighter, -/turf/simulated/floor/tiled, -/area/crew_quarters/commissary) -"viS" = ( -/obj/item/trash/liquidfood, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"viU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"vja" = ( -/turf/simulated/wall/r_wall/hull{ - can_open = 1 - }, -/area/maintenance/firstdeck/foreport) -"vjl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"vjn" = ( -/obj/structure/closet/secure_closet/guncabinet/sierra_armory/ion, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"vjs" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/paint/nt_white, -/obj/machinery/door/firedoor, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"vjt" = ( -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"vjE" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/structure/table/steel_reinforced, -/obj/item/device/binoculars, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/punitelli{ - pixel_y = 11 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"vjF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/airlock) -"vjJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"vjK" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod1/station) -"vjM" = ( -/obj/structure/largecrate, -/obj/random/junkfood, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"vjP" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"vjQ" = ( -/obj/machinery/space_heater, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"vke" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/center) -"vkf" = ( -/obj/structure/table/standard, -/obj/item/device/scanner/reagent, -/obj/item/device/scanner/spectrometer/adv, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/equipment) -"vku" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/structure/table/woodentable_reinforced/ebony, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/paper/sierra, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"vky" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/carpet, -/area/chapel/main) -"vkB" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/docking) -"vkD" = ( -/obj/machinery/door/airlock/mining{ - name = "Supply Office"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/office) -"vkF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"vkI" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/civilian{ - name = "Toilet"; - secured_wires = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/captain/secret_room/level_one) -"vkK" = ( -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/seconddeck/emergency) -"vkL" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/prepainted, -/area/security/sierra/breakroom) -"vkR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"vkV" = ( -/obj/floor_decal/corner/black{ - dir = 10 - }, -/obj/floor_decal/corner/paleblue/border, -/obj/structure/bed/chair/padded/teal{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"vkW" = ( -/obj/machinery/hologram/holopad/longrange, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/random_multi/single_item/space_rabbit, -/obj/structure/handrail{ - dir = 1; - pixel_y = -6 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/seats_place) -"vlb" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/regular/open{ - id_tag = "xenobioa2"; - name = "Containment Blast Doors" - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level2) -"vlh" = ( -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/structure/closet/crate, -/obj/decal/cleanable/cobweb{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"vln" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/lime/border{ - dir = 5 - }, -/obj/structure/sign/warning/pods/east{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"vlq" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/floor_decal/spline/fancy/wood/corner, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"vls" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/floor_decal/corner/research/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/device/science_tool, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/office) -"vlt" = ( -/obj/structure/table/standard, -/obj/item/defibrillator/loaded, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/ward) -"vlw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 10 - }, -/obj/floor_decal/industrial/danger{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/command/bsa) -"vlx" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"vlH" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/mortus{ - dir = 4; - name = "Chapel Morgue" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"vlK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/docking) -"vlL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"vlO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/catwalk_plated/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/hallway) -"vlT" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/petrov/airlock) -"vlW" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/space) -"vmb" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"vmf" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"vmp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/button/ignition{ - id_tag = "Isocell2"; - pixel_x = -6; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"vmq" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"vmx" = ( -/obj/structure/rubble/war, -/obj/structure/rubble/war, -/obj/structure/rubble/war, -/obj/structure/rubble/war, -/obj/fluid_mapped, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"vmy" = ( -/obj/floor_decal/borderfloorblack, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/darkblue/border, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"vmB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/aft_stairwell) -"vmE" = ( -/obj/floor_decal/plaque, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) -"vmL" = ( -/obj/floor_decal/corner/yellow/half, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"vmN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"vmR" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftstarboard) -"vna" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/mining, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition) -"vnc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"vnl" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"vnm" = ( -/obj/structure/mattress/dirty, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"vnn" = ( -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"vno" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"vnr" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - name = "Autopsy"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"vnt" = ( -/obj/machinery/computer/modular/preset/library{ - dir = 8 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"vnD" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"vnK" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"vnL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/structure/table/steel{ - flipped = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"vnV" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"vnW" = ( -/obj/machinery/sleeper/survival_pod{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/vacant/infirmary) -"voa" = ( -/obj/machinery/vending/security{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/machinery/camera/network/security{ - c_tag = "Longterm - Checkpoint"; - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/brig) -"vog" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/port) -"voh" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"voi" = ( -/obj/structure/closet/emcloset/anchored, -/obj/floor_decal/corner/lightgrey/mono, -/obj/machinery/light{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/docking) -"vok" = ( -/obj/item/taperoll/engineering/applied, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"voo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 1 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"vox" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"voy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"voA" = ( -/obj/structure/table/rack, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/tcommsat/storage) -"voC" = ( -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "do_windows" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters/open{ - name = "QM Office Shutters"; - id_tag = "qm_office" - }, -/turf/simulated/floor/plating, -/area/quartermaster/deckofficer) -"voL" = ( -/obj/floor_decal/corner/red/border, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"voO" = ( -/obj/machinery/power/apc/charon{ - dir = 1; - name = "north bump"; - pixel_y = 24; - req_access = list(list("ACCESS_EXPLORER","ACCESS_ENGINEERING")) - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/b_green/bordercorner2{ - dir = 4 - }, -/obj/structure/bed/chair/shuttle/green{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/airlock) -"voP" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/decal/cleanable/cobweb2, -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"voQ" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/towel/fleece, -/obj/item/towel/fleece, -/obj/item/towel/fleece, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"voS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/machinery/navbeacon/sierra/TD_centralhallway1, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"voT" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"vpe" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/table/rack, -/obj/item/rig/command/hop/equipped, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/blue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"vpm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"vpp" = ( -/obj/machinery/computer/modular/preset/security{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"vpr" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"vpJ" = ( -/obj/floor_decal/carpet/purple{ - dir = 1 - }, -/obj/floor_decal/carpet/purple{ - dir = 4 - }, -/obj/floor_decal/carpet/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/main) -"vpO" = ( -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"vpQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"vqc" = ( -/obj/floor_decal/industrial/traffic/corner{ - detail_color = "#a2819e"; - color = "#a2819e" - }, -/turf/simulated/floor/tiled/white, -/area/rnd/office) -"vqf" = ( -/obj/machinery/seed_extractor, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/abandoned_hydroponics) -"vqg" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/machinery/papershredder, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"vqq" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"vqL" = ( -/obj/structure/table/standard, -/obj/floor_decal/borderfloorwhite, -/obj/floor_decal/corner/paleblue/border, -/obj/item/paper_bin, -/obj/item/pen{ - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"vqO" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"vqR" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 4; - name = "CO2 Supply"; - target_pressure = 10000 - }, -/obj/structure/closet/hydrant{ - pixel_y = -28 - }, -/obj/machinery/camera/network/hangar{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"vrd" = ( -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"vre" = ( -/obj/paint_stripe/red, -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/hallway/aft) -"vrg" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/shuttle{ - dir = 1; - id_tag = "guppy_shuttle_pump_out_internal" - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/airlock_sensor{ - frequency = 1331; - id_tag = "guppy_shuttle_sensor"; - master_tag = "guppy_shuttle"; - pixel_y = 26; - pixel_x = 25 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/guppy_hangar/start) -"vri" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/computer/modular/preset/cardslot/command, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"vru" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 - }, -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d3port) -"vrx" = ( -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"vry" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/navbeacon/sierra/TD_fore6, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"vrD" = ( -/obj/machinery/status_display, -/obj/paint_stripe/turquoise, -/turf/simulated/wall/r_wall/prepainted, -/area/turret_protected/ai) -"vrE" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/conveyor{ - id = "charon_cargo_out"; - name = "charon interior conveyor belt" - }, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_l) -"vrF" = ( -/obj/machinery/door/airlock/research{ - name = "Spectrometry Lab" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/ship) -"vrG" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa/high_sec) -"vrS" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/aftstarboard) -"vrX" = ( -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"vsd" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"vsh" = ( -/obj/item/storage/mirror{ - pixel_x = -26; - pixel_y = 1 - }, -/obj/structure/hygiene/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/gym) -"vsn" = ( -/obj/structure/table/steel_reinforced, -/obj/item/wrench, -/obj/item/storage/mre/random, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal, -/obj/floor_decal/corner/black/full, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark, -/area/command/bsa) -"vso" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/holoplant, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"vsz" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 8 - }, -/obj/structure/bookcase/manuals/security, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"vsB" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/glass/civilian{ - dir = 4 - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown1_1" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/center) -"vsE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"vsF" = ( -/obj/structure/ladder/up, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"vsI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"vsJ" = ( -/obj/structure/bed/chair/padded/yellow{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"vsL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"vsN" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 6 - }, -/obj/structure/table/standard, -/obj/item/storage/box/cups, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"vsO" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"vsX" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown2_2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/aft) -"vtl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/hologram/holopad{ - pixel_y = 16; - pixel_x = 16 - }, -/obj/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"vtp" = ( -/obj/machinery/door/airlock/command{ - id_tag = "iaadoorright"; - name = "Internal Affairs Agent"; - secured_wires = 1; - hackProof = 1; - ai_control_disabled = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/iaa) -"vtr" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/hallway) -"vts" = ( -/obj/structure/lattice, -/obj/random/trash, -/turf/simulated/open, -/area/maintenance/seconddeck/aftport) -"vtD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"vtH" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"vtT" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"vtZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/warning, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"vuc" = ( -/obj/structure/lattice, -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d1starboard) -"vud" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 4; - id_tag = "td_port" - }, -/obj/floor_decal/industrial/warning/cee, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"vuf" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/book/manual/anomaly_testing, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"vut" = ( -/obj/structure/table/rack, -/obj/item/storage/firstaid/radiation{ - pixel_y = 10 - }, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/stab{ - pixel_y = -10 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/fire/special, -/turf/simulated/floor/tiled/white, -/area/medical/equipstorage) -"vuu" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/grey, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "bar<-cafe"; - name = "Bar Shutters" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/bar) -"vuA" = ( -/obj/floor_decal/corner/paleblue/bordercorner, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"vuC" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell3) -"vuI" = ( -/obj/floor_decal/industrial/hatch/red, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"vuL" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown2_2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/fore) -"vuW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"vuZ" = ( -/obj/structure/sign/warning/fire{ - dir = 1; - pixel_y = -40 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"vvb" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ - dir = 4; - internal_pressure_bound = 35000; - internal_pressure_bound_default = 35000 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d1port) -"vvj" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/maintenance{ - id_tag = "crusher"; - name = "Compactor Zone" - }, -/obj/item/taperoll/engineering/applied, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"vvp" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/civilian{ - dir = 4; - name = "Restroom" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/sleep/cryo/bridge) -"vvs" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralport) -"vvw" = ( -/obj/floor_decal/solarpanel, -/obj/machinery/power/solar{ - id = "auxsolarsport"; - name = "Aft Port Solar Array" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/airless, -/area/solar/port) -"vvz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"vvB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"vvM" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/obj/structure/closet/secure_closet/bar_sierra, -/obj/item/flame/lighter/zippo/brass, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/item/storage/candle_box, -/obj/item/storage/candle_box, -/obj/item/storage/box/lights/led_neon, -/obj/item/storage/box/lights/led_neon, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/material/clipboard, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/bar/cobed) -"vvO" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/empty, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"vvR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"vvV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"vvX" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/structure/fitness/weightlifter, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"vwa" = ( -/obj/structure/ladder/up, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/port) -"vwi" = ( -/obj/fluid_mapped, -/mob/living/simple_animal/aquatic/fish/grump, -/obj/structure/flora/seaweed/mid, -/turf/simulated/floor/beach/sand, -/area/rnd/xenobiology/level2) -"vwm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/random/ironing_board_structure, -/obj/item/ironing_iron, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"vwn" = ( -/obj/structure/table/standard, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"vwv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/item/bedsheet/brown, -/obj/item/beartrap{ - anchored = 1; - deployed = 1; - icon_state = "beartrap1" - }, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"vwy" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/seconddeck/aftstarboard) -"vwE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"vwH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/corner/grey/border, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"vwI" = ( -/obj/structure/flora/pottedplant/orientaltree, -/obj/floor_decal/corner/blue/three_quarters{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"vwP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/port) -"vxa" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"vxc" = ( -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"vxd" = ( -/obj/structure/sign/nanotrasen{ - dir = 1 - }, -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/docking) -"vxf" = ( -/obj/structure/bed/sofa/r/black{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/sleep/cryo/south) -"vxn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "eng3_inner"; - name = "First Deck Starboard Nacelle Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/thruster/d1starboard) -"vxq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/rnd/xenobiology/entry2) -"vxI" = ( -/obj/machinery/power/solar_control{ - id = "auxsolarstrbbridge"; - name = "Bridge Solar Control"; - track = 1 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Solar Control - Bridge Deck - Starboard" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/solar/bridge_starboard) -"vxN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/floor_decal/corner/yellow/half{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"vxP" = ( -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"vxW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access = newlist() - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftport) -"vxY" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - id_tag = "solar_bridge_port_inner"; - locked = 1; - name = "Engineering External Access" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar/bridge_port) -"vxZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - controlled = 0; - dir = 1; - internal_pressure_bound = 35000; - internal_pressure_bound_default = 35000; - pressure_checks = 2; - pressure_checks_default = 2; - use_power = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/thruster/d3port) -"vya" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"vyb" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized/full, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/ce) -"vyd" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/center) -"vyf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/eva) -"vyh" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"vyo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/floor_decal/corner/black/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/meeting_room) -"vyr" = ( -/obj/structure/table/rack, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/tcommsat/storage) -"vyy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/button/alternate/door/bolts{ - dir = 1; - id_tag = "toilet_eng_2"; - name = "Lock"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head/deck3) -"vyz" = ( -/obj/machinery/door/airlock/vault/bolted{ - name = "AI Core External Access" - }, -/obj/item/airlock_brace{ - req_access = list("ACCESS_BRIDGE") - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/turret_protected/ai_maint) -"vyF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"vyI" = ( -/obj/structure/closet{ - anchored = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"vyK" = ( -/obj/structure/catwalk, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"vyS" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/wallframe_spawn/reinforced/polarized/full, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/ce) -"vzp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"vzx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"vzz" = ( -/obj/decal/cleanable/dirt, -/obj/structure/closet/cabinet, -/obj/machinery/light_construct/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/vacant/sauna) -"vzD" = ( -/obj/floor_decal/corner/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"vzJ" = ( -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#4c535b" - }, -/area/quartermaster/hangar/upper) -"vzO" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"vzX" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/space) -"vAf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/meter, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"vAk" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/holocontrol) -"vAp" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black/corner, -/obj/floor_decal/spline/fancy/black/corner{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"vAH" = ( -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"vAJ" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 1; - target_pressure = 15000 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"vAL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"vAM" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"vAP" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"vAU" = ( -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"vAV" = ( -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"vBb" = ( -/obj/machinery/washing_machine, -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"vBe" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"vBi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"vBj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/coatrack, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"vBm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"vBn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random/vendor/contraband/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"vBp" = ( -/obj/structure/sign/poster, -/turf/simulated/wall/prepainted, -/area/vacant/utility) -"vBw" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/purple/bordercorner2, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"vBB" = ( -/obj/machinery/keycard_auth/sierra{ - pixel_x = -24 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24; - pixel_y = -8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"vBC" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"vBH" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"vBM" = ( -/obj/machinery/door/blast/regular/escape_pod{ - id_tag = "escape_pod_9" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/maintenance/exterior) -"vBP" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/structure/window/boron_reinforced{ - dir = 4 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d1starboard) -"vBY" = ( -/obj/structure/cable, -/obj/machinery/power/smes/buildable{ - RCon_tag = "Solar - Bridge Starboard" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/bridge_starboard) -"vCd" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/exploration/eva) -"vCq" = ( -/obj/machinery/seed_extractor, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"vCu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/storage) -"vCB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"vCC" = ( -/obj/structure/flora/ausbushes/palebush, -/obj/floor_decal/spline/fancy/black{ - dir = 8 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"vCG" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"vCI" = ( -/obj/machinery/vending/wallmed2{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod3/station) -"vCK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/door/blast/regular{ - id_tag = "d4portnacelle" - }, -/obj/wallframe_spawn/reinforced_phoron, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"vCR" = ( -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/corner/yellow/bordercorner, -/turf/simulated/floor/tiled, -/area/storage/primary) -"vCS" = ( -/obj/structure/lattice, -/turf/space, -/area/space) -"vCV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/civilian{ - autoset_access = 0; - name = "Long Term Bathroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/prison) -"vDa" = ( -/obj/machinery/suit_cycler/engineering, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"vDg" = ( -/obj/structure/table/standard, -/obj/item/folder/nt, -/obj/machinery/button/blast_door{ - id_tag = "xenobio_desk"; - name = "Containment Blast Doors"; - req_access = list("ACCESS_RESEARCH"); - dir = 8; - pixel_x = 21 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"vDj" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/machinery/door/blast/regular/open{ - id_tag = "PetrovShield"; - name = "Petrov Blast Shutters" - }, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/plating, -/area/shuttle/petrov/eva) -"vDm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"vDr" = ( -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"vDv" = ( -/obj/wallframe_spawn/reinforced_phoron/hull, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"vDB" = ( -/obj/structure/grille/broken, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"vDC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "eng_QAW"; - name = "Quick Access Warehouse" - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "eng_lockdown"; - name = "Engineering Lockdown" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"vDK" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/monotile, -/area/rnd/office) -"vDN" = ( -/obj/structure/catwalk, -/obj/machinery/access_button/airlock_exterior{ - frequency = 1380; - master_tag = "td_port"; - name = "exterior access button"; - pixel_y = 24; - req_access = list("ACCESS_EXTERNAL"); - pixel_x = -32 - }, -/turf/simulated/open, -/area/space) -"vDO" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"vDS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"vDT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"vDV" = ( -/obj/structure/table/rack, -/obj/item/storage/mre/random, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"vDW" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "expe_warehouse"; - name = "Storage Shutters" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"vDY" = ( -/obj/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/utility) -"vEe" = ( -/turf/simulated/floor/pool, -/area/crew_quarters/sauna) -"vEf" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/foreport) -"vEg" = ( -/obj/structure/closet/chefcloset_sierra, -/obj/floor_decal/corner/grey{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"vEq" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/quartermaster/hangar_stairs) -"vEv" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/main) -"vED" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_to_maint"; - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/sleeper) -"vEO" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 4; - id_tag = "td_fore_starboard_pump" - }, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 4; - display_name = "Second Deck Auxillary Dock"; - id_tag = "td_fore_starboard"; - name = "Third Deck Fore Starboard Airlock Controller"; - pixel_x = -20; - req_access = list("ACCESS_EXTERNAL") - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"vEU" = ( -/obj/machinery/door/window/eastleft, -/obj/decal/cleanable/dirt, -/obj/structure/barricade, -/turf/simulated/floor/plating, -/area/vacant/sauna) -"vEW" = ( -/obj/paint/hull, -/turf/simulated/wall/ocp_wall, -/area/rnd/toxins) -"vEX" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/structure/sign/directions/science{ - pixel_y = 24; - dir = 4 - }, -/obj/structure/sign/directions/infirmary{ - dir = 4; - pixel_y = 31 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"vFf" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 6 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/sticky_pad/random, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_r) -"vFk" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"vFq" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/thirddeck/fore) -"vFr" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/incinerator) -"vFt" = ( -/obj/machinery/atmospherics/unary/tank/hydrogen, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"vFu" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"vFw" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/random/closet, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"vFA" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"vFB" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/foreport) -"vFE" = ( -/obj/machinery/sleeper, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"vFH" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/command{ - id_tag = "cmodoor"; - name = "Chief Medical Officer Dorm"; - secured_wires = 1; - stripe_color = "#00e1ff"; - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/cmo/cobed) -"vFJ" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/starboard) -"vFO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"vFR" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"vGb" = ( -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dormintories) -"vGc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - dir = 5 - }, -/turf/simulated/wall/r_wall/hull, -/area/thruster/d1port) -"vGk" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/engineering{ - name = "Quick Access Warehouse"; - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "eng_lockdown"; - name = "Engineering Lockdown" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"vGl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"vGm" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"vGn" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"vGv" = ( -/obj/structure/sign/directions/bridge{ - pixel_y = 24; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/central_stairwell) -"vGI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"vGR" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ - id_tag = "escape_pod_9_berth"; - name = "escape pod nine berth controller"; - pixel_x = -32; - pixel_y = -28; - tag_door = "escape_pod_9_berth_hatch"; - frequency = 1380; - dir = 1 - }, -/obj/floor_decal/industrial/warning, -/obj/floor_decal/steeldecal/steel_decals_central4, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"vGU" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"vGX" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/cryo/thirddeck) -"vGY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"vHa" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/research{ - name = "Development Laboratory"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/monotile, -/area/rnd/development) -"vHc" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "xenobio_surg"; - name = "Space Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level1) -"vHe" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = -32 - }, -/obj/decal/cleanable/dirt, -/obj/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/folder/red, -/turf/simulated/floor/lino, -/area/maintenance/firstdeck/forestarboard) -"vHg" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1441; - id = "test_xenoflora_in"; - use_power = 1 - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/xenoflora) -"vHm" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/recharge_station, -/obj/floor_decal/techfloor/orange{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"vHM" = ( -/obj/floor_decal/corner/purple/half{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"vHP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/civilian{ - id_tag = "toilet2"; - name = "Stall Two" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"vHY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/fore) -"vId" = ( -/obj/random/vendor, -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/lime/border{ - dir = 9 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"vIj" = ( -/obj/structure/table/marble, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/reagent_temperature, -/obj/item/reagent_containers/food/drinks/milk{ - pixel_x = -1 - }, -/obj/item/reagent_containers/food/drinks/soymilk{ - pixel_x = 6 - }, -/obj/floor_decal/corner/red/diagonal, -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"vIq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"vIw" = ( -/turf/simulated/open, -/area/hallway/primary/thirddeck/central_stairwell) -"vIG" = ( -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"vIL" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/mining, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition/storage) -"vIP" = ( -/obj/floor_decal/corner/blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"vIX" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod4/station) -"vJb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"vJj" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "hangar_checkpoint_shutters"; - name = "Hangar Deck Checkpoint Shutters"; - opacity = 0 - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/security/sierra/dockcheck) -"vJu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"vJA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 6 - }, -/obj/machinery/light, -/obj/structure/table/steel_reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/folder/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"vJC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/aft) -"vJD" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/floor_decal/industrial/warning/cee, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"vJE" = ( -/obj/structure/table/woodentable_reinforced/ebony, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{ - pixel_y = 11; - pixel_x = 7 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{ - pixel_y = 2; - pixel_x = -2 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/metal{ - pixel_y = -3; - pixel_x = 6 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"vJQ" = ( -/obj/floor_decal/ntlogo{ - dir = 8 - }, -/obj/landmark/start{ - name = "Research Director" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/rnd/entry) -"vJS" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"vJV" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_to_maint" - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/locker) -"vKa" = ( -/obj/floor_decal/corner/purple{ - pixel_y = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/janitor) -"vKg" = ( -/obj/machinery/r_n_d/server/core, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/camera/network/research{ - c_tag = "Research - Servers" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/rnd/servers) -"vKD" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"vKI" = ( -/obj/machinery/door/airlock/glass{ - autoclose = 0; - frequency = 1379; - heat_proof = 1; - id_tag = "incinerator_airlock_exterior"; - locked = 1; - name = "Mixing Room Exterior Airlock" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"vKK" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Cadets"; - dir = 8 - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"vKU" = ( -/obj/machinery/atmospherics/unary/heat_exchanger{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"vKY" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/wallframe_spawn/reinforced/polarized{ - id = "cap_windows" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/captain) -"vLh" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall/prepainted, -/area/hallway/primary/fourthdeck/center) -"vLj" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"vLr" = ( -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/machinery/camera/network/bridge_deck{ - dir = 8; - c_tag = "Bridge Deck - Central Hallway - Port" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/bridge) -"vLt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"vLv" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/red/bordercorner, -/obj/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"vLG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/turf/simulated/wall/ocp_wall{ - heat_capacity = 412500 - }, -/area/thruster/d1port) -"vLM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/purple, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"vLT" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/structure/table/rack, -/obj/item/stack/material/plastic/fifty{ - amount = 30 - }, -/obj/item/stack/material/aluminium{ - amount = 30 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"vMe" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Head Of Security"; - req_access = newlist(); - secured_wires = 1; - stripe_color = "#9d2300"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/hos) -"vMg" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"vMl" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/grass/cut, -/area/hallway/primary/bridgedeck/center) -"vMm" = ( -/obj/floor_decal/corner/green/bordercorner{ - dir = 1 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"vMx" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d3port) -"vMB" = ( -/obj/floor_decal/corner/red/half{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner, -/obj/floor_decal/industrial/danger/corner, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"vME" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"vMR" = ( -/obj/item/reagent_containers/food/snacks/egg/lizard{ - color = "black" - }, -/obj/structure/table/rack, -/obj/item/bedsheet, -/obj/item/reagent_containers/food/snacks/egg/lizard, -/obj/item/reagent_containers/food/snacks/egg/lizard{ - color = "black" - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"vMS" = ( -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 1 - }, -/obj/structure/curtain/open/shower, -/obj/structure/hygiene/shower, -/obj/structure/closet/walllocker{ - pixel_x = 28 - }, -/obj/random/soap, -/obj/item/towel/random, -/obj/random/medical/lite, -/obj/random/medical/lite, -/obj/item/towel/random, -/obj/item/flame/lighter/zippo/random, -/obj/item/haircomb/random, -/obj/item/lipstick/random, -/obj/random/soap, -/turf/simulated/floor/tiled/freezer, -/area/vacant/cargo) -"vMX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"vMY" = ( -/obj/floor_decal/spline/plain/brown{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/item/hand_labeler, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/actor) -"vNe" = ( -/obj/structure/closet/secure_closet/RD_sierra, -/obj/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/floor_decal/corner/purple/border{ - dir = 5 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/keycard_auth/sierra{ - pixel_x = 3; - pixel_y = 21 - }, -/obj/machinery/button/windowtint{ - id = "rd_windows"; - pixel_x = 12; - pixel_y = 21; - range = 11 - }, -/obj/machinery/button/alternate/door{ - desc = "A remote control-switch for the office door."; - id_tag = "rddoor"; - name = "Office Door Control"; - pixel_x = -10; - pixel_y = 21; - req_access = list("ACCESS_RESEARCH_DIRECTOR") - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"vNl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/storage2) -"vNm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"vNq" = ( -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"vNt" = ( -/obj/decal/cleanable/cobweb2{ - dir = 4 - }, -/obj/random/vendor, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"vNw" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/red/bordercorner2, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/stamp/ward, -/obj/item/device/eftpos{ - eftpos_name = "Warden's EFTPOS scanner" - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"vNz" = ( -/obj/item/device/radio/intercom/department/medbay{ - dir = 4; - pixel_x = -22 - }, -/obj/floor_decal/borderfloor{ - color = null; - dir = 8 - }, -/obj/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - color = null; - dir = 10 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 10 - }, -/obj/machinery/sleeper/survival_pod{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"vNC" = ( -/obj/structure/table/standard, -/obj/item/deck/cards, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/maintenance/firstdeck/aftstarboard) -"vNF" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/space, -/area/space) -"vNH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/woodentable/walnut, -/obj/item/storage/box/donkpocket_dessert, -/turf/simulated/floor/wood/walnut, -/area/vacant/gambling) -"vNM" = ( -/obj/machinery/chemical_dispenser/full, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"vNO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"vOs" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/civilian{ - name = "Actor's Room" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/actor) -"vOy" = ( -/obj/structure/railing/mapped, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"vOC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 10 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"vOF" = ( -/obj/machinery/air_sensor/nacelle/second/oxygen, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d3port) -"vON" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"vOQ" = ( -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"vPd" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_pump{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "fuel4p_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d1port) -"vPj" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/engine_smes) -"vPu" = ( -/turf/simulated/open, -/area/maintenance/firstdeck/aftstarboard) -"vPw" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/security{ - name = "Forensics" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/forensic/lab) -"vPH" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/reinforced, -/area/maintenance/fourthdeck/foreport) -"vPI" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"vPL" = ( -/obj/structure/table/standard, -/obj/floor_decal/corner/yellow/three_quarters, -/obj/item/storage/belt/utility{ - pixel_y = 11; - pixel_x = 2 - }, -/obj/item/storage/belt/utility{ - pixel_y = 6; - pixel_x = 3 - }, -/obj/item/storage/belt/utility, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"vPO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"vQb" = ( -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_11_hatch"; - name = "Escape Pod Eleven Hatch" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod11/station) -"vQd" = ( -/obj/structure/table/steel_reinforced, -/obj/item/folder/nt, -/obj/item/folder/nt{ - pixel_y = 4; - pixel_x = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"vQj" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "hydroponics_space"; - name = "Space Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hydroponics) -"vQl" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"vQo" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - id_tag = "solar_bridge_inner"; - locked = 1; - name = "Engineering External Access" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar/bridge_starboard) -"vQu" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"vQv" = ( -/obj/floor_decal/borderfloorblack, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/bunk) -"vQJ" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/multi_tile/maintenance, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/foreport) -"vQO" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/drone_pad{ - desc = "A small pad for transport drones to deposit their payloads at. Requires network reestablishment after Bluespace jump via multitool" - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"vQU" = ( -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/utility) -"vQW" = ( -/obj/floor_decal/corner/red/half{ - dir = 4 - }, -/obj/floor_decal/corner/red{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/central_stairwell) -"vRa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/nano) -"vRd" = ( -/obj/floor_decal/corner/black{ - dir = 9 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/bed/chair/comfy/teal, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"vRg" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/floor_decal/corner/grey/diagonal, -/obj/item/storage/toolbox/mechanical, -/turf/simulated/floor/tiled, -/area/rnd/research) -"vRh" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/floor_decal/techfloor/orange{ - dir = 10 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"vRl" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/shield/thirddeck) -"vRo" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/floor_decal/industrial/warning/corner, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"vRw" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/green, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"vRA" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"vRU" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/waterstore) -"vRY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"vSg" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/rnd/entry) -"vSl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green, -/obj/floor_decal/corner/blue{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"vSn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/decal/cleanable/greenglow, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/fuelbay) -"vSo" = ( -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"vSp" = ( -/obj/structure/table/standard, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/random/tech_supply, -/obj/item/storage/toolbox/electrical, -/obj/random/tech_supply, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/corner/yellow/mono, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"vSw" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/decal/cleanable/blood/oil, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Containment Control"; - dir = 8; - network = list("Research","Miscellaneous Reseach") - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/containment) -"vSE" = ( -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"vSF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown2_2" - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/center) -"vSJ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"vSO" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"vSQ" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/exploration_shuttle/power) -"vSR" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"vSZ" = ( -/obj/structure/railing/mapped, -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"vTd" = ( -/obj/machinery/computer/ship/navigation{ - dir = 4 - }, -/obj/floor_decal/corner/black/full, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/command/bsa) -"vTf" = ( -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/obj/structure/table/marble, -/obj/machinery/fabricator/micro/bartender{ - pixel_x = 4 - }, -/obj/item/stack/material/glass/ten{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/stack/material/aluminium/ten{ - pixel_y = -4 - }, -/obj/item/stack/material/plastic/ten{ - pixel_x = -4; - pixel_y = -4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"vTg" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/equipment) -"vTj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"vTn" = ( -/obj/machinery/shield_diffuser, -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_10_berth_hatch"; - name = "Escape Pod Ten" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralport) -"vTp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod5/station) -"vTq" = ( -/obj/machinery/mech_recharger, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot, -/turf/simulated/floor/bluegrid, -/area/assembly/chargebay) -"vTs" = ( -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"vTy" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/glass/civilian{ - dir = 8; - name = "Hallway" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/aft_stairwell) -"vTB" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/sign/xenobio_1{ - dir = 8; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/hangar_stairs/upper) -"vTC" = ( -/obj/structure/table/standard, -/obj/random/single/playing_cards, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/SCG, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"vTJ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/floor_decal/industrial/outline/blue, -/obj/structure/reagent_dispensers/watertank, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/cistern) -"vTQ" = ( -/obj/structure/railing/mapped, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"vTY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"vTZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"vUf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/sleep/bunk) -"vUh" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/fuelbay) -"vUn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/valve/shutoff/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals_central6{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/xenobio) -"vUq" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/substation/bridgedeck) -"vUs" = ( -/obj/floor_decal/techfloor/orange, -/obj/machinery/conveyor{ - dir = 4; - id = "compactor" - }, -/obj/machinery/recycler, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/compactor) -"vUu" = ( -/obj/random/maintenance, -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"vUv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/filingcabinet/wallcabinet{ - pixel_y = -30 - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/machinery/light/small, -/obj/machinery/camera/network/security{ - c_tag = "Security - Evidences"; - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/security/sierra/evidence) -"vUB" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"vUL" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"vUO" = ( -/obj/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"vUQ" = ( -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"vUU" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/mahogany, -/area/security/range) -"vUZ" = ( -/obj/structure/table/marble, -/obj/machinery/reagentgrinder/juicer{ - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 6 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"vVb" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"vVc" = ( -/obj/structure/railing/mapped, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"vVg" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/firstdeck/centralport) -"vVo" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/open, -/area/rnd/xenobiology/level1) -"vVu" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/sierra/hallway) -"vVv" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/wallframe_spawn/reinforced/polarized/full{ - id = "hop_windows" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/hop) -"vVx" = ( -/obj/machinery/sleeper/survival_pod{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/closet/medical_wall{ - pixel_x = -32 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/med_pouch/oxyloss, -/obj/item/storage/med_pouch/oxyloss, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/steel_ridged, -/area/guppy_hangar/start) -"vVM" = ( -/obj/structure/closet/crate/trashcart, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"vVN" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/structure/closet/secure_closet/hos/sierra, -/obj/item/device/binoculars, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/hos) -"vVR" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/airlock_canisters) -"vVY" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"vWk" = ( -/obj/floor_decal/spline/fancy/wood/corner, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"vWm" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"vWn" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/recharge_station, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Syntetics Compartment"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"vWo" = ( -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/structure/cable{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/reinforced, -/area/maintenance/firstdeck/forestarboard) -"vWr" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/computer/upload/robot{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_cyborg_upload) -"vWt" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/black/border, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation) -"vWu" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/unary/outlet_injector{ - id = "CO22p_in"; - injecting = 1; - use_power = 1 - }, -/turf/simulated/floor/reinforced/carbon_dioxide, -/area/thruster/d3port) -"vWv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/floor_decal/borderfloorblack, -/obj/item/device/flashlight/lamp{ - pixel_y = 13; - pixel_x = -3 - }, -/obj/floor_decal/corner/black/border, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/iaa/iso_quarters) -"vWx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for the engine charging port."; - id_tag = "SupermatterPort"; - name = "Reactor Blast Doors"; - pixel_x = -6; - pixel_y = 7; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - id_tag = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors"; - pixel_y = -3; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/machinery/button/toggle/alternate{ - id_tag = "EngineEmitter"; - name = "Emitter Control"; - pixel_x = 6; - pixel_y = 7 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"vWC" = ( -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/glass, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/item/book/manual/nt_tc, -/obj/item/paper/sierra/teleport, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/spline/fancy/black{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"vWF" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/green/bordercorner2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"vWG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"vWI" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"vWK" = ( -/obj/machinery/bluespacedrive, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/engineering/bluespace/chamber) -"vWL" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/bunk) -"vWR" = ( -/obj/floor_decal/industrial/warning/corner, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"vWT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel, -/obj/machinery/meter, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"vWW" = ( -/obj/structure/hygiene/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/item/storage/mirror{ - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"vWX" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/item/device/camera_film, -/obj/item/device/camera, -/obj/item/storage/photo_album, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/airlock) -"vWZ" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id_tag = "eva_shutters"; - name = "EVA Shutters" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"vXb" = ( -/obj/structure/filingcabinet/chestdrawer{ - dir = 1 - }, -/obj/item/folder/nt, -/obj/item/folder/nt, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Robotics Office" - }, -/turf/simulated/floor/tiled, -/area/assembly/office) -"vXi" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/machinery/meter, -/turf/simulated/floor/reinforced, -/area/thruster/d3starboard) -"vXk" = ( -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"vXm" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "sierra_surgery1"; - name = "Operation room 1"; - dir = 8 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/holosign/surgery{ - dir = 8; - id_tag = "surgery1" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery) -"vXn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"vXp" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/scan) -"vXC" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/regular{ - dir = 8; - id_tag = "miners_restroom_sierra" - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar_stairs) -"vXE" = ( -/obj/structure/bed/chair/office/teal{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"vXJ" = ( -/obj/floor_decal/corner/paleblue/border, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"vXO" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/solar) -"vXP" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/bluegrid, -/area/engineering/bluespace/chamber) -"vXR" = ( -/obj/machinery/door/airlock/highsecurity{ - id_tag = "capt_safe_room"; - locked = 1 - }, -/obj/machinery/door/firedoor, -/obj/item/airlock_brace{ - req_access = list("ACCESS_CAPTAIN") - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/substation/bridgedeck) -"vXT" = ( -/obj/structure/table/marble, -/obj/machinery/cooker/candy, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"vXU" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"vXV" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/table/rack, -/obj/item/extinguisher, -/obj/item/extinguisher, -/obj/item/extinguisher, -/obj/item/extinguisher, -/obj/machinery/light_switch{ - dir = 4; - on = 1; - pixel_x = -25 - }, -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/purple/border{ - dir = 10 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/storage2) -"vYc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/security/sierra/hallway/aft) -"vYl" = ( -/obj/machinery/cryopod, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/railing/mapped{ - color = "#393f43"; - init_color = "#393f43" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/central_stairwell) -"vYu" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/r_wall/hull, -/area/security/sierra/prison) -"vYz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "eng1_outer"; - name = "Third Deck Starboard Nacelle Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/thruster/d3starboard) -"vYG" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border{ - dir = 4 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants/cobed{ - req_access = list("ACCESS_ADJUTANTS") - }) -"vYP" = ( -/obj/floor_decal/corner/paleblue/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"vYV" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"vYX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/machinery/light/spot, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"vYY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 9 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"vZb" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped, -/turf/space, -/area/space) -"vZh" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/hallway) -"vZx" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/laundry) -"vZz" = ( -/obj/item/stock_parts/circuitboard/shield_diffuser, -/obj/item/stock_parts/circuitboard/shield_diffuser, -/obj/item/stock_parts/circuitboard/shield_diffuser, -/obj/item/stock_parts/circuitboard/shield_generator, -/obj/item/stock_parts/circuitboard/shield_generator, -/obj/item/stock_parts/circuitboard/shield_generator, -/obj/item/stock_parts/circuitboard/shield_generator, -/obj/item/stock_parts/circuitboard/shield_generator, -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech/high_risk) -"vZB" = ( -/obj/structure/hygiene/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/item/storage/mirror{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/prison) -"vZF" = ( -/obj/floor_decal/industrial/warning/corner, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/exploration/eva) -"vZK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"vZL" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 5 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"vZO" = ( -/obj/structure/table/reinforced, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/holocontrol) -"vZQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/security/sierra/hallway/aft) -"vZS" = ( -/obj/decal/cleanable/cobweb2{ - dir = 8 - }, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"vZT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/storage) -"vZW" = ( -/obj/floor_decal/carpet{ - dir = 4 - }, -/mob/living/simple_animal/passive/cat/fluff{ - name = "Cookie"; - speak_emote = list("purrs","meows","moans") - }, -/obj/structure/dogbed, -/obj/floor_decal/spline/fancy/black, -/obj/floor_decal/carpet, -/obj/floor_decal/carpet{ - dir = 6 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/garden_room) -"vZY" = ( -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/rnd/xenobiology/level1) -"wag" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"waq" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"was" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation/second) -"waF" = ( -/obj/structure/closet/secure_closet/security/sierra, -/obj/machinery/ai_status_display{ - pixel_y = -32 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"waJ" = ( -/obj/floor_decal/borderfloor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/yellow/bordercorner2, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"waK" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 4; - pixel_x = -14 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"waO" = ( -/obj/structure/bed/chair/rounded/beige{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"waR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/bed/chair/pew/left, -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/security/sierra/breakroom) -"waS" = ( -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge/upper) -"waX" = ( -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"wbc" = ( -/obj/floor_decal/industrial/traffic/corner, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"wbk" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 10 - }, -/obj/structure/holoplant, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"wbm" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/office) -"wbr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"wbt" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"wbv" = ( -/obj/shuttle_landmark/ferry/out, -/turf/space, -/area/space) -"wbZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"wca" = ( -/obj/shuttle_landmark/ninja/deck3, -/turf/space, -/area/space) -"wcb" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/incinerator) -"wcm" = ( -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/abandoned_hydroponics) -"wcs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"wcF" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"wcM" = ( -/obj/machinery/gibber, -/obj/structure/curtain/medical, -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/obj/floor_decal/snow, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/galley/freezer) -"wcN" = ( -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - AI Subgrid"; - name_tag = "AI Subgrid" - }, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/dark, -/area/turret_protected/ai) -"wcU" = ( -/obj/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/substation/seconddeck) -"wdh" = ( -/obj/machinery/vending/tool{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/storage/primary) -"wdj" = ( -/obj/structure/bed/chair/padded/purple{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"wdk" = ( -/obj/floor_decal/industrial/traffic{ - dir = 1 - }, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"wdp" = ( -/obj/structure/table/woodentable/walnut, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 1 - }, -/obj/structure/sign/poster{ - pixel_y = -32 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"wds" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/reagent_sublimator/sauna, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/sierra/breakroom) -"wdE" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"wdG" = ( -/obj/floor_decal/corner/black/full, -/obj/structure/table/glass, -/obj/machinery/chemical_dispenser/bar_coffee/full{ - pixel_y = 8; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"wdI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"wdK" = ( -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/suplocker_room) -"wdL" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"wdN" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Chamber Output" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/gas) -"wdP" = ( -/obj/structure/largecrate, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"wdT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"wdV" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/airlock_canisters) -"web" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"wed" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - display_name = "Starboard Dock A"; - frequency = 1380; - id_tag = "merchant_shuttle_station"; - pixel_x = 32; - req_access = list("ACCESS_EXTERNAL"); - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"wej" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Second Deck - Central Hallway"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"wek" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"wel" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/suits) -"wep" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/lime/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 9 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"wew" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"weB" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/sleep/cryo/south) -"weC" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenoflora Hydroponics"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/rnd/xenobiology/xenoflora) -"weD" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"weF" = ( -/obj/floor_decal/floordetail/edgedrain{ - dir = 9 - }, -/obj/floor_decal/corner/paleblue, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"weJ" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"weM" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/thirddeck/port) -"weN" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"weT" = ( -/obj/machinery/photocopier, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"weX" = ( -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"weY" = ( -/obj/structure/largecrate, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"wfa" = ( -/obj/machinery/oxygen_pump{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - id_tag = "petrov_shuttle_pump" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/petrov/airlock) -"wfc" = ( -/obj/structure/disposalpipe/down{ - dir = 1 - }, -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/thirddeck/starboard) -"wff" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "lounge_windows" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/garden_room) -"wfo" = ( -/obj/floor_decal/carpet/blue2{ - dir = 4 - }, -/obj/floor_decal/carpet/blue2{ - dir = 1 - }, -/obj/floor_decal/carpet/blue2{ - dir = 5 - }, -/obj/structure/dogbed, -/mob/living/simple_animal/passive/cat/fluff/Runtime, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/carpet/blue3, -/area/crew_quarters/heads/office/cmo/cobed) -"wfu" = ( -/obj/shuttle_landmark/sierra/deck1/guppy, -/turf/space, -/area/space) -"wfw" = ( -/obj/floor_decal/techfloor/orange, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/binary/pump/on{ - target_pressure = 200; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"wfJ" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/surgery, -/obj/item/autopsy_scanner, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue/autopsy) -"wfV" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"wfW" = ( -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/development) -"wgk" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/docking) -"wgm" = ( -/obj/fluid_mapped, -/turf/simulated/floor/beach/sand, -/area/rnd/xenobiology/level2) -"wgn" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/structure/bed/chair/padded/red{ - dir = 4; - desc = "You sit in this, either by will or force. This is probably the most uncomfortable chair in the whole world. You literally die sitting on it." - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/hos) -"wgr" = ( -/obj/floor_decal/spline/fancy/wood/corner, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/machinery/computer/modular/preset/civilian{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"wgs" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/corner/blue/bordercorner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"wgD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/hangar/upper) -"wgH" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"wgN" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"wgO" = ( -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/paint_stripe/red, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/polarized{ - id = "cadetwindow" - }, -/turf/simulated/floor/plating, -/area/security/range) -"wgP" = ( -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"wgQ" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/table/rack, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/storage/toolbox/mechanical, -/obj/item/device/multitool, -/obj/item/aicard, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"wgR" = ( -/obj/machinery/button/alternate/door/bolts{ - dir = 4; - id_tag = "cafe_private_room"; - name = "Lock"; - pixel_x = -24; - pixel_y = 7 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/button/windowtint{ - dir = 4; - id = "private_cafe_windows"; - pixel_x = -24; - pixel_y = -6; - range = 3 - }, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/item/paper/sierra, -/obj/item/device/flashlight/lamp/green{ - pixel_y = 14; - pixel_x = -5 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/cafe/upper) -"wgY" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/seconddeck/starboard) -"whd" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/engine_smes) -"whe" = ( -/obj/floor_decal/industrial/warning/fulltile, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"whj" = ( -/obj/item/stack/tile/walnut{ - pixel_y = -5; - pixel_x = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/vacant/bar) -"whl" = ( -/obj/structure/hygiene/sink/kitchen{ - pixel_y = 24 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/floor_decal/snow, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/galley/freezer) -"whn" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"whv" = ( -/obj/machinery/portable_atmospherics/canister/hydrogen, -/obj/floor_decal/industrial/outline/blue, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"whx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/media/music_writer{ - pixel_y = 60 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"whD" = ( -/obj/structure/bed/chair/padded/blue, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/office/hop) -"whF" = ( -/obj/structure/table/woodentable/walnut, -/obj/item/storage/photo_album{ - pixel_y = -5 - }, -/obj/item/device/camera{ - pixel_y = 5 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"whL" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - dir = 4; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/medical) -"whO" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"whQ" = ( -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"whR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/navbeacon/sierra/FD_forehallway1, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/fore) -"whX" = ( -/turf/simulated/wall/prepainted, -/area/medical/ward) -"wib" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"wid" = ( -/obj/structure/ladder/up, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/port) -"wig" = ( -/turf/simulated/floor/tiled, -/area/maintenance/abandoned_hydroponics) -"wik" = ( -/obj/structure/table/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/random/maintenance, -/obj/machinery/door/window/westleft{ - name = "Commissary rack"; - req_access = newlist(); - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/random/maintenance, -/obj/floor_decal/corner/black/full, -/obj/floor_decal/industrial/outline/yellow, -/obj/random/single/lighter, -/turf/simulated/floor/tiled, -/area/crew_quarters/commissary) -"win" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red, -/obj/floor_decal/corner/blue{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"wiz" = ( -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/random/maintenance/solgov, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"wiB" = ( -/obj/item/mech_component/propulsion/spider, -/obj/structure/closet/crate, -/obj/item/robot_parts/robot_component/actuator, -/obj/item/robot_parts/robot_component/actuator, -/obj/item/circuitboard/exosystem/utility, -/obj/item/circuitboard/exosystem/medical, -/obj/item/mech_equipment/sleeper, -/obj/item/mech_equipment/mounted_system/melee/mechete, -/obj/item/mech_equipment/ionjets, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/eva) -"wiF" = ( -/obj/floor_decal/carpet{ - dir = 8 - }, -/obj/floor_decal/carpet{ - dir = 1 - }, -/obj/floor_decal/carpet{ - dir = 9 - }, -/obj/item/reagent_containers/food/drinks/glass2/coffeecup/heart, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/garden_room) -"wiH" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"wiJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"wiO" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/solar/port) -"wiU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"wjg" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"wji" = ( -/obj/machinery/portable_atmospherics/canister/hydrogen, -/obj/floor_decal/industrial/outline/blue, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"wjj" = ( -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "sierra_surgery1" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/medical/surgery) -"wjk" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"wjl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/forensic) -"wjm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"wjq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/center) -"wjs" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"wjt" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/exploration/briefing_room) -"wjv" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"wjB" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/hop) -"wjK" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/bridge/meeting_room) -"wjN" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"wjO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"wka" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa) -"wke" = ( -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"wkl" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"wkt" = ( -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"wkA" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/infirmreception) -"wkC" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft) -"wkE" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/blood/oil, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"wkM" = ( -/obj/floor_decal/corner/red, -/obj/machinery/door_timer/cell_1{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"wkN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"wle" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/sleep/cryo) -"wlh" = ( -/obj/structure/catwalk, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"wlm" = ( -/obj/machinery/portable_atmospherics/canister/sleeping_agent, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"wlw" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/firstdeck) -"wly" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"wlE" = ( -/obj/machinery/papershredder, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/sign/warning/nosmoking_1{ - dir = 4; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/infirmreception) -"wlJ" = ( -/obj/landmark/test/space_turf, -/turf/space, -/area/space) -"wlQ" = ( -/obj/machinery/suit_storage_unit/science, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/eva) -"wlR" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/random/plushie, -/turf/simulated/floor/plating, -/area/quartermaster/hangar/upper) -"wlV" = ( -/turf/simulated/floor/tiled, -/area/quartermaster/hangar) -"wlW" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/emergency) -"wlZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"wma" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 6 - }, -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/atmos) -"wme" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"wmh" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "First Deck Substation Bypass" - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/firstdeck) -"wmm" = ( -/obj/random/obstruction, -/obj/structure/railing/mapped, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"wmn" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -23 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/hangar_atmos) -"wmo" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/exploration_shuttle/power) -"wmq" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/flora/pottedplant/smalltree, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/cryo/south) -"wms" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/shield/thirddeck) -"wmv" = ( -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/wood/walnut, -/area/chapel/main) -"wmy" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/thirddeck/port) -"wmB" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/machinery/button/alternate/door/bolts{ - dir = 8; - pixel_x = 24; - id_tag = "old_maintaince_privatedorm_toilet"; - name = "Lock" - }, -/turf/simulated/floor/tiled/freezer, -/area/vacant/dormintories) -"wmY" = ( -/obj/floor_decal/corner/grey/three_quarters{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/item/reagent_containers/glass/rag{ - pixel_y = -1; - pixel_x = 3 - }, -/obj/item/reagent_containers/glass/rag{ - pixel_y = 8; - pixel_x = -3 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -6; - pixel_y = 16 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 4; - pixel_y = 17 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"wng" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar_atmos) -"wnh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"wns" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"wnz" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"wnF" = ( -/obj/floor_decal/corner/black/full, -/obj/structure/closet/secure_closet/iso, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/iso_quarters) -"wnK" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"wnO" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"wnT" = ( -/obj/machinery/door/airlock/external{ - frequency = 1380; - id_tag = "petrov_shuttle_outer"; - name = "Petrov Exterior Access"; - req_access = list("ACCESS_PETROV_HELM"); - autoset_access = 0 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/shuttle_landmark/petrov/start, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/petrov/airlock) -"wnX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"wnY" = ( -/obj/structure/bed/sofa/l/brown{ - dir = 8 - }, -/obj/floor_decal/carpet/red{ - dir = 1 - }, -/obj/floor_decal/carpet/red{ - dir = 4 - }, -/obj/floor_decal/carpet/red{ - dir = 5 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"wod" = ( -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/turbolift/medical_lift) -"woo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"wop" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/aftport) -"wot" = ( -/turf/simulated/wall/prepainted, -/area/vacant/dungeon) -"woz" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"woC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood/walnut{ - icon_state = "walnut_broken5" - }, -/area/vacant/bar) -"woD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/floor_decal/techfloor/corner, -/obj/floor_decal/techfloor/corner{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"woE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"woN" = ( -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/closet/radiation, -/obj/floor_decal/spline/plain/yellow{ - dir = 8 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"woR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"woS" = ( -/obj/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/greengrid, -/area/engineering/gravitaional_generator) -"wpa" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"wph" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"wpi" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"wpk" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/sign/science_1{ - dir = 1; - pixel_y = -32 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/purple/bordercorner2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"wpo" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 4 - }, -/obj/item/folder/nt, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_r) -"wpI" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "xenobioaqua"; - name = "Containment Blast Doors" - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/water_cell) -"wpL" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/bridgedeck/port) -"wpT" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 6 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/bar/cobed) -"wpU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/button/alternate/door/bolts{ - dir = 1; - id_tag = "shower1"; - name = "Lock"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head_big) -"wpV" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition/storage) -"wpX" = ( -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe) -"wpZ" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/b_green/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/b_green/bordercorner2, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/bed/chair/shuttle/green{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_r) -"wqe" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"wqk" = ( -/obj/structure/fitness/weightlifter, -/obj/floor_decal/corner/black/full, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/gym) -"wqm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/vacant/cargo) -"wqq" = ( -/obj/structure/table/standard, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/firstdeck) -"wqu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"wqy" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"wqA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/aft) -"wqC" = ( -/obj/item/device/flashlight/lamp/floodlamp/green, -/obj/item/device/flashlight/lamp/floodlamp/green, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/guestpass{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/b_green/bordercorner2{ - dir = 5 - }, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/seats_place) -"wqN" = ( -/obj/structure/bed/sofa/m/black{ - dir = 10 - }, -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"wrf" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "nuke_shuttle_dock_airlock_sensor"; - master_tag = "nuke_shuttle_dock_airlock"; - pixel_y = 24 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - id_tag = "nuke_shuttle_dock_airlock_pump" - }, -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"wru" = ( -/obj/random/obstruction, -/obj/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"wrv" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/gas) -"wrC" = ( -/obj/floor_decal/corner/red, -/obj/structure/table/steel, -/obj/item/storage/box/donkpocket_mixed, -/obj/item/storage/box/donkpocket_mixed, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"wrD" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"wrG" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/storage) -"wrR" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/office/hos/cobed) -"wsk" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d3starboard) -"wst" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/chapel/mortuary) -"wsu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/office) -"wsy" = ( -/obj/decal/cleanable/dirt, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/obj/decal/cleanable/greenglow, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"wsz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"wsF" = ( -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/bridgedeck/starboard) -"wsH" = ( -/obj/structure/table/woodentable_reinforced/walnut, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/cafe) -"wsQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/fore) -"wsR" = ( -/obj/machinery/door/airlock/glass/civilian{ - autoset_access = 0; - name = "Long Term Dorms" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/sierra/prison) -"wsS" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"wsW" = ( -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/structure/bed/sofa/l/teal, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"wtc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"wtg" = ( -/obj/structure/bed/sofa/l/brown{ - dir = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/captain/beach) -"wtn" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/floor_decal/corner/grey/three_quarters{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"wtu" = ( -/obj/fluid_mapped, -/obj/machinery/atmospherics/unary/outlet_injector{ - desc = "Passively injects water into its surroundings. Has a valve attached to it that can control flow rate."; - dir = 1; - name = "water injector" - }, -/turf/simulated/floor/reinforced, -/area/maintenance/waterstore) -"wtw" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"wty" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/surgery{ - pixel_y = 6 - }, -/obj/item/reagent_containers/spray/sterilizine, -/obj/machinery/vending/wallmed1{ - name = "Emergency NanoMed"; - pixel_y = 30 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"wtA" = ( -/obj/structure/table/standard, -/obj/floor_decal/corner/blue/diagonal, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/modular_computer/tablet/lease/preset/command, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"wtD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/firstdeck/centralport) -"wtH" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/crew_quarters/adherent) -"wtJ" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/starboard) -"wtM" = ( -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"wtP" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"wtU" = ( -/obj/structure/table/rack, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/item/inflatable_dispenser, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"wua" = ( -/obj/structure/sign/warning/docking_area{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/catwalk, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/space, -/area/space) -"wue" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"wug" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 6 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"wuh" = ( -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/heads/office/captain) -"wui" = ( -/obj/structure/table, -/obj/item/stack/material/steel, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"wuk" = ( -/obj/structure/table/woodentable_reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Chief Steward"; - destination = "NanoTrasen Central Command" - }, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/command/chief_steward) -"wun" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/center) -"wuE" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/structure/undies_wardrobe, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/ce/cobed) -"wuG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"wuH" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"wuI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/carpet/blue, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/captain) -"wuO" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"wuP" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"wuR" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"wuT" = ( -/obj/floor_decal/corner/purple/half{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"wve" = ( -/obj/machinery/portable_atmospherics/canister/hydrogen{ - start_pressure = 14999 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"wvg" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/open, -/area/space) -"wvk" = ( -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/structure/closet/emcloset, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"wvp" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 8 - }, -/obj/floor_decal/corner/yellow{ - dir = 6 - }, -/obj/machinery/vending/coffee{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/central_stairwell) -"wvv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/bio_suit/anomaly, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/bio_hood/anomaly, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"wvA" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"wvG" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"wvM" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/item/stool/padded/red, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"wvO" = ( -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"wvT" = ( -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/obj/structure/coatrack, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/forensic) -"wvZ" = ( -/obj/machinery/camera/network/hangar, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"wwf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/aftstarboard) -"wwj" = ( -/obj/structure/stairs/north, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/ward) -"wwm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/vault/bolted{ - id_tag = "civsafedoorport"; - name = "Second Deck Safe Room" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"wwo" = ( -/obj/structure/table/marble, -/obj/structure/window/reinforced, -/obj/item/storage/fancy/egg_box, -/obj/floor_decal/corner/red/diagonal, -/obj/floor_decal/spline/fancy/black, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"wwr" = ( -/obj/structure/bed, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell2) -"wws" = ( -/obj/structure/table/standard, -/obj/item/device/taperecorder/empty, -/turf/simulated/floor/tiled/white/monotile, -/area/vacant/gambling) -"www" = ( -/obj/shuttle_landmark/merc/deck5, -/turf/space, -/area/space) -"wwG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"wwH" = ( -/turf/simulated/floor/tiled, -/area/vacant/cargo) -"wwN" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"wwR" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"wwT" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"wwV" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"wxd" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/glass/engineering{ - req_access = newlist(); - dir = 8; - name = "Engineering EVA Storage" - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/engineering/engine_eva) -"wxi" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/bed/chair/padded/blue, -/obj/structure/closet/medical_wall/filled{ - pixel_y = 32 - }, -/obj/random/firstaid, -/obj/random/firstaid, -/obj/random/medical, -/obj/item/reagent_containers/food/snacks/proteinbar, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"wxx" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/b_green/bordercorner2{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/bed/chair/shuttle/green{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/seats_place) -"wxL" = ( -/obj/structure/catwalk, -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#4c535b" - }, -/area/quartermaster/hangar/upper) -"wxO" = ( -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"wxQ" = ( -/obj/machinery/cryopod, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod1/station) -"wxY" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"wyb" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 6 - }, -/obj/floor_decal/snow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/closet/fridge/meat, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/galley/freezer) -"wyg" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/port) -"wyn" = ( -/obj/structure/bed/padded, -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/item/bedsheet/green, -/obj/machinery/light_construct, -/turf/simulated/floor/tiled/white, -/area/medical/virology/ward) -"wyp" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/structure/bed/chair/office/purple, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"wyt" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/structure/bed/chair/rounded/blue{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"wyx" = ( -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"wyy" = ( -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"wyB" = ( -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"wyE" = ( -/obj/structure/table/woodentable/maple, -/obj/machinery/recharger, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/wardhallway) -"wyH" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/cistern) -"wyO" = ( -/obj/structure/table/standard, -/obj/item/storage/firstaid/sleekstab{ - pixel_y = 10 - }, -/obj/item/storage/firstaid/stab, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/ward) -"wyV" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"wyZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 8 - }, -/obj/machinery/camera/network/engine{ - c_tag = "Engine - Starboard Thruster"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"wzi" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 8 - }, -/obj/structure/bed/chair/office/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/suplocker_room) -"wzk" = ( -/obj/structure/table/rack, -/obj/item/stack/material/wood/walnut{ - amount = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftport) -"wzp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"wzq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"wzw" = ( -/obj/structure/closet/secure_closet/medical_sierra, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Equipment - Locker Room" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"wzy" = ( -/turf/simulated/open, -/area/crew_quarters/cafe/upper) -"wzD" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/spline/plain/brown{ - dir = 8 - }, -/obj/structure/holoplant, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/actor) -"wzG" = ( -/obj/structure/closet/crate/plastic, -/obj/decal/cleanable/cobweb2, -/obj/item/bodybag, -/obj/item/reagent_containers/ivbag/blood/human/oneg, -/obj/item/reagent_containers/ivbag/blood/human/oneg, -/turf/simulated/floor/plating, -/area/vacant/infirmary) -"wzH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"wzQ" = ( -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"wzU" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"wAh" = ( -/obj/structure/flora/pottedplant/smalltree, -/obj/floor_decal/corner/black/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/hos/cobed) -"wAw" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"wAE" = ( -/obj/structure/catwalk, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"wAR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/water_cell) -"wAS" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"wAU" = ( -/obj/floor_decal/corner/green/three_quarters{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 4 - }, -/obj/machinery/meter, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/corner/purple/bordercorner, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"wAZ" = ( -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/staging) -"wBb" = ( -/turf/simulated/wall/r_wall/hull, -/area/quartermaster/exploration/eva) -"wBg" = ( -/obj/machinery/telecomms/server/presets/service, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"wBl" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"wBq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"wBr" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id_tag = "Skynet_launch"; - name = "Mech Bay"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/assembly/chargebay) -"wBP" = ( -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/cistern) -"wBR" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"wBV" = ( -/obj/structure/bed/chair/padded/red, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/hangar/upper) -"wBZ" = ( -/obj/machinery/suit_storage_unit/explorer, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/expedition{ - c_tag = "Expedition - EVA"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/eva) -"wCd" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"wCk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"wCl" = ( -/obj/machinery/air_sensor/nacelle/second/plasma, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d3port) -"wCt" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/random/closet, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"wCv" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/structure/table/woodentable_reinforced/ebony, -/obj/machinery/fabricator/micro/bartender{ - pixel_x = 4 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"wCA" = ( -/obj/floor_decal/corner/red/diagonal, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"wCL" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/bunk) -"wDa" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"wDi" = ( -/obj/structure/table/steel_reinforced, -/obj/item/book/manual/atmospipes, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"wDm" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod3/station) -"wDo" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"wDC" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"wDG" = ( -/obj/machinery/telecomms/server/presets/common, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"wDJ" = ( -/obj/structure/closet/fridge, -/obj/floor_decal/spline/fancy/black{ - dir = 5 - }, -/obj/floor_decal/snow, -/obj/machinery/camera/network/second_deck{ - c_tag = "Mess Hall - Kitchen - Freezer" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/galley/freezer) -"wDQ" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 8; - name = "cargo outlet" - }, -/obj/structure/sign/warning/mail_delivery{ - pixel_y = 24 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/railing/mapped, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/quartermaster/office/post) -"wDS" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/item/storage/box/rxglasses, -/obj/item/storage/box/rxglasses, -/obj/item/cane, -/obj/item/cane, -/obj/item/wheelchair_kit, -/obj/item/wheelchair_kit, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"wEb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"wEf" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/structure/dispenser, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/hardstorage) -"wEl" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hardstorage) -"wEn" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"wEu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"wEw" = ( -/obj/floor_decal/stairs{ - dir = 4 - }, -/turf/simulated/floor/wood/bamboo{ - name = "stairs" - }, -/area/crew_quarters/garden_room) -"wEy" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/tcommsat/computer) -"wEU" = ( -/obj/machinery/door/airlock/vault/bolted{ - id_tag = "selfddoor" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/alternate/door/bolts{ - id_tag = "selfddoor"; - name = "Vault Airlock Bolt Control"; - pixel_y = -32; - req_access = list("ACCESS_VAULT") - }, -/obj/item/airlock_brace{ - req_access = list("ACCESS_VAULT") - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/nuke_storage) -"wFa" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d1port) -"wFh" = ( -/turf/simulated/wall/r_wall/hull{ - can_open = 1 - }, -/area/command/bsa) -"wFo" = ( -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge/upper) -"wFx" = ( -/obj/machinery/vending/wallmed2{ - dir = 8; - pixel_x = 23 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/tiled/monotile, -/area/shuttle/escape_pod/escape_pod1/station) -"wFy" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/engineering/engine_monitoring) -"wFB" = ( -/obj/structure/sign/xenobio_3{ - pixel_y = -32 - }, -/obj/floor_decal/corner/purple/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"wFO" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/hop) -"wFQ" = ( -/obj/floor_decal/carpet/blue2{ - dir = 8 - }, -/obj/floor_decal/carpet/blue2{ - dir = 1 - }, -/obj/floor_decal/carpet/blue2{ - dir = 9 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1; - icon_state = "window" - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/hop/cobed) -"wFV" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/seconddeck/hangar) -"wGf" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"wGh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"wGK" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"wGZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/bed/chair/padded/purple{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/entry) -"wHf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/recharger, -/obj/structure/table/steel_reinforced, -/obj/machinery/light, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"wHk" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/aft_stairwell) -"wHn" = ( -/obj/machinery/cryopod, -/obj/machinery/computer/cryopod{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod2/station) -"wHp" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/bridgedeck/aft) -"wHD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/sign/warning/high_voltage{ - dir = 1; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"wHL" = ( -/obj/floor_decal/industrial/hatch/grey, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/security{ - name = "Interrogation" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/sierra/interrogation/second) -"wHP" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/wallframe_spawn/no_grille, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown1_2" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"wHU" = ( -/obj/machinery/door/blast/shutters{ - id_tag = "portaux_warehouse"; - name = "Warehouse Shutters" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"wIm" = ( -/obj/machinery/cryopod{ - dir = 2 - }, -/obj/machinery/computer/cryopod{ - pixel_y = 24 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"wIq" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"wIr" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 9 - }, -/obj/structure/bed/chair/pew, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"wIy" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/breakroom) -"wIz" = ( -/obj/machinery/computer/modular/preset/aislot/research{ - dir = 1 - }, -/obj/floor_decal/corner/research/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/office) -"wIU" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"wIW" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/obj/machinery/computer/air_control{ - dir = 1; - input_tag = "h2_in"; - name = "Hydrogen Supply Control"; - output_tag = "h2_out"; - sensor_name = "Tank"; - sensor_tag = "h2_sensor" - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/corner/paleblue{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"wIY" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"wJj" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/corner/blue{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"wJl" = ( -/obj/structure/reagent_dispensers/coolanttank, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/ship) -"wJp" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"wJr" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/lime/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"wJw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/heads/captain/secret_room/level_one) -"wJA" = ( -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"wJE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"wJH" = ( -/obj/floor_decal/borderfloor, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"wJK" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"wJN" = ( -/turf/space, -/area/space) -"wJP" = ( -/turf/simulated/wall/prepainted, -/area/bridge/marine_room) -"wKb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"wKq" = ( -/obj/structure/hygiene/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/item/storage/mirror{ - pixel_x = 24; - pixel_y = 1 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/vacant/cargo) -"wKs" = ( -/obj/decal/cleanable/dirt, -/obj/structure/bed/chair/pew/left/mahogany, -/turf/simulated/floor/wood/walnut, -/area/vacant/sauna) -"wKC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/aft) -"wKF" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/decal/cleanable/dirt, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/monotile, -/area/maintenance/abandoned_hydroponics) -"wKI" = ( -/obj/structure/closet/crate, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/foreport) -"wKK" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table/steel_reinforced, -/obj/item/book/manual/supermatter_engine, -/obj/item/device/geiger, -/obj/item/device/binoculars, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"wKO" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/obj/machinery/camera/network/command{ - c_tag = "Command - Port Hallway"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"wLd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"wLg" = ( -/obj/structure/table/steel, -/obj/item/modular_computer/tablet/lease/preset/command, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/office/ce) -"wLl" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/machinery/ship_map, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"wLu" = ( -/obj/machinery/atmospherics/binary/pump/on, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"wLw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"wLC" = ( -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = 32; - pixel_y = -37 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/hologram/holopad{ - pixel_y = 16; - pixel_x = 16 - }, -/obj/floor_decal/corner/purple/bordercorner, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"wLT" = ( -/obj/machinery/portable_atmospherics/canister/hydrogen, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/canister) -"wLX" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/roller_bed, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/staging) -"wMi" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"wMn" = ( -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_10_hatch"; - name = "Escape Pod Ten Hatch" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod10/station) -"wMx" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1441; - id = "toxins_petrov_in" - }, -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/machinery/sparker{ - id_tag = "toxlab_petrov"; - pixel_w = 1; - pixel_z = -23 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/gas) -"wMB" = ( -/obj/floor_decal/industrial/warning/full, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "eng4"; - name = "First Deck Port Nacelle Access"; - pixel_y = 21; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/valve/shutoff/fuel{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/thruster/d1port) -"wMF" = ( -/turf/simulated/wall/prepainted, -/area/security/nuke_storage) -"wMG" = ( -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/storage) -"wMJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/access_button/airlock_exterior{ - dir = 4; - master_tag = "ai_starboard"; - name = "exterior access button"; - pixel_y = 28; - req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"wMQ" = ( -/turf/simulated/wall/prepainted, -/area/maintenance/seconddeck/hangar) -"wMT" = ( -/obj/structure/railing/mapped, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"wMV" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/item/stool/padded, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"wMZ" = ( -/obj/structure/closet/coffin/wooden, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/seconddeck/aftport) -"wNm" = ( -/obj/shuttle_landmark/sierra/deck5/exploration_shuttle, -/turf/space, -/area/space) -"wNp" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Bridge Checkpoint"; - autoset_access = 0; - req_access = list("ACCESS_SEC_DOORS") - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/blast/regular/lockdown{ - id_tag = "lob_bridge_lock" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/lobby) -"wNq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"wNr" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/cyan, -/obj/machinery/light, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/cockpit) -"wNs" = ( -/obj/floor_decal/corner/green/half, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"wNu" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"wNF" = ( -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"wNH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"wNJ" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/medical/morgue/autopsy) -"wNK" = ( -/obj/machinery/seed_storage/garden{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/hydroponics) -"wNN" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/obj/structure/sign/warning/pods/south{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"wNO" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "med_to_maint"; - name = "Infirmary to Maintenance Lockdown"; - req_access = list("ACCESS_MEDICAL"); - dir = 8; - pixel_x = 20 - }, -/obj/machinery/button/blast_door{ - id_tag = "med_morg"; - name = "Mogrue Exit Lockdown"; - pixel_x = 20; - pixel_y = 10; - req_access = list("ACCESS_MEDICAL"); - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "med_crit2"; - name = "Critical Wing 2 Lockdown"; - pixel_x = 28; - pixel_y = 10; - req_access = list("ACCESS_MEDICAL"); - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "med_crit1"; - name = "Critical Wing 1 Lockdown"; - pixel_x = 36; - req_access = list("ACCESS_MEDICAL"); - pixel_y = 10; - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "med_pat_ward"; - name = "Infirmary Patient Ward Lockdown"; - pixel_y = -10; - req_access = list("ACCESS_MEDICAL"); - pixel_x = 20; - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "med_main_reg"; - name = "Infirmary Main Entrance Lockdown"; - pixel_y = -10; - req_access = list("ACCESS_MEDICAL"); - pixel_x = 28; - dir = 8 - }, -/obj/machinery/button/blast_door{ - id_tag = "med_pub_hall"; - name = "Infirmary Public Hallway Lockdown"; - pixel_x = 36; - req_access = list("ACCESS_MEDICAL"); - pixel_y = -10; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"wNV" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"wNX" = ( -/obj/structure/bed/chair/padded/yellow, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"wOa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 4 - }, -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/r_titanium, -/area/exploration_shuttle/power) -"wOd" = ( -/obj/machinery/computer/modular/preset/civilian, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/thirddeck) -"wOe" = ( -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - First Deck Subgrid"; - name_tag = "First Deck Subgrid" - }, -/obj/machinery/power/apc/critical{ - name = "south bump"; - pixel_y = -21 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/substation/firstdeck) -"wOg" = ( -/obj/structure/filingcabinet{ - pixel_x = -10 - }, -/obj/structure/filingcabinet, -/obj/structure/filingcabinet{ - pixel_x = 10 - }, -/obj/floor_decal/corner/darkblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"wOo" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"wOq" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"wOs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"wOv" = ( -/obj/shuttle_landmark/sierra/deck2/exploration_shuttle, -/turf/space, -/area/space) -"wOw" = ( -/obj/machinery/door/blast/shutters{ - dir = 4; - id_tag = "security_permabrig_third_cell_shutters" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/sierra/brig) -"wOz" = ( -/obj/structure/cable/green, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/paint_stripe/red, -/obj/machinery/door/blast/shutters{ - dir = 4; - id_tag = "security_sergeant_shutters"; - name = "Warden Desk" - }, -/obj/wallframe_spawn/reinforced/polarized{ - id = "bo_windows" - }, -/turf/simulated/floor/plating, -/area/security/sierra/sergeant) -"wOA" = ( -/obj/structure/iv_stand, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"wOI" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"wOU" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"wPb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - dir = 4; - name = "Bridge Access"; - id_tag = "bridge_hallway_doors_starboadr" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lob_bridge_lock" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/hallway) -"wPe" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod2/station) -"wPo" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/foreport) -"wPp" = ( -/obj/machinery/light, -/obj/structure/closet/emcloset, -/obj/floor_decal/corner/purple/border{ - dir = 9 - }, -/obj/machinery/pager/science{ - dir = 1; - name = "Call Scientists button"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/entry) -"wPq" = ( -/obj/structure/largecrate, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"wPr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/turret_protected/ai_teleport) -"wPt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/storage/eva) -"wPB" = ( -/obj/machinery/atmospherics/binary/pump/on{ - target_pressure = 200; - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"wPH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"wPK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - id_tag = "ai_core_inner"; - locked = 1; - name = "AI Internal Access" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "ai_core_airlock"; - name = "interior access button"; - pixel_x = 7; - pixel_y = -24; - req_access = list("ACCESS_AI_UPLOAD") - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/turret_protected/ai_teleport) -"wPL" = ( -/obj/structure/sign/emergonly{ - dir = 4; - pixel_x = -32 - }, -/obj/floor_decal/industrial/hatch/red, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/staging) -"wPQ" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor/hole, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"wPR" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"wPU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"wPV" = ( -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/steel_grid, -/area/command/bsa) -"wQa" = ( -/obj/machinery/button/blast_door{ - id_tag = "auxbar"; - name = "Blast Shutter Control"; - pixel_x = 26 - }, -/turf/simulated/floor/wood/walnut{ - icon_state = "walnut_broken5" - }, -/area/vacant/bar) -"wQf" = ( -/obj/structure/closet/coffin/wooden, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/corner/black/mono, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/chapel/mortuary) -"wQg" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/exploration_shuttle/power) -"wQh" = ( -/obj/floor_decal/techfloor, -/obj/machinery/light/spot, -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 8 - }, -/obj/engine_setup/pump_max, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_room) -"wQk" = ( -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue) -"wQs" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"wQC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/xenobio) -"wQE" = ( -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/wall/r_titanium, -/area/shuttle/petrov/equipment) -"wQM" = ( -/obj/machinery/light, -/obj/structure/table/rack/dark, -/obj/item/storage/firstaid/adv{ - pixel_y = 8 - }, -/obj/item/storage/firstaid/stab{ - pixel_y = 2 - }, -/obj/item/storage/firstaid/adv{ - pixel_y = -3 - }, -/obj/item/device/robotanalyzer, -/obj/item/stack/nanopaste{ - pixel_x = 1 - }, -/obj/item/stack/nanopaste{ - pixel_x = -6 - }, -/obj/floor_decal/spline/plain/paleblue{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/storage) -"wRc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"wRe" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/space) -"wRf" = ( -/obj/floor_decal/borderfloorblack/corner{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/meeting_room) -"wRk" = ( -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/industrial/danger/corner, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"wRm" = ( -/obj/machinery/computer/modular/preset/cardslot/command{ - dir = 4 - }, -/obj/floor_decal/corner/mauve/mono, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"wRs" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/reinforced, -/area/thruster/d3port) -"wRA" = ( -/obj/floor_decal/corner/yellow/half{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"wRB" = ( -/obj/floor_decal/corner/green/half{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"wRD" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"wRH" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "Mail" - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 22; - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/supply{ - c_tag = "Supply Office - Post Office"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"wRX" = ( -/obj/item/stool, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"wSa" = ( -/obj/machinery/porta_turret{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/machinery/flasher{ - dir = 8; - id_tag = "ai_core"; - pixel_x = 24 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"wSb" = ( -/obj/structure/table/standard, -/obj/item/bodybag/rescue/loaded, -/obj/item/bodybag/rescue/loaded, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/ward) -"wSm" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"wSp" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/open, -/area/quartermaster/hangar/upper) -"wSG" = ( -/obj/floor_decal/corner/yellow, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/flora/pottedplant/tropical, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/ce/cobed) -"wSK" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"wSZ" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"wTa" = ( -/obj/structure/table/standard, -/obj/machinery/button/alternate/door{ - desc = "A remote control-switch for the office door."; - id_tag = "mental_health_door"; - name = "Office Door Control"; - pixel_x = -4; - pixel_y = 7; - req_access = list("ACCESS_PSYCHIATRIST") - }, -/obj/machinery/button/windowtint{ - id = "mental_health_windows"; - pixel_x = 4; - pixel_y = 7; - range = 11 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"wTr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/auxillary/port) -"wTv" = ( -/obj/structure/table/woodentable/ebony, -/obj/item/device/synthesized_instrument/guitar, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"wTA" = ( -/obj/floor_decal/corner/black{ - dir = 6 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Medbay Hall"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"wTF" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/center) -"wTG" = ( -/obj/structure/sign/nanotrasen{ - dir = 8 - }, -/turf/simulated/wall/r_wall/hull, -/area/storage/airlock_canisters) -"wTI" = ( -/turf/simulated/floor/plating, -/area/vacant/infirmary) -"wUa" = ( -/obj/structure/catwalk, -/obj/machinery/light/spot, -/turf/simulated/floor/shuttle_ceiling/sierra/air{ - color = "#4c535b" - }, -/area/quartermaster/hangar/upper) -"wUi" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/locker_room) -"wUn" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"wUo" = ( -/obj/floor_decal/corner/red/diagonal, -/obj/floor_decal/spline/fancy/black, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/security/sierra/prison) -"wUp" = ( -/obj/machinery/recharge_station, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/assembly/robotics) -"wUq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"wUr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"wUu" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc/high{ - dir = 8; - name = "west bump"; - pixel_x = -25 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"wUC" = ( -/obj/structure/table/rack, -/obj/random/trash, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"wUD" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/purple/bordercorner2, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"wUM" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/structure/holoplant, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/aft_stairwell) -"wUS" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/recharge_station, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"wUT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/disposal/small{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/port) -"wUV" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = -21 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"wVd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"wVe" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/obj/random/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_cyborg_upload) -"wVf" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"wVj" = ( -/obj/floor_decal/corner/red/border, -/obj/machinery/light/led/small, -/obj/machinery/hologram/holopad{ - pixel_x = 16 - }, -/obj/floor_decal/spline/fancy/black, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/bar) -"wVv" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Mess Hall - Canteen - Distribution"; - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"wVw" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/camera/network/engineering{ - c_tag = "Engineering - Substation - First Deck" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/firstdeck) -"wVA" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"wVD" = ( -/obj/machinery/atmospherics/unary/freezer, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"wVI" = ( -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"wVJ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"wVO" = ( -/obj/machinery/suit_storage_unit/engineering/alt, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_eva) -"wVT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/medical/virology/atmos) -"wWb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet, -/area/chapel/main) -"wWd" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/shuttlefuel) -"wWk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/ntlogo, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/rnd/entry) -"wWm" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/l3closet/scientist, -/obj/floor_decal/corner/grey/diagonal, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/rnd/locker) -"wWo" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/rack, -/obj/random/storage, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"wWp" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/structure/sign/directions/janitor{ - dir = 1; - pixel_x = -32; - pixel_y = -10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"wWr" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/green/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/green/bordercorner2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"wWt" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"wWz" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"wWF" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/stock_parts/circuitboard/message_monitor, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_ridged, -/area/storage/tech) -"wWI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small, -/obj/machinery/power/apc/critical{ - name = "north bump"; - pixel_y = 21; - dir = 1 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"wWV" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/firstdeck/aftstarboard) -"wWY" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/vending/games, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"wXb" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/catwalk_plated/dark, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/hallway/primary/bridgedeck/aft) -"wXc" = ( -/obj/structure/table/rack, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/adv, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/locker) -"wXk" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/bed/padded, -/obj/item/bedsheet/purple, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/bunk) -"wXr" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "lounge_windows" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/garden_room) -"wXw" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/wallframe_spawn/reinforced/polarized/full, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/iaa) -"wXB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"wXK" = ( -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"wXZ" = ( -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"wYj" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/machinery/button/blast_door{ - pixel_y = 24; - id_tag = "armory"; - name = "Armory blast door-control"; - req_access = list("ACCESS_ARMORY") - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"wYl" = ( -/obj/structure/ladder, -/obj/catwalk_plated/dark, -/turf/simulated/open, -/area/crew_quarters/galley) -"wYp" = ( -/obj/floor_decal/corner/red, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"wYr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Teleport Maintenance"; - req_access = newlist() - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/teleporter) -"wYz" = ( -/obj/floor_decal/corner/green/three_quarters{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 5 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/obj/structure/closet/secure_closet/hydroponics_sierra, -/obj/machinery/camera/network/research{ - c_tag = "Research - Xenoflora Atmospherics" - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"wYF" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "xenolow_airlock"; - name = "Xenobiology Access Console"; - pixel_x = 24; - req_access = list("ACCESS_XENOBIO") - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/monotile, -/area/rnd/xenobiology/entry2) -"wYI" = ( -/obj/structure/closet/emcloset, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"wYJ" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/high_sec) -"wYN" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/floor_decal/industrial/warning/cee{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"wYV" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/mauve/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"wYZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/sergeant) -"wZg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"wZo" = ( -/obj/machinery/atmospherics/unary/vent_pump/tank{ - dir = 1; - external_pressure_bound = 0; - external_pressure_bound_default = 0; - icon_state = "map_vent_in"; - id_tag = "n2o_out"; - initialize_directions = 1; - internal_pressure_bound = 4000; - internal_pressure_bound_default = 4000; - pressure_checks = 2; - pressure_checks_default = 2; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced/n20, -/area/engineering/atmos) -"wZr" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/b_green/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/b_green/bordercorner2{ - dir = 6 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/bed/chair/shuttle/green, -/turf/simulated/floor/tiled, -/area/exploration_shuttle/cargo_r) -"wZw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"wZz" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/floor_decal/corner/black/three_quarters{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/structure/closet/walllocker{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"wZC" = ( -/obj/floor_decal/corner/black{ - dir = 5 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"wZI" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/hygiene/toilet, -/obj/item/taperoll/bog{ - pixel_x = -12; - pixel_y = -10 - }, -/obj/landmark/start, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head) -"wZR" = ( -/obj/floor_decal/corner/green/border, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"xaa" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "ai_starboard_outer"; - name = "Engineering External Access" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/aftport) -"xab" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"xae" = ( -/obj/structure/table/steel, -/obj/item/clothing/suit/chef/classic, -/obj/item/material/knife/combat, -/obj/floor_decal/borderfloorblack/corner{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"xaj" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/paint/nt_white, -/obj/machinery/door/firedoor, -/obj/paint_stripe/nt_red, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/shuttle/petrov/ship) -"xam" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"xar" = ( -/obj/structure/morgue, -/obj/floor_decal/industrial/outline/blue, -/obj/structure/closet/walllocker{ - pixel_x = -28 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"xaC" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/quartermaster/exploration/storage) -"xaE" = ( -/obj/shuttle_landmark/skipjack/deck1, -/turf/space, -/area/space) -"xaG" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"xaJ" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"xaK" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lob_bridge_lock" - }, -/turf/simulated/floor/plating, -/area/bridge/hallway) -"xaM" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 4 - }, -/obj/floor_decal/corner/green/half{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"xaP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/entry) -"xaV" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"xbm" = ( -/obj/floor_decal/carpet/purple, -/obj/floor_decal/carpet/purple{ - dir = 4 - }, -/obj/floor_decal/carpet/purple{ - dir = 6 - }, -/obj/structure/dogbed, -/mob/living/simple_animal/hostile/retaliate/beast/diyaab{ - dir = 8; - faction = "boo"; - name = "Boo"; - response_disarm = "bops"; - response_harm = "kicks"; - response_help = "pets" - }, -/obj/machinery/light, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/office/rd/cobed) -"xbp" = ( -/obj/floor_decal/borderfloor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"xbx" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"xbA" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - id_tag = "xenobio3"; - name = "Containment Blast Doors" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/rnd/xenobiology/level1) -"xbC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"xbE" = ( -/obj/structure/lattice, -/obj/floor_decal/industrial/traffic{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"xbG" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/table/rack, -/obj/item/stack/material/steel{ - amount = 25 - }, -/obj/item/stack/material/steel{ - amount = 25 - }, -/obj/item/stack/material/steel{ - amount = 25 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - color = "#8c911d" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/assembly/robotics) -"xbJ" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/assembly/robotics) -"xbL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"xbO" = ( -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"xbY" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"xbZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"xcb" = ( -/obj/structure/closet/crate/secure/loot, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"xce" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/sign/warning/deathsposal{ - pixel_x = -32 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 8 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 8 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/xenobiology/level1) -"xch" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"xck" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red{ - dir = 6 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"xcm" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"xcq" = ( -/obj/structure/railing/mapped, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"xct" = ( -/obj/wallframe_spawn/reinforced/titanium, -/obj/machinery/door/blast/regular/open{ - id_tag = "PetrovShield"; - name = "Petrov Blast Shutters" - }, -/obj/paint/nt_white, -/obj/paint_stripe/nt_red, -/turf/simulated/floor/plating, -/area/shuttle/petrov/scan) -"xcu" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 4 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"xcw" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - id_tag = "ai_bridge_pump" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"xcx" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"xcB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"xcF" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"xcJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/barrier, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"xcU" = ( -/obj/floor_decal/corner/lime/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/coffee, -/obj/machinery/rotating_alarm/security_alarm{ - pixel_y = 13 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/fore) -"xcX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"xcZ" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"xdi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/bluegrid, -/area/engineering/bluespace/chamber) -"xdk" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -21 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment, -/obj/structure/mopbucket, -/obj/item/mop, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/storage) -"xdv" = ( -/obj/structure/sign/warning/hot_exhaust, -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/firstdeck/aftstarboard) -"xdx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/prepainted, -/area/hydroponics) -"xdB" = ( -/obj/machinery/door/airlock/research{ - name = "Custodial Closet" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/eva) -"xdC" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/machinery/papershredder, -/obj/machinery/light, -/obj/machinery/recharger/wallcharger{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"xdE" = ( -/obj/shuttle_landmark/sierra/hangar/crucian, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"xdF" = ( -/obj/floor_decal/corner/green/border{ - dir = 9 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"xdN" = ( -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/hangar_stairs) -"xei" = ( -/turf/simulated/wall/r_wall/hull, -/area/vacant/storage) -"xek" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"xep" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/holocontrol) -"xet" = ( -/obj/structure/hygiene/shower{ - dir = 1 - }, -/obj/structure/hygiene/drain/bath, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head) -"xeA" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/vacant/monitoring) -"xeN" = ( -/obj/structure/bed/chair/shuttle/white{ - dir = 8 - }, -/obj/machinery/light/small/emergency{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 8; - id_tag = "escape_pod_3_pump" - }, -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/floor_decal/corner/grey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod3/station) -"xeO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"xeQ" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/computer/telecomms/server{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/computer) -"xeX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"xeY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"xfd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"xfi" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/security/sierra/prison) -"xft" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft_stairwell) -"xfu" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/hardstorage) -"xfw" = ( -/obj/machinery/atmospherics/unary/vent_scrubber{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/petrov/cell2) -"xfz" = ( -/obj/structure/sign/warning/hot_exhaust{ - dir = 4 - }, -/obj/paint/red, -/obj/paint_stripe/white, -/turf/simulated/wall/ocp_wall, -/area/shuttle/petrov/gas) -"xfC" = ( -/obj/structure/table/steel_reinforced, -/obj/item/modular_computer/laptop/preset/custom_loadout/advanced, -/obj/floor_decal/corner/darkblue/mono, -/obj/structure/filingcabinet/wallcabinet{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"xfY" = ( -/obj/machinery/r_n_d/circuit_imprinter, -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/railing/mapped{ - init_color = "#8c911d"; - dir = 1; - color = "#8c911d" - }, -/obj/structure/reagent_dispensers/acid{ - density = 0; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"xgj" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"xgk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"xgp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod3/station) -"xgt" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"xgA" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - pixel_y = 8; - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/galley) -"xgB" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"xgD" = ( -/obj/floor_decal/techfloor/orange{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/greengrid, -/area/engineering/gravitaional_generator) -"xgE" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/heads/office/rd/cobed) -"xgH" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Petrov Checkpoint"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"xgP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner/grey/diagonal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"xgS" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/decal/cleanable/dirt, -/obj/item/reagent_containers/food/drinks/cans/cherrycola, -/obj/item/reagent_containers/food/drinks/cans/coffeecola{ - pixel_y = 12; - pixel_x = -7 - }, -/obj/item/reagent_containers/food/drinks/cans/coffeecola{ - pixel_y = 11; - pixel_x = 10 - }, -/obj/item/reagent_containers/food/drinks/cans/coffeecola{ - pixel_y = -4; - pixel_x = -8 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/dungeon) -"xgT" = ( -/obj/structure/bed/sofa/r/brown{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/cafe) -"xgX" = ( -/obj/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"xgZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green, -/obj/wallframe_spawn/reinforced/polarized{ - id = "cap_windows" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/office/captain) -"xhd" = ( -/obj/item/stool/bar/padded, -/obj/floor_decal/corner/red{ - dir = 10 - }, -/obj/floor_decal/corner/red{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/cafe) -"xhp" = ( -/obj/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"xhr" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/vacant/prototype/engine) -"xhu" = ( -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"xhz" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"xhA" = ( -/obj/structure/table/woodentable/walnut, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/device/flashlight/lamp/green, -/obj/floor_decal/carpet/green, -/obj/floor_decal/carpet/green{ - dir = 8 - }, -/obj/floor_decal/carpet/green{ - dir = 10 - }, -/turf/simulated/floor/carpet/green, -/area/medical/mentalhealth/therapyroom) -"xhN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/forestarboard) -"xhU" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/catwalk_plated/dark, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/bridge/hallway) -"xhX" = ( -/obj/structure/handrail{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"xia" = ( -/obj/structure/cable/green, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/wallframe_spawn/reinforced/polarized/full{ - id = "mental_health_windows" - }, -/turf/simulated/floor/plating, -/area/medical/mentalhealth) -"xic" = ( -/obj/shuttle_landmark/escape_pod/start/pod9, -/obj/wallframe_spawn/reinforced/titanium, -/turf/simulated/floor/plating, -/area/shuttle/escape_pod/escape_pod9/station) -"xig" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"xik" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/floor_decal/corner/green{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"xim" = ( -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/bordercorner, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"xin" = ( -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"xip" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/landmark{ - name = "lightsout" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"xiA" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/machinery/air_sensor{ - id_tag = "toxins_petrov_sensor" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/shuttle/petrov/gas) -"xiD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"xiE" = ( -/obj/structure/table/rack, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"xiJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/ladder/up, -/obj/floor_decal/industrial/warning/fulltile, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"xiS" = ( -/obj/structure/table/rack, -/obj/item/clothing/accessory/storage/bandolier/safari, -/obj/item/gun/launcher/net, -/obj/item/clothing/accessory/storage/bandolier/safari, -/obj/item/gun/launcher/net, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/exploration/storage) -"xiV" = ( -/obj/floor_decal/industrial/traffic{ - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/floor_decal/industrial/traffic{ - dir = 1; - detail_color = "#a2819e"; - color = "#a2819e" - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor, -/area/turbolift/rndmaint_lift) -"xiW" = ( -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine{ - department = "IAA Office"; - destination = "NanoTrasen Central Command" - }, -/obj/item/documents/nanotrasen/sierra, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/structure/closet/walllocker/secure_closet{ - pixel_y = 32 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/corner/darkblue/bordercorner2, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/iaa/high_sec) -"xiY" = ( -/obj/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing/mapped, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/power/terminal, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"xjd" = ( -/obj/floor_decal/carpet/purple{ - dir = 8 - }, -/turf/simulated/floor/carpet/purple, -/area/crew_quarters/heads/office/rd/cobed) -"xje" = ( -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"xjf" = ( -/obj/structure/table/reinforced, -/obj/floor_decal/corner/beige{ - dir = 5 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"xjk" = ( -/obj/floor_decal/corner/green/half{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"xjo" = ( -/obj/floor_decal/corner/grey/full, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"xjq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/floor_decal/techfloor/orange/corner, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"xjr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/warning/pods/west{ - dir = 8; - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"xjt" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"xjw" = ( -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/floor_decal/corner/green/bordercorner, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"xjE" = ( -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/structure/table/standard{ - name = "plastic table frame" - }, -/obj/machinery/rotating_alarm/security_alarm{ - dir = 4; - pixel_x = -14 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"xjQ" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/tech_loot, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"xjT" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/bridgedeck/starboard) -"xjV" = ( -/turf/simulated/wall/prepainted, -/area/hallway/primary/seconddeck/aft_stairwell) -"xjZ" = ( -/turf/simulated/wall/r_wall/hull, -/area/maintenance/solar/starboard) -"xkk" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - id_tag = "ai_bridge_inner"; - locked = 1; - name = "Engineering External Access" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/access_button/airlock_interior{ - pixel_y = 24; - master_tag = "ai_bridge_airlock" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/bridgedeck/aft) -"xkl" = ( -/obj/structure/sign/warning/airlock{ - dir = 8 - }, -/turf/simulated/wall/prepainted, -/area/maintenance/solar/bridge_port) -"xkv" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"xkD" = ( -/obj/machinery/constructable_frame/computerframe{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"xkE" = ( -/obj/structure/table/reinforced, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Holodeck - Center" - }, -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/holocontrol) -"xkF" = ( -/obj/structure/table/standard, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/floor_decal/corner/green/half{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/item/device/science_tool, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"xkH" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/center) -"xkR" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"xkX" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"xkZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"xlb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/solar) -"xlf" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "hydroponics_space"; - name = "Space Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/hydroponics) -"xli" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"xlq" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/maintenance/fourthdeck/forestarboard) -"xls" = ( -/obj/structure/ladder, -/obj/structure/lattice, -/turf/simulated/open, -/area/maintenance/firstdeck/centralport) -"xlz" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"xlB" = ( -/obj/structure/closet/emcloset, -/obj/floor_decal/techfloor/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/aftstarboard) -"xlH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar_stairs/upper) -"xlN" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/morgue) -"xlV" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/railing/mapped, -/turf/simulated/floor/grass/cut, -/area/hallway/primary/bridgedeck/center) -"xmj" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/hydroponics, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark/monotile, -/area/rnd/xenobiology/xenoflora) -"xml" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/water_cell) -"xmm" = ( -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"xmq" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/bed/sofa/l/brown{ - dir = 4 - }, -/obj/floor_decal/spline/fancy/black, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/cafe) -"xmF" = ( -/obj/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, -/obj/structure/closet/firecloset, -/obj/item/storage/briefcase/inflatable, -/obj/random/maintenance, -/obj/machinery/button/alternate/door/bolts{ - id_tag = "bridgesafe_front"; - name = "safe room door-control"; - pixel_x = -24; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"xmH" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/lightgrey/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"xmK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/machinery/light/spot{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"xmN" = ( -/obj/structure/closet/emcloset, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"xmU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/gas) -"xnd" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/floor_decal/industrial/hatch/yellow, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/high_voltage{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/heads/office/hop) -"xnf" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/item/book/manual/engineering_singularity_safety, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"xng" = ( -/obj/structure/lattice, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/space) -"xnh" = ( -/obj/machinery/cryopod{ - dir = 1 - }, -/obj/machinery/computer/cryopod{ - pixel_x = -32 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod7/station) -"xnl" = ( -/obj/structure/bed/chair/shuttle/blue, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/guppy_hangar/start) -"xno" = ( -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"xnr" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"xnB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 1; - name = "Security Checkpoint"; - sort_type = "Security Checkpoint" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"xnJ" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/bed/chair/office/comfy/red{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"xnL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner, -/obj/structure/disposalpipe/sortjunction/flipped{ - dir = 8; - name = "Security Equipment"; - sort_type = "Security Equipment" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/corner/red/bordercorner, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"xnM" = ( -/obj/floor_decal/corner/darkblue/mono, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"xoa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/aft) -"xof" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/shield_diffuser, -/obj/machinery/door/airlock/external{ - frequency = 1379; - id_tag = "solar_bridge_outer"; - locked = 1; - name = "Engineering External Access" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar/bridge_starboard) -"xog" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/constructable_frame, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/foreport) -"xoo" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level2) -"xor" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cargo_r) -"xov" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - id_tag = "solar_starboard_inner"; - name = "Engineering External Access" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar/starboard) -"xoy" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"xoB" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "engine_airlock_pump" - }, -/obj/structure/catwalk, -/obj/machinery/camera/network/engine{ - c_tag = "Engine - Access"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"xoP" = ( -/obj/item/bikehorn/rubberducky, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head) -"xoT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/fourthdeck/center) -"xoZ" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/firstdeck/center) -"xpg" = ( -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "bridge_windows" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/bridge) -"xpq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"xpx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"xpy" = ( -/obj/structure/sign/warning/docking_area{ - dir = 1 - }, -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/docking) -"xpJ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/obj/structure/cart{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"xpM" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/sign/warning/biohazard{ - pixel_y = -32 - }, -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"xpO" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"xpP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 6 - }, -/obj/machinery/door/blast/regular{ - id_tag = "ThrusterVents"; - name = "Thruster Blast Door" - }, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/engine_room) -"xpQ" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"xpT" = ( -/obj/floor_decal/techfloor, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"xpU" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"xpV" = ( -/obj/floor_decal/borderfloor/corner, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/floor_decal/industrial/danger/corner, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft_stairwell) -"xpX" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - icon_state = "shutter0"; - id_tag = "hangar_hallway_shutters"; - name = "Hangar Deck Hallway Shutters"; - opacity = 0 - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 2; - id_tag = "lockdown3_4" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/fore) -"xqa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"xqd" = ( -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"xqh" = ( -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/firstdeck/center) -"xql" = ( -/obj/machinery/atmospherics/binary/pump/high_power{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/xenobiology/atmos) -"xqA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"xqJ" = ( -/turf/simulated/wall/prepainted, -/area/vacant/monitoring) -"xrb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/prison) -"xrm" = ( -/obj/structure/dogbed, -/mob/living/simple_animal/friendly/koala/samorey, -/obj/floor_decal/carpet/purple, -/obj/floor_decal/carpet/purple{ - dir = 8 - }, -/obj/floor_decal/carpet/purple{ - dir = 10 - }, -/turf/simulated/floor/carpet/purple, -/area/chapel/office) -"xrn" = ( -/obj/floor_decal/borderfloor{ - dir = 6 - }, -/obj/machinery/disposal/small{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/warning/airlock{ - color = "#ff9900"; - name = "\improper WAY TO SPACE"; - dir = 8; - pixel_x = 32 - }, -/obj/floor_decal/corner/black/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/interrogation/second) -"xru" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - target_pressure = 200 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"xrv" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/bed/chair/padded/blue, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/seconddeck) -"xrw" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"xrC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/green/border, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"xrJ" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"xrL" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/structure/table/steel, -/obj/item/soap/red_soap, -/obj/item/material/twohanded/baseballbat, -/turf/simulated/floor/tiled/dark, -/area/maintenance/firstdeck/forestarboard) -"xrV" = ( -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"xrW" = ( -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"xrZ" = ( -/obj/machinery/photocopier, -/obj/floor_decal/corner/blue{ - dir = 6 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/machinery/button/windowtint{ - pixel_x = 20; - pixel_y = -10; - id = "cmo_windows" - }, -/obj/machinery/button/alternate/door{ - desc = "A remote control-switch for the office door."; - dir = 8; - id_tag = "cmodoor"; - name = "CMO Office Door Control"; - pixel_x = 24; - pixel_y = 6; - req_access = list("ACCESS_CHIEF_MEDICAL_OFFICER") - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/cmo) -"xsa" = ( -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"xsf" = ( -/obj/structure/catwalk, -/obj/structure/handrail, -/turf/simulated/open, -/area/space) -"xsg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 10 - }, -/obj/structure/closet/l3closet/scientist, -/obj/structure/sign/xenobio_3{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/xenobio) -"xsi" = ( -/obj/structure/table/standard, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/random/single/color/cable_coil, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"xsl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"xsr" = ( -/obj/machinery/computer/modular/preset/cardslot/command{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/command/chief_steward) -"xsu" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"xsz" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id_tag = "Biohazard"; - name = "Biohazard Shutter" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - dir = 4; - name = "Miscellaneous Research"; - req_access = newlist() - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/containment) -"xsB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/brig) -"xsC" = ( -/obj/floor_decal/spline/fancy/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"xsF" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access = list(list("ACCESS_SECURITY","ACCESS_FORENSICS")); - secured_wires = 1; - autoset_access = 0 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"xsN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/obj/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ - RCon_tag = "Ship Energy Brig" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/maintenance/firstdeck/foreport) -"xsQ" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"xsS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/structure/closet/emcloset, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engine_monitoring) -"xsT" = ( -/obj/shuttle_landmark/lift/medical_top, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/turbolift/medical_lift) -"xsW" = ( -/obj/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor/corner, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/monitoring) -"xtu" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/bridge) -"xtD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/obj/floor_decal/corner/green/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"xtM" = ( -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/obj/floor_decal/corner/grey_alt{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/assembly/robotics) -"xtN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"xtS" = ( -/obj/structure/closet/secure_closet/atmos_sierra, -/obj/item/rpd, -/obj/floor_decal/industrial/warning/full, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"xtU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"xtW" = ( -/obj/floor_decal/industrial/traffic, -/obj/floor_decal/corner/red/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"xtX" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "sierra_surgery2"; - name = "Operating Room 2"; - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/holosign/surgery{ - dir = 8; - id_tag = "sierra_surgery2" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery/second) -"xuf" = ( -/obj/structure/hygiene/shower{ - dir = 1 - }, -/obj/structure/hygiene/drain/bath, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/head) -"xuk" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/maintenance_equipstorage) -"xuw" = ( -/obj/machinery/sleeper{ - dir = 1 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/sign/warning/nosmoking_1{ - dir = 4; - pixel_x = -32 - }, -/obj/machinery/camera/network/medbay{ - c_tag = "Critical Wing - Entry"; - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/sleeper) -"xuz" = ( -/obj/structure/table/standard, -/obj/item/device/scanner/spectrometer/adv, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/turf/simulated/floor/tiled/dark/monotile, -/area/shuttle/petrov/scan) -"xuD" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai_upload) -"xuN" = ( -/obj/machinery/computer/modular/preset/security{ - dir = 4; - name = "security console" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/floor_decal/techfloor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"xuO" = ( -/turf/simulated/wall/prepainted, -/area/quartermaster/shuttlefuel) -"xuU" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"xvl" = ( -/obj/floor_decal/borderfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"xvr" = ( -/obj/structure/hygiene/shower{ - dir = 4; - pixel_x = 5 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals10, -/obj/structure/curtain/open/shower, -/obj/item/soap, -/obj/structure/closet/walllocker{ - pixel_x = -28 - }, -/obj/structure/hygiene/drain, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/prison) -"xvB" = ( -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/reagentgrinder/juicer, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/floor_decal/corner/green/three_quarters{ - dir = 8 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/item/reagent_containers/dropper, -/turf/simulated/floor/tiled, -/area/hydroponics) -"xvF" = ( -/obj/structure/table/rack, -/obj/floor_decal/industrial/outline/yellow, -/obj/random/maintenance, -/turf/simulated/floor/tiled, -/area/maintenance/seconddeck/aftstarboard) -"xvO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"xvP" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/quartermaster/hangar/upper) -"xvS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"xvT" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/corner, -/obj/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/vacant/prototype/engine) -"xvV" = ( -/obj/machinery/telecomms/server/presets/common, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"xwc" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/canister) -"xwd" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/flora/pottedplant/decorative, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"xwl" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/ladder/up, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue) -"xwp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/crystal, -/area/crew_quarters/adherent) -"xws" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"xwu" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"xwC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"xwJ" = ( -/obj/structure/foamedmetal, -/turf/simulated/floor/plating, -/area/crew_quarters/commissary) -"xwP" = ( -/obj/structure/bed/chair/office/light, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/scan) -"xwR" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralstarboard) -"xwV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"xwW" = ( -/obj/structure/table/woodentable/ebony, -/obj/item/storage/firstaid/regular{ - pixel_y = 8 - }, -/obj/item/storage/firstaid/regular{ - pixel_y = -2; - pixel_x = 9 - }, -/obj/machinery/body_scan_display{ - pixel_y = 24 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"xwY" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/forestarboard) -"xxb" = ( -/obj/structure/bed/sofa/r/black{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/forensic) -"xxf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"xxk" = ( -/obj/floor_decal/techfloor/orange, -/obj/structure/bed/chair/padded/blue{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"xxl" = ( -/obj/machinery/reagentgrinder, -/obj/item/stack/material/phoron{ - amount = 5 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/research{ - c_tag = "Xenobiology - Surgery"; - dir = 4 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/xenobiology/level1) -"xxo" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/table/standard, -/obj/item/device/scanner/xenobio, -/obj/item/device/scanner/xenobio, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/rnd/xenobiology/level1) -"xxp" = ( -/obj/machinery/computer/modular/preset/medical{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/mentalhealth) -"xxv" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engineering EVA Storage"; - req_access = newlist() - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/engine_eva) -"xxB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"xxZ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/machinery/door/airlock/multi_tile/atmos{ - dir = 8; - name = "Bridge Atmospherics Supply" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos/bridge) -"xya" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"xye" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"xyh" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/aft_stairwell) -"xyk" = ( -/obj/structure/roller_bed, -/obj/structure/iv_stand, -/obj/floor_decal/borderfloor{ - color = null; - dir = 9 - }, -/obj/floor_decal/corner/blue/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - color = null; - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/exploration_shuttle/medical) -"xyo" = ( -/obj/floor_decal/borderfloor{ - dir = 9 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/bordercorner2{ - dir = 1 - }, -/obj/structure/bookcase/manuals/engineering, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"xyq" = ( -/obj/structure/wall_frame/standard, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 4; - icon_state = "shutter0"; - id_tag = "concheckwindow"; - name = "Operation Checkpoint Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Security Checkpoint"; - autoset_access = 0 - }, -/obj/machinery/door/window/brigdoor/northleft{ - dir = 8; - name = "Security Checkpoint" - }, -/obj/machinery/door/firedoor, -/obj/structure/table/wallf{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/opscheck) -"xyt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"xyI" = ( -/obj/machinery/suit_storage_unit/pilot, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/eva) -"xyL" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_s"; - dir = 1 - }, -/obj/paint/red, -/obj/paint_stripe/red, -/turf/simulated/wall/r_titanium, -/area/shuttle/escape_pod/escape_pod9/station) -"xyO" = ( -/obj/decal/cleanable/dirt, -/obj/random/junk, -/obj/random/junk, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"xyV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Adherent Maintenance" - }, -/turf/simulated/floor/crystal, -/area/crew_quarters/adherent) -"xzd" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"xzh" = ( -/obj/machinery/computer/modular/preset/engineering{ - dir = 1 - }, -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - c_tag = "Atmospherics - Bridge Deck"; - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/bridge) -"xzj" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/solar/bridge_port) -"xzu" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"xzw" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/airless, -/area/space) -"xzD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/access_button/airlock_interior{ - master_tag = "solar_starboard"; - name = "interior access button"; - pixel_x = 12; - pixel_y = 27; - req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/solar/starboard) -"xzF" = ( -/obj/structure/bed/chair/padded/red{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/interrogation) -"xzJ" = ( -/obj/structure/disposalpipe/down{ - dir = 8 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/lattice, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/thirddeck/starboard) -"xzL" = ( -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "guppy_shield"; - name = "Window Shield" - }, -/obj/paint_stripe/yellow, -/turf/simulated/floor/plating, -/area/guppy_hangar/start) -"xzN" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/thruster/d3starboard) -"xzT" = ( -/obj/floor_decal/corner/paleblue/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/infirmary) -"xzY" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/obj/floor_decal/industrial/outline/blue, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/backstorage) -"xAd" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/floor_decal/spline/fancy/wood{ - dir = 9 - }, -/obj/machinery/light/spot{ - dir = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe/upper) -"xAj" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"xAk" = ( -/obj/floor_decal/corner/grey/full, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"xAm" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/floor_decal/borderfloor{ - dir = 5 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/obj/structure/holoplant, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"xAq" = ( -/obj/structure/bed/sofa/l/beige, -/turf/simulated/floor/carpet, -/area/crew_quarters/lounge) -"xAw" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/floor_decal/industrial/warning/full, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"xAE" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/bridge/storage) -"xAG" = ( -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"xAH" = ( -/obj/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/structure/filingcabinet/chestdrawer{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - c_tag = "Research - Misc. Chemistry"; - dir = 8; - network = list("Research","Miscellaneous Reseach") - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"xAM" = ( -/obj/machinery/suspension_gen, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/equipment) -"xBb" = ( -/obj/structure/table/standard, -/obj/item/board, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/sierra/prison) -"xBh" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/machinery/button/blast_door{ - desc = "A remote control-switch for the engine radiator viewport shutters."; - dir = 8; - id_tag = "EngineRadiatorViewport"; - name = "Engine Radiator Viewport Shutters"; - pixel_x = 25; - req_access = list("ACCESS_ENGINE_EQUIP") - }, -/obj/floor_decal/industrial/warning/corner, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 9 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"xBi" = ( -/obj/floor_decal/corner/yellow/border{ - dir = 9 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"xBk" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/suit/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/obj/item/clothing/head/helmet/space/emergency, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/safe_room/firstdeck) -"xBo" = ( -/obj/floor_decal/carpet/blue2{ - dir = 8 - }, -/turf/simulated/floor/carpet/blue3, -/area/crew_quarters/heads/office/cmo/cobed) -"xBy" = ( -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"xBF" = ( -/obj/structure/closet/crate/bin, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/machinery/camera/network/second_deck{ - c_tag = "Laundry room"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/laundry) -"xBH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/bed/chair/office/purple, -/obj/floor_decal/corner/purple/diagonal, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/level1) -"xBR" = ( -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"xBY" = ( -/obj/structure/sign/warning/biohazard{ - pixel_y = -24 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/rnd/xenobiology/atmos) -"xBZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"xCa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/red/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"xCc" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/floor_decal/corner/purple/half{ - dir = 8 - }, -/obj/item/stool/padded, -/turf/simulated/floor/tiled/dark, -/area/shuttle/petrov/security) -"xCd" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/fore) -"xCg" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/powered/scrubber, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"xCn" = ( -/obj/landmark/map_data{ - height = 5 - }, -/turf/space, -/area/space) -"xCs" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"xCz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"xCA" = ( -/obj/wallframe_spawn/reinforced_phoron, -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/engineering/atmos) -"xCB" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"xCC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/black, -/turf/simulated/wall/r_wall/hull, -/area/medical/virology/atmos) -"xCG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/turret_protected/ai_cyborg_station) -"xCJ" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile, -/area/crew_quarters/head) -"xCQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/yellow/border, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"xCW" = ( -/obj/structure/disposalpipe/down{ - dir = 8 - }, -/obj/structure/lattice, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/fuel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/seconddeck/aftport) -"xCY" = ( -/obj/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/security/nuke_storage) -"xDi" = ( -/obj/paint/black, -/obj/paint_stripe/turquoise, -/turf/simulated/wall/r_wall/prepainted, -/area/turret_protected/ai_teleport) -"xDk" = ( -/obj/structure/railing/mapped, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"xDs" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cargo_l) -"xDA" = ( -/obj/structure/sign/deck/first{ - dir = 8; - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/open, -/area/hallway/primary/firstdeck/aft_stairwell) -"xDC" = ( -/obj/machinery/vending/hotfood{ - dir = 1 - }, -/obj/floor_decal/corner/blue/diagonal{ - dir = 4 - }, -/obj/decal/cleanable/dirt, -/obj/machinery/light_construct, -/turf/simulated/floor/tiled/dark, -/area/vacant/mess) -"xDJ" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"xDK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/yellow{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"xDT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"xDU" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"xDX" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"xEc" = ( -/obj/floor_decal/corner/paleblue/diagonal, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"xEd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"xEe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"xEi" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"xEk" = ( -/obj/structure/table/standard, -/obj/machinery/reagent_temperature, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"xEn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"xEA" = ( -/obj/structure/closet/emcloset, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftstarboard) -"xEB" = ( -/obj/floor_decal/corner/grey{ - dir = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1port) -"xEE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"xEG" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/sleep/cryo/south) -"xEI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"xEJ" = ( -/obj/structure/bed/chair/pew/left, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/actor/stage) -"xEM" = ( -/obj/structure/sign/directions/supply{ - dir = 8; - pixel_y = -31 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = -24 - }, -/obj/machinery/camera/network/first_deck{ - c_tag = "First Deck - Central Stairwell"; - dir = 1 - }, -/turf/simulated/open, -/area/hallway/primary/firstdeck/central_stairwell) -"xEQ" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/purple/border, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/storage2) -"xES" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/equipment) -"xFc" = ( -/turf/simulated/floor/plating, -/area/medical/morgue) -"xFd" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/fourthdeck/aft) -"xFn" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/materials_storage) -"xFo" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/structure/railing/mapped, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"xFp" = ( -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/medical/morgue/autopsy) -"xFy" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/barrier, -/obj/item/barrier, -/obj/machinery/button/blast_door{ - pixel_y = -24; - dir = 1; - id_tag = "armory"; - name = "Armory blast door-control"; - req_access = list("ACCESS_ARMORY") - }, -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/light/small, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"xFG" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/thirddeck) -"xFK" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/door/window/southleft{ - name = "Containment Pen"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/machinery/door/blast/regular/open{ - id_tag = "xenobioa1"; - name = "Containment Blast Doors" - }, -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/level2) -"xFL" = ( -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/fore) -"xFQ" = ( -/obj/machinery/recharge_station, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/button/blast_door{ - dir = 4; - id_tag = "Skynet_launch"; - name = "Charging Bay Door Control"; - pixel_x = -24; - req_access = list("ACCESS_ROBOTICS") - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"xFT" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/holoplant, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/fore) -"xGg" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"xGi" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/crew_quarters/sleep/bunk) -"xGr" = ( -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/floor_decal/corner/black/border{ - dir = 4 - }, -/obj/floor_decal/corner/black/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hydroponics/third_deck_storage) -"xGv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/closet/walllocker{ - pixel_x = -28 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 6 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 5 - }, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/old_tile, -/area/crew_quarters/head) -"xGD" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/floor_decal/corner/purple, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/level1) -"xGM" = ( -/obj/floor_decal/corner/yellow/three_quarters{ - dir = 1 - }, -/obj/machinery/disposal, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"xGT" = ( -/obj/structure/table/standard, -/obj/item/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/barbecue{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light/spot{ - dir = 1 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"xGX" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - frequency = 1379; - id_tag = "ai_bridge_outer"; - locked = 1; - name = "Engineering External Access" - }, -/obj/machinery/access_button/airlock_exterior{ - pixel_y = -24; - master_tag = "ai_bridge_airlock" - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/bridgedeck/aft) -"xGZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/starboard) -"xHc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/centralport) -"xHi" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 5 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"xHt" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/quartermaster/hangar/upper) -"xHE" = ( -/obj/structure/closet/chefcloset_sierra, -/obj/floor_decal/corner/grey/three_quarters{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/galley/backroom) -"xHI" = ( -/obj/structure/table/reinforced, -/obj/floor_decal/corner/beige{ - dir = 10 - }, -/obj/floor_decal/corner/yellow/border, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) -"xHK" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/foreport) -"xHM" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/infirmreception) -"xHR" = ( -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/space) -"xHT" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"xHY" = ( -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/captain) -"xIb" = ( -/obj/floor_decal/borderfloorblack{ - dir = 9 - }, -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"xIg" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/foreport) -"xIj" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftport) -"xIk" = ( -/obj/machinery/door/airlock/external/bolted/cycling{ - frequency = 1380; - id_tag = "admin_shuttle_dock_outer"; - name = "Docking Port Airlock" - }, -/obj/machinery/shield_diffuser, -/obj/floor_decal/industrial/hatch/yellow, -/obj/shuttle_landmark/sierra/deck4/skrellshuttle, -/obj/shuttle_landmark/ascent_caulship/sierra, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/fourthdeck/center) -"xIl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"xIm" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/corner/paleblue/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/virology{ - name = "Patient Ward Two" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/item/taperoll/engineering/applied, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology/lab) -"xIp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/obj/machinery/hologram/holopad/longrange, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel_ridged, -/area/shuttle/escape_pod/escape_pod5/station) -"xIs" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass/civilian{ - name = "Laundry" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/laundry) -"xIC" = ( -/obj/structure/closet/emcloset/anchored, -/obj/floor_decal/corner/yellow/mono, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/thirddeck/aft_stairwell) -"xIG" = ( -/obj/structure/bed/chair/padded/blue, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"xII" = ( -/obj/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced/hydrogen/fuel, -/area/thruster/d3port) -"xIJ" = ( -/obj/structure/curtain/medical, -/turf/simulated/floor/tiled/white, -/area/medical/ward) -"xIM" = ( -/obj/item/stool/bar, -/obj/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"xIP" = ( -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"xIQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/prison) -"xIV" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/engineering{ - name = "Drone Bay"; - secured_wires = 1 - }, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/steel_ridged, -/area/turret_protected/ai_cyborg_station) -"xIW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 23 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/teleporter) -"xIY" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - frequency = 1438; - id = "cooling_in"; - name = "Coolant Injector"; - pixel_y = 1; - power_rating = 30000; - use_power = 1; - volume_rate = 700 - }, -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/engineering/engine_room) -"xIZ" = ( -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) -"xJc" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/gas) -"xJd" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/hull, -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "library_space_lower"; - name = "Space Shutters"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/lounge/upper) -"xJg" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/blue/border, -/obj/machinery/light_switch{ - pixel_x = 21; - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/hop/cobed) -"xJl" = ( -/obj/structure/railing/mapped, -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"xJo" = ( -/turf/simulated/wall/r_wall/hull, -/area/crew_quarters/visitors) -"xJH" = ( -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/multi_tile/medical{ - name = "Critical Wing Second"; - dir = 8; - id_tag = "MedbayER" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"xJO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"xJP" = ( -/obj/paint/red, -/obj/paint_stripe/white, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/wall/r_titanium, -/area/guppy_hangar/start) -"xJT" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 8 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/white, -/area/medical/infirmreception) -"xJU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/fourthdeck/aft) -"xKg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/grey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"xKj" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/thirddeck/center) -"xKr" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/forestarboard) -"xKw" = ( -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/random/tech_supply{ - pixel_y = 5; - pixel_x = -6 - }, -/obj/random/tech_supply{ - pixel_y = -8; - pixel_x = -9 - }, -/obj/random/tech_supply{ - pixel_y = 6; - pixel_x = 5 - }, -/obj/random/tech_supply{ - pixel_y = -8; - pixel_x = 7 - }, -/obj/random/tool{ - pixel_y = 2; - pixel_x = 4 - }, -/obj/random/tool{ - pixel_y = -2; - pixel_x = -5 - }, -/obj/random/tank{ - pixel_y = -1; - pixel_x = 8 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"xKB" = ( -/obj/structure/table/rack, -/obj/item/aiModule/freeform, -/obj/item/aiModule/protectStation, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/door/window/northright{ - dir = 4; - name = "Utility Modules" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"xKC" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/closet/crate/secure/phoron{ - req_access = list("ACCESS_ENGINE_EQUIP"); - name = "Emergency backup phoron crate" - }, -/obj/item/stack/material/phoron/ten, -/obj/item/stack/material/phoron/ten, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"xKP" = ( -/obj/machinery/door/blast/regular/open{ - density = 0; - id_tag = "calypso_shutters"; - name = "Protective Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced/titanium, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/paint/black, -/obj/paint_stripe/blue, -/turf/simulated/floor/plating, -/area/exploration_shuttle/cargo_r) -"xKS" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/equipment) -"xKT" = ( -/obj/structure/closet/crate, -/obj/item/clothing/mask/muzzle/tape, -/obj/item/clothing/mask/plunger, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"xKW" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"xLe" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"xLl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/quartermaster/exploration/storage) -"xLq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/hallway/primary/firstdeck/center) -"xLy" = ( -/obj/structure/sign/warning/pods/south{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"xLz" = ( -/obj/floor_decal/industrial/outline/grey, -/obj/machinery/suit_storage_unit/medical, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/eva) -"xLL" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - dir = 4; - name = "Research Office"; - req_access = newlist() - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/office) -"xLM" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"xLN" = ( -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/xenobio) -"xLO" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"xLQ" = ( -/obj/floor_decal/corner/red/half{ - dir = 8 - }, -/obj/floor_decal/corner/red{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/central_stairwell) -"xLU" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/bridgedeck/port) -"xLV" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"xMc" = ( -/obj/floor_decal/corner/black/mono, -/obj/floor_decal/corner/green/border{ - dir = 9 - }, -/obj/floor_decal/corner/green/bordercorner, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/monotile, -/area/crew_quarters/commissary) -"xMk" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"xMl" = ( -/obj/floor_decal/techfloor/orange{ - dir = 9 - }, -/obj/structure/bed/chair/padded/blue, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/bridge) -"xMn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/fuel{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/thruster/d1starboard) -"xMp" = ( -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"xMu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/wardhallway) -"xMx" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/corner/red/border, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"xMy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/obj/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"xMA" = ( -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/rnd/toxins) -"xMC" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/item/paper/sierra/compactor, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/compactor) -"xMK" = ( -/obj/structure/undies_wardrobe, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"xMO" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"xMX" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/bridgedeck/aft) -"xNb" = ( -/obj/machinery/door/airlock/civilian{ - name = "Toilets"; - req_access = newlist() - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/freezer, -/area/vacant/cargo) -"xNe" = ( -/obj/structure/sign/warning/radioactive, -/turf/simulated/wall/r_wall/hull, -/area/space) -"xNg" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 8; - pixel_y = -24 - }, -/obj/machinery/button/holosign{ - dir = 1; - id_tag = "surgery1"; - pixel_y = -24 - }, -/obj/machinery/button/windowtint{ - dir = 1; - id = "sierra_surgery1"; - pixel_x = -8; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/surgery) -"xNk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/yellow, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/fore) -"xNv" = ( -/obj/floor_decal/corner/red{ - dir = 8 - }, -/obj/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/bridge/lobby) -"xNy" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/starboard) -"xNz" = ( -/obj/shuttle_landmark/sierra/deck5/guppy, -/turf/space, -/area/space) -"xND" = ( -/obj/machinery/shield_diffuser, -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_7_berth_hatch"; - name = "Escape Pod Seven" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/firstdeck/centralstarboard) -"xNH" = ( -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/hallway/primary/bridgedeck/center) -"xNI" = ( -/obj/structure/reagent_dispensers/water_cooler{ - dir = 1 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"xNM" = ( -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/docking) -"xNQ" = ( -/turf/simulated/wall/r_wall/hull, -/area/rnd/xenobiology/level1) -"xOd" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/machinery/power/smes/buildable/preset/sierra/substation_full{ - RCon_tag = "Substation - AI Upload" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southright{ - name = "AI Maintenance" - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/turret_protected/ai_upload) -"xOe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light/spot{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"xOf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/port) -"xOg" = ( -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo/firstdeck) -"xOp" = ( -/obj/structure/bed/padded, -/obj/item/bedsheet/blue, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/curtain/open, -/obj/landmark/start{ - name = "Internal Security Operative" - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/office/iaa/iso_quarters) -"xOs" = ( -/obj/wallframe_spawn/reinforced/polarized, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/curtain/black, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"xOH" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"xOK" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/exploration_shuttle/cockpit) -"xOM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/command/exploration_leader) -"xOR" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"xOY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"xPa" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"xPb" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/floor_decal/corner/yellow/bordercorner{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/thirddeck/center) -"xPe" = ( -/obj/structure/table/standard, -/obj/item/folder/yellow, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 8; - pixel_y = -27 - }, -/obj/floor_decal/corner/yellow/half, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"xPm" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "td_port" - }, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"xPo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/equipment) -"xPp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"xPs" = ( -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/purple/bordercorner2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/aft) -"xPv" = ( -/obj/floor_decal/industrial/traffic{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"xPy" = ( -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"xPF" = ( -/obj/structure/table/rack, -/obj/item/storage/firstaid/fire{ - pixel_y = 10 - }, -/obj/item/storage/firstaid/trauma, -/obj/item/storage/firstaid/o2{ - pixel_y = -10 - }, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/equipstorage) -"xPG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/heads/office/rd) -"xPH" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"xPM" = ( -/obj/machinery/pointdefense{ - initial_id_tag = "sierra_main_pd" - }, -/obj/structure/cable/green, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"xPO" = ( -/obj/fluid_mapped, -/obj/item/clothing/under/swimsuit/blue, -/obj/item/beach_ball, -/obj/item/bananapeel, -/obj/random/junk, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"xPU" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/civilian{ - id_tag = "shower2"; - name = "Second Private Shower" - }, -/turf/simulated/floor/tiled/white/monotile, -/area/crew_quarters/head_big) -"xQg" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition/storage) -"xQm" = ( -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/civilian{ - dir = 8; - name = "Cryo Storage" - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/sleep/cryo/bridge) -"xQy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/security/sierra/breakroom) -"xQE" = ( -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/structure/closet/medical_wall/filled{ - pixel_y = 24 - }, -/obj/floor_decal/corner/grey/diagonal, -/turf/simulated/floor/tiled, -/area/rnd/research) -"xQF" = ( -/obj/wallframe_spawn/reinforced/no_grille, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/quartermaster/exploration/briefing_room) -"xQL" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"xQT" = ( -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = 28 - }, -/obj/machinery/airlock_sensor/airlock_interior{ - id_tag = "xenohight_airlock_sensor_inner"; - master_tag = "xenohight_airlock"; - pixel_x = 5; - pixel_y = 29; - req_access = list("ACCESS_XENOBIO") - }, -/obj/structure/railing/mapped, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/open, -/area/rnd/xenobiology/level1) -"xQZ" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/machinery/light/spot{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"xRa" = ( -/turf/simulated/wall/prepainted, -/area/crew_quarters/heads/captain/secret_room/level_one) -"xRc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/sleep/cryo/bridge) -"xRf" = ( -/obj/machinery/door/window{ - autoset_access = 0; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/purple/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/rnd/misc_lab) -"xRA" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/closet/crate/secure/biohazard, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"xRB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/yjunction, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"xRM" = ( -/obj/structure/railing/mapped, -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/turf/simulated/floor/tiled/white, -/area/medical/maintenance_equipstorage) -"xRO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/floor_decal/corner/purple/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"xRU" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/structure/table/steel_reinforced, -/obj/item/storage/box/glasses, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/engineering/engineering_monitoring) -"xRW" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/random/trash, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"xSc" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/corner_techfloor_grid, -/obj/floor_decal/techfloor/corner, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/bluespace) -"xSl" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/floor_decal/techfloor/corner, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/aftstarboard) -"xSm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/solar/bridge_port) -"xSo" = ( -/obj/floor_decal/borderfloorblack{ - dir = 10 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 10 - }, -/obj/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/floor_decal/corner/darkblue/bordercorner2{ - dir = 9 - }, -/obj/structure/flora/pottedplant/orientaltree, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"xSp" = ( -/obj/structure/synthesized_instrument/synthesizer/piano, -/obj/machinery/alarm{ - pixel_y = 24 - }, -/obj/floor_decal/spline/fancy/black{ - dir = 1 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"xSr" = ( -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/structure/table/woodentable_reinforced/walnut, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/item/storage/box/donut, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge/upper) -"xSt" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/dark, -/area/quartermaster/office/post) -"xSy" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"xSA" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/armory) -"xSF" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/black/border{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals10{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"xSK" = ( -/obj/structure/bed/chair/armchair/brown, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"xSL" = ( -/obj/structure/bed/chair/wood/walnut{ - dir = 1 - }, -/obj/structure/sign/poster{ - pixel_x = 32 - }, -/turf/simulated/floor/carpet, -/area/vacant/gambling) -"xSX" = ( -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"xTc" = ( -/obj/floor_decal/corner/green{ - dir = 1 - }, -/obj/floor_decal/corner/purple, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white, -/area/rnd/xenobiology/xenoflora) -"xTj" = ( -/turf/simulated/floor/tiled/white, -/area/medical/staging) -"xTl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft) -"xTq" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor/orange, -/obj/structure/window/boron_reinforced{ - dir = 1 - }, -/obj/structure/railing/mapped, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/gravitaional_generator) -"xTs" = ( -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/mining/drill, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/expedition/storage) -"xTt" = ( -/obj/item/stool/padded, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley/backroom) -"xTv" = ( -/obj/structure/hygiene/shower{ - dir = 4; - pixel_x = -2 - }, -/obj/structure/curtain/open/shower{ - opacity = 1 - }, -/obj/item/bikehorn/rubberducky, -/obj/item/soap, -/obj/structure/closet/walllocker{ - pixel_x = -28 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/heads/captain/secret_room/level_one) -"xTC" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/floor_decal/carpet/blue{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/crew_quarters/heads/office/iaa) -"xTD" = ( -/obj/machinery/recharge_station, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/turret_protected/ai_cyborg_station) -"xTI" = ( -/obj/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"xTK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"xTP" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"xTZ" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/assembly/robotics) -"xUd" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/largecrate, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"xUe" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/shuttle/escape_pod/escape_pod2/station) -"xUf" = ( -/obj/machinery/vending/weeb{ - dir = 8 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitors) -"xUo" = ( -/obj/machinery/door/firedoor, -/obj/wallframe_spawn/reinforced, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 8; - icon_state = "shutter0"; - id_tag = "hangar_checkpoint_shutters"; - name = "Hangar Deck Checkpoint Shutters"; - opacity = 0 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/security/sierra/dockcheck) -"xUw" = ( -/turf/simulated/wall/prepainted, -/area/janitor) -"xUC" = ( -/obj/structure/sign/warning/fire{ - dir = 4; - pixel_x = -32 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/incinerator) -"xUF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/research{ - dir = 4; - name = "Miscellaneous Laboratory"; - req_access = newlist() - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/rnd/misc_lab) -"xUQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/floor_decal/techfloor/orange/corner, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/fourthdeck/aft) -"xUT" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/seconddeck/forestarboard) -"xVc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/floor_decal/borderfloor{ - dir = 4 - }, -/obj/floor_decal/corner/lime/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"xVe" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/structure/plasticflaps, -/obj/machinery/door/firedoor, -/turf/simulated/floor, -/area/quartermaster/hangar) -"xVg" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"xVp" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/structure/railing/mapped{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/maintenance/compactor) -"xVJ" = ( -/obj/structure/sign/warning/fire, -/turf/simulated/wall/r_wall/hull, -/area/maintenance/thirddeck/aftport) -"xVO" = ( -/obj/floor_decal/corner/black{ - dir = 9 - }, -/obj/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/bed/chair/comfy/teal{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"xVQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techmaint, -/area/storage/tech) -"xVR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/random/obstruction, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"xVS" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/closet/crate/hydroponics/beekeeping, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hydroponics) -"xVT" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/head_big) -"xWd" = ( -/obj/machinery/bodyscanner{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/maintenance_equipstorage) -"xWl" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/light/spot, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"xWr" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 29 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe) -"xWt" = ( -/obj/structure/closet/jcloset/sierra, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge/storage) -"xWu" = ( -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "eng1"; - name = "Third Deck Starboard Nacelle Access"; - pixel_y = 21; - req_access = list("ACCESS_ENGINEERING") - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/floor/plating, -/area/thruster/d3starboard) -"xWx" = ( -/obj/structure/bed/chair/comfy/green{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/command/chief_steward) -"xWy" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"xWz" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/obj/floor_decal/corner/green/border, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft_stairwell) -"xWS" = ( -/obj/item/stool/padded, -/obj/floor_decal/corner/purple/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/exploration) -"xWT" = ( -/obj/paint/black, -/turf/simulated/wall/ocp_wall, -/area/maintenance/thirddeck/aftport) -"xWW" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"xWY" = ( -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge/marine_room) -"xWZ" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/white/monotile, -/area/shuttle/petrov/cockpit) -"xXd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, -/obj/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/hallway/primary/thirddeck/center) -"xXf" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random_multi/single_item/space_rabbit, -/obj/structure/catwalk, -/turf/simulated/floor/airless, -/area/solar/port) -"xXt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/forestarboard) -"xXy" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = -32 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/purple/border, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/purple/bordercorner2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/center) -"xXG" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/corner/green/mono, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/virology{ - name = "Virology Storage" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/virology/lab) -"xXH" = ( -/obj/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"xXO" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/cafe) -"xXQ" = ( -/obj/machinery/door/airlock/civilian{ - autoset_access = 0; - id_tag = "bsa_safe_room"; - name = "Toilet" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled, -/area/command/bsa) -"xXX" = ( -/obj/machinery/door/blast/regular{ - dir = 2; - id_tag = "cChamber1pV"; - name = "Chamber Vent" - }, -/obj/machinery/shield_diffuser, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/thruster/d3starboard) -"xYc" = ( -/obj/structure/largecrate, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"xYd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/blue, -/obj/paint_stripe/turquoise, -/obj/paint/black, -/turf/simulated/wall/r_wall/prepainted, -/area/turret_protected/ai_teleport) -"xYm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hydroponics) -"xYo" = ( -/obj/floor_decal/corner/black{ - dir = 10 - }, -/obj/floor_decal/corner/paleblue/border, -/obj/structure/bed/chair/padded/teal{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"xYw" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/rnd/containment) -"xYz" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/light_switch{ - pixel_x = 10; - pixel_y = 28 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - c_tag = "Security - Dock Checkpoint" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/dockcheck) -"xYF" = ( -/obj/structure/table/steel, -/obj/machinery/chemical_dispenser/bar_alc/full, -/turf/simulated/floor/wood/walnut, -/area/vacant/bar) -"xYH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small, -/obj/floor_decal/industrial/warning/full, -/obj/machinery/embedded_controller/radio/airlock/access_controller{ - id_tag = "eng3"; - name = "First Deck Starboard Access"; - pixel_y = 21 - }, -/obj/machinery/atmospherics/valve/shutoff/fuel{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/thruster/d1starboard) -"xYO" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/quartermaster/exploration/eva) -"xYT" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/fourth_deck{ - c_tag = "Fourth Deck - Fore Hallway Starboard" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/fourthdeck/fore) -"xYV" = ( -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 12 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/suit_cycler/science, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/eva) -"xYW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/floor_decal/corner/red/bordercorner{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway) -"xYX" = ( -/obj/random_multi/single_item/punitelly, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/firstdeck/forestarboard) -"xZb" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/standard, -/obj/item/storage/toolbox/electrical, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"xZc" = ( -/obj/structure/bed/chair/padded/yellow{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"xZd" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"xZk" = ( -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory/lobby) -"xZt" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/glass/mining{ - dir = 8; - name = "Hangar Bay"; - req_access = newlist() - }, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar/upper) -"xZu" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/obj/floor_decal/techfloor{ - dir = 10 - }, -/obj/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techfloor/grid, -/area/storage/airlock_canisters) -"xZv" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"xZx" = ( -/obj/machinery/door/airlock/external/escapepod{ - id_tag = "escape_pod_5_berth_hatch"; - name = "Escape Pod Five" - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/floor_decal/industrial/warning/fulltile, -/obj/machinery/door/firedoor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/security/sierra/prison) -"xZC" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/obj/machinery/access_button/airlock_exterior{ - dir = 1; - master_tag = "solar_port"; - name = "exterior access button"; - pixel_x = -12; - pixel_y = 27; - req_access = list("ACCESS_ENGINE_EQUIP","ACCESS_EXTERNAL") - }, -/turf/simulated/floor/airless, -/area/solar/port) -"xZE" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"xZG" = ( -/obj/floor_decal/carpet/blue2{ - dir = 8 - }, -/obj/floor_decal/carpet/blue2, -/obj/floor_decal/carpet/blue2{ - dir = 10 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_y = -32 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/heads/office/hop) -"xZN" = ( -/turf/simulated/wall/r_wall/prepainted, -/area/crew_quarters/heads/captain) -"xZO" = ( -/obj/machinery/telecomms/bus/preset_two, -/obj/structure/railing/mapped{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"xZS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/carpet/red, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/iaa/cobed) -"xZU" = ( -/obj/floor_decal/corner/purple{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/airlock) -"xZV" = ( -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced/oxygen, -/area/thruster/d1starboard) -"xZW" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/aftstarboard) -"xZX" = ( -/obj/decal/cleanable/dirt, -/obj/random/junk, -/turf/simulated/floor/plating, -/area/vacant/mess) -"yad" = ( -/obj/floor_decal/corner/green/bordercee{ - dir = 4 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"yag" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/equipment) -"yah" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/door/blast/regular/lockdown{ - dir = 4; - id_tag = "lockdown3_3" - }, -/obj/wallframe_spawn/no_grille, -/turf/simulated/floor/plating, -/area/hallway/primary/fourthdeck/center) -"yas" = ( -/obj/floor_decal/corner/grey/border, -/obj/structure/hygiene/sink{ - dir = 1; - pixel_y = 18 - }, -/obj/item/storage/mirror{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/old_tile, -/area/crew_quarters/head) -"yav" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"yaz" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/black, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"yaA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/expedition) -"yaV" = ( -/obj/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"yba" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/airless, -/area/solar/starboard) -"ybb" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/captain) -"ybd" = ( -/obj/decal/cleanable/dirt, -/obj/item/material/shard/shrapnel/titanium, -/turf/simulated/floor/plating, -/area/crucian_hangar/start) -"ybf" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/catwalk_plated, -/obj/machinery/camera/network/hangar{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"ybl" = ( -/obj/floor_decal/borderfloorblack, -/obj/floor_decal/corner/darkblue/border, -/obj/floor_decal/borderfloorblack/corner2, -/obj/floor_decal/corner/darkblue/bordercorner2, -/turf/simulated/floor/tiled/dark, -/area/bridge/hallway) -"ybq" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/black/border{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -21; - pixel_x = 8 - }, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/heads/office/iaa/iso_quarters) -"ybs" = ( -/obj/random/obstruction, -/obj/structure/railing/mapped{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/port) -"ybu" = ( -/obj/wallframe_spawn/reinforced/polarized/no_grille{ - id = "pathfinder_office" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/command/exploration_leader) -"ybz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/atmos) -"ybD" = ( -/obj/structure/table/standard, -/obj/item/book/manual/rust_engine, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/vacant/prototype/control) -"ybM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/catwalk_plated, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"ybQ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/freezer, -/obj/item/reagent_containers/spray/sterilizine, -/obj/floor_decal/industrial/outline/yellow, -/obj/floor_decal/industrial/outline/yellow, -/obj/item/device/radio/intercom/department/medbay{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white/monotile, -/area/medical/surgery/second) -"ybR" = ( -/obj/machinery/papershredder, -/turf/simulated/floor/lino, -/area/command/chief_steward) -"ybU" = ( -/obj/floor_decal/techfloor/orange, -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/escape_pod/escape_pod5/station) -"ybV" = ( -/obj/floor_decal/corner/purple/border{ - dir = 4 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 8 - }, -/obj/floor_decal/corner/purple/bordercorner{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/locker) -"ybW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/forestarboard) -"ybX" = ( -/obj/structure/railing/mapped{ - dir = 4 - }, -/obj/structure/largecrate, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/aftport) -"ycb" = ( -/obj/structure/stairs/east, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"ych" = ( -/obj/landmark{ - name = "JoinLateCryo" - }, -/obj/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/railing/mapped{ - init_color = "#393f43"; - color = "#393f43" - }, -/turf/simulated/floor/tiled/techfloor, -/area/hallway/primary/fourthdeck/central_stairwell) -"ycn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/corner/grey/border, -/obj/floor_decal/corner/grey/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/crew_quarters/galley) -"ycr" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/dungeon_master_lounge) -"ycs" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lime/border{ - dir = 1 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 4 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 1 - }, -/obj/structure/sign/deck/second{ - pixel_y = 35 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"ycv" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/hallway/primary/seconddeck/center) -"ycx" = ( -/obj/shuttle_landmark/sierra/deck4/skrellscout, -/obj/shuttle_landmark/ert/dock, -/turf/space, -/area/space) -"ycK" = ( -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"ycO" = ( -/obj/floor_decal/corner/red/border{ - dir = 9 - }, -/obj/floor_decal/industrial/danger{ - dir = 4 - }, -/obj/machinery/nav_light, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"ycV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/blue{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/blast_door{ - id_tag = "xenobioaqua"; - name = "Aqua Containment Blast Doors"; - pixel_x = 6; - pixel_y = 29; - req_access = list("ACCESS_RESEARCH") - }, -/obj/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/steel_grid, -/area/rnd/xenobiology/level1) -"ycX" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/industrial/danger{ - dir = 8 - }, -/obj/random/maintenance, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"ycY" = ( -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/computer) -"ydd" = ( -/obj/floor_decal/corner/red{ - dir = 1 - }, -/obj/structure/holoplant, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/cafe) -"ydf" = ( -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/floor_decal/corner/lime/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/center) -"ydg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftport) -"ydi" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/turret_protected/ai) -"ydn" = ( -/obj/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/floor_decal/industrial/danger/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/central_stairwell) -"ydo" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/centralport) -"ydu" = ( -/obj/floor_decal/corner/paleblue, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/hallway/infirmary) -"ydK" = ( -/obj/floor_decal/corner/lime/half{ - dir = 8 - }, -/obj/floor_decal/corner/lime{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/seconddeck/central_stairwell) -"ydR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/floor_decal/corner/purple/border, -/turf/simulated/floor/tiled/monotile, -/area/rnd/research) -"ydV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/southright{ - id = "Cell 2"; - name = "Cell two"; - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/door/blast/shutters/open{ - dir = 4; - id_tag = "security_permabrig_second_cell_shutters" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id_tag = "security_lockdown"; - name = "Security Department Lockdown" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel_ridged, -/area/security/sierra/brig) -"ydX" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 10 - }, -/obj/structure/railing/mapped, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/structure/bed/chair/wood/maple{ - dir = 1 - }, -/turf/simulated/floor/wood/bamboo, -/area/crew_quarters/garden_room) -"ydZ" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id_tag = "ship_sensor"; - name = "Ship Sensor Blastdoor" - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/bridge) -"yeg" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"yeh" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/obj/structure/table/woodentable/mahogany, -/obj/floor_decal/carpet/red{ - dir = 4 - }, -/obj/item/material/ashtray/plastic{ - pixel_y = 3; - pixel_x = 5 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/cafe/upper) -"yei" = ( -/obj/structure/railing/mapped, -/obj/structure/bed/chair/padded/yellow{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"yel" = ( -/obj/machinery/computer/shuttle_control/explore/guppy{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24; - dir = 8 - }, -/obj/overmap/visitable/ship/landable/guppy, -/turf/simulated/floor/tiled/steel_ridged, -/area/guppy_hangar/start) -"yen" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/thirddeck/aftstarboard) -"yeq" = ( -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = 24 - }, -/obj/landmark/start{ - name = "Internal Affairs Agent" - }, -/obj/item/storage/secure/safe{ - pixel_y = -24 - }, -/obj/structure/bed/padded, -/obj/item/bedsheet/red, -/obj/floor_decal/carpet/red, -/obj/floor_decal/carpet/red{ - dir = 4 - }, -/obj/floor_decal/carpet/red{ - dir = 6 - }, -/turf/simulated/floor/carpet/red, -/area/crew_quarters/heads/office/iaa/cobed) -"yev" = ( -/obj/structure/closet/secure_closet/guncabinet/sierra_armory/shotgun, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/camera/network/security{ - c_tag = "Security - Armory" - }, -/turf/simulated/floor/tiled/techfloor, -/area/security/sierra/armory) -"yew" = ( -/obj/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"yez" = ( -/obj/structure/table/standard, -/obj/item/storage/box/autoinjectors, -/obj/item/storage/box/beakers, -/turf/simulated/floor/plating, -/area/vacant/gambling) -"yeA" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor{ - dir = 8 - }, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/primary/firstdeck/aft_stairwell) -"yeL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/thirddeck/port) -"yeM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"yeN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/heads/captain) -"yeP" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/closet/crate, -/obj/item/inflatable_dispenser, -/obj/item/sealgen_case, -/obj/item/stack/material/steel/ten, -/obj/item/stack/material/steel/ten, -/obj/item/module/power_control, -/obj/item/storage/toolbox/mechanical, -/obj/item/tape_roll, -/turf/simulated/floor/plating, -/area/exploration_shuttle/power) -"yeS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/industrial/danger, -/turf/simulated/floor/tiled/monotile, -/area/quartermaster/hangar) -"yeT" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/catwalk_plated, -/turf/simulated/floor/plating, -/area/quartermaster/hangar) -"yeX" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/aftstarboard) -"yfa" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood/ebony, -/area/crew_quarters/sleep/bunk) -"yfb" = ( -/obj/machinery/door/firedoor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/blast/shutters/open{ - id_tag = "med_to_maint"; - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id_tag = "med_quar_lock"; - name = "Quarantine Blast Doors"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/maintenance_equipstorage) -"yfc" = ( -/obj/machinery/computer/arcade, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"yfd" = ( -/obj/structure/railing/mapped, -/obj/floor_decal/spline/fancy/black, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"yfe" = ( -/obj/shuttle_landmark/snz/dock, -/turf/space, -/area/space) -"yfi" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/floor_decal/steeldecal/steel_decals4, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/aft) -"yfk" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/maintenance/seconddeck/starboard) -"yfl" = ( -/obj/structure/bed/sofa/r/lime{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/carpet/blue2, -/area/crew_quarters/cafe/upper) -"yfs" = ( -/obj/structure/railing/mapped, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"yfw" = ( -/obj/structure/stairs/west, -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/lounge) -"yfx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/black{ - dir = 5 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/helium, -/obj/floor_decal/techfloor{ - dir = 5 - }, -/obj/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/atmos) -"yfy" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "skipjack_shuttle_dock_airlock_sensor"; - master_tag = "skipjack_shuttle_dock_airlock"; - pixel_x = -24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/external_air{ - dir = 1; - id_tag = "skipjack_shuttle_dock_airlock_pump" - }, -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/half{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/crew_quarters/docking) -"yfF" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/industrial/warning, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/maintenance/substation/firstdeck) -"yfH" = ( -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/assembly/chargebay) -"yfO" = ( -/obj/structure/railing/mapped, -/obj/structure/table/rack, -/turf/simulated/floor/plating, -/area/maintenance/bridgedeck/aft) -"yfS" = ( -/obj/floor_decal/techfloor, -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tcommsat/chamber) -"ygl" = ( -/obj/machinery/atmospherics/omni/filter{ - tag_east = 2; - tag_north = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"ygp" = ( -/obj/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark/monotile, -/area/medical/sleeper) -"ygt" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/floor_decal/borderfloorblack/corner{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/bordercorner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"ygz" = ( -/obj/structure/sign/bluecross_2, -/turf/simulated/wall/prepainted, -/area/vacant/infirmary) -"ygC" = ( -/obj/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/hallway/primary/bridgedeck/center) -"ygD" = ( -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - target_pressure = 200 - }, -/obj/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/storage/airlock_canisters) -"ygM" = ( -/obj/structure/bed/chair/padded/blue{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 9 - }, -/obj/floor_decal/techfloor/orange/corner{ - dir = 4 - }, -/obj/structure/sign/warning/pods/south{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/safe_room/firstdeck) -"ygP" = ( -/obj/machinery/atmospherics/unary/tank/air{ - dir = 4 - }, -/obj/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/engineering/atmos/storage) -"ygQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/firstdeck/aftport) -"ygS" = ( -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/random/coin, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/starboard) -"ygU" = ( -/obj/floor_decal/corner/black/half, -/obj/floor_decal/corner/red/border, -/obj/structure/closet/walllocker{ - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/gym) -"ygV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - name = "Commissary rack"; - req_access = newlist(); - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/rack, -/obj/random/maintenance, -/obj/random/maintenance, -/obj/floor_decal/corner/black/full, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/light, -/obj/random/single/lighter, -/turf/simulated/floor/tiled, -/area/crew_quarters/commissary) -"yha" = ( -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/computer/modular/preset/security, -/turf/simulated/floor/tiled/dark, -/area/security/sierra/forensic) -"yhd" = ( -/obj/structure/catwalk, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/random_multi/single_item/space_rabbit, -/turf/simulated/floor/airless, -/area/solar/starboard) -"yhh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/fourthdeck/aft) -"yhr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"yhv" = ( -/obj/machinery/atmospherics/valve/digital{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/engineering/atmos) -"yhD" = ( -/obj/machinery/door/airlock/hatch/maintenance, -/obj/machinery/door/firedoor, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hallway/primary/firstdeck/center) -"yhF" = ( -/obj/floor_decal/techfloor{ - dir = 4 - }, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/medical/backstorage) -"yhP" = ( -/obj/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/obj/structure/bed/sofa/l/brown, -/obj/floor_decal/carpet{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/cafe/upper) -"yhR" = ( -/obj/structure/table/steel, -/turf/simulated/floor/plating, -/area/maintenance/compactor) -"yhW" = ( -/obj/structure/table/rack, -/obj/random/plushie, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/starboard) -"yhZ" = ( -/obj/machinery/door/airlock/external{ - frequency = 1379; - id_tag = "ai_core_outer"; - locked = 1; - name = "AI Core Internal Access" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1379; - master_tag = "ai_core_airlock"; - name = "exterior access button"; - pixel_x = 24; - pixel_y = 10; - req_access = list("ACCESS_AI_UPLOAD") - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/turret_protected/ai) -"yia" = ( -/obj/floor_decal/corner/lime/mono, -/obj/floor_decal/industrial/outline/yellow, -/obj/machinery/vending/soda, -/obj/item/device/radio/intercom{ - pixel_y = 26 - }, -/turf/simulated/floor/tiled/monotile, -/area/hallway/primary/seconddeck/fore) -"yib" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/toxins) -"yic" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/grass/cut, -/area/crew_quarters/garden_room) -"yid" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/shuttle/petrov/test_room) -"yih" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor, -/area/engineering/engine_room) -"yiq" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/obj/structure/railing/mapped{ - dir = 8 - }, -/obj/machinery/camera/network/command{ - c_tag = "Telecommunications - Server Room - East"; - network = list("Command","Engineering"); - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/tcommsat/chamber) -"yiE" = ( -/obj/floor_decal/techfloor{ - dir = 1 - }, -/obj/floor_decal/techfloor, -/obj/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch/maintenance{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/hydroponics) -"yiL" = ( -/obj/floor_decal/corner/grey/full, -/obj/structure/bed/chair/office/comfy/blue{ - dir = 1 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/adjutants{ - req_access = list("ACCESS_ADJUTANTS") - }) -"yiN" = ( -/obj/structure/curtain{ - color = "#aa0000" - }, -/obj/floor_decal/spline/fancy/black{ - dir = 10 - }, -/turf/simulated/floor/wood/maple, -/area/crew_quarters/actor/stage) -"yiR" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/xenobiology/xenoflora) -"yiT" = ( -/obj/structure/iv_stand, -/turf/simulated/floor/plating, -/area/vacant/infirmary) -"yiV" = ( -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/crew_quarters/docking) -"yiX" = ( -/obj/structure/sign/warning/vent_port{ - dir = 4; - pixel_x = -32 - }, -/obj/floor_decal/industrial/warning/half, -/turf/simulated/floor/reinforced{ - map_airless = 1 - }, -/area/space) -"yiZ" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/space) -"yjb" = ( -/obj/structure/catwalk, -/obj/structure/railing/mapped, -/turf/simulated/open, -/area/rnd/xenobiology/level1) -"yjh" = ( -/obj/machinery/atmospherics/unary/tank/air{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"yjA" = ( -/obj/structure/catwalk, -/obj/floor_decal/borderfloor{ - dir = 1 - }, -/obj/floor_decal/industrial/danger{ - dir = 1 - }, -/obj/random/trash, -/obj/machinery/light_construct, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/hangar) -"yjK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/obj/floor_decal/techfloor{ - dir = 8 - }, -/obj/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/thirddeck/port) -"yjR" = ( -/obj/floor_decal/spline/fancy/black{ - dir = 5 - }, -/obj/structure/bed/sofa/l/brown{ - dir = 8 - }, -/turf/simulated/floor/wood/mahogany, -/area/crew_quarters/cafe) -"yjU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloorblack{ - dir = 1 - }, -/obj/floor_decal/corner/green/border{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/medical/virology/lab) -"yka" = ( -/obj/floor_decal/corner/green/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"yke" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/floor_decal/borderfloor, -/obj/floor_decal/corner/red/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/floor_decal/borderfloor/corner2, -/obj/floor_decal/corner/red/bordercorner2, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/security/sierra/hallway/aft) -"yko" = ( -/obj/structure/table/rack{ - dir = 8 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/mask/breath, -/obj/item/tank/oxygen, -/obj/machinery/camera/network/medbay{ - c_tag = "Virology - Atmospherics Storage"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/medical/virology/atmos) -"ykB" = ( -/obj/structure/catwalk, -/obj/floor_decal/industrial/warning/cee{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/airlock{ - dir = 8; - id_tag = "sd_port_pump" - }, -/turf/simulated/floor/plating, -/area/maintenance/seconddeck/foreport) -"ykD" = ( -/obj/floor_decal/corner/black/full, -/obj/floor_decal/corner/darkblue/border{ - dir = 4 - }, -/obj/structure/bed/chair/padded/blue{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = -29 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/marine_room) -"ykE" = ( -/obj/shuttle_landmark/ninja/deck5, -/turf/space, -/area/space) -"ykI" = ( -/obj/fluid_mapped, -/mob/living/simple_animal/aquatic/fish/judge, -/turf/simulated/floor/beach/sand, -/area/rnd/xenobiology/level2) -"ykQ" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/wall/r_wall/hull, -/area/turret_protected/ai_maint) -"ylh" = ( -/obj/floor_decal/corner/yellow/three_quarters{ - dir = 4 - }, -/obj/structure/flora/pottedplant/floorleaf, -/obj/machinery/light_switch{ - pixel_x = 24; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/deckofficer) -"ylq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/floor_decal/corner/green/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/old_cargo, -/area/crew_quarters/head) -"ylw" = ( -/obj/structure/catwalk, -/obj/structure/rubble, -/turf/simulated/floor/plating, -/area/maintenance/firstdeck/forestarboard) -"ylx" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/head/kitty/fake, -/obj/item/clothing/head/philosopher_wig{ - color = "orange" - }, -/obj/item/mirror, -/obj/item/lipstick, -/obj/item/lipstick/random, -/obj/item/lipstick/random, -/obj/item/clothing/under/schoolgirl, -/obj/random/cash, -/obj/item/storage/toolbox/mechanical, -/obj/random/cash, -/obj/item/modular_computer/tablet/lease/preset/command, -/turf/simulated/floor/wood/walnut, -/area/maintenance/firstdeck/foreport) -"yly" = ( -/turf/simulated/wall/prepainted, -/area/rnd/research) -"ylA" = ( -/obj/floor_decal/techfloor/orange{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/seconddeck/foreport) -"ylF" = ( -/turf/simulated/floor/wood/walnut, -/area/crew_quarters/actor) -"ylP" = ( -/obj/machinery/computer/modular/preset/dock{ - dir = 4 - }, -/obj/floor_decal/corner/mauve/mono, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark/monotile, -/area/bridge) -"ylS" = ( -/obj/floor_decal/borderfloorblack{ - dir = 8 - }, -/obj/floor_decal/corner/darkblue/border{ - dir = 8 - }, -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"ylZ" = ( -/obj/wallframe_spawn/reinforced/polarized, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/chapel/main) -"ymg" = ( -/turf/simulated/floor/reinforced, -/area/rnd/xenobiology/water_cell) - -(1,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(2,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wlJ -wJN -"} -(3,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(4,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(5,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(6,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(7,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(8,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(9,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(10,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(11,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(12,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(13,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(14,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(15,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(16,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(17,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(18,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(19,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(20,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(21,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(22,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(23,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(24,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(25,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(26,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(27,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(28,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(29,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(30,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(31,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -iCj -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(32,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(33,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(34,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(35,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(36,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -kfS -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -nYR -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -fEC -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(37,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(38,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(39,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -eOA -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(40,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(41,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(42,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(43,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -vNF -tRD -sKr -nLj -nLj -nLj -wTG -niv -nMa -niv -gPP -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(44,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -vNF -oGh -xJo -nLj -nLj -nLj -nLj -nLj -cVd -pHh -twE -niv -vCS -vCS -niv -niv -reQ -sKr -tRD -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(45,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -vNF -sKr -xJo -xJo -nLj -xZu -vVR -qwe -nLj -fNt -hHI -hsd -niv -haq -haq -niv -niv -reQ -reQ -oGh -lJm -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(46,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -vNF -sKr -xJo -xJo -xJo -nLj -nGm -dzd -ygD -nLj -wrf -tBD -aDI -tvj -ibJ -szs -tDs -niv -reQ -reQ -reQ -sKr -lJm -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(47,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -vNF -sKr -xJo -xJo -xJo -sqg -nLj -nGm -dzd -beQ -nLj -fNt -hHI -aDI -aiu -xNM -kBw -jWW -byK -reQ -reQ -reQ -reQ -sKr -uIY -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(48,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -vNF -oGh -xJo -xJo -xJo -sqg -sqg -nLj -wdV -ubP -dxC -nLj -acE -hHI -jZq -stR -psp -bdv -kvN -awD -eMa -eMa -eMa -reQ -reQ -sKr -lJm -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(49,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -sKr -xJo -xJo -dOr -ojk -ojk -ojk -lXN -lXN -lXN -lzH -psN -wgk -cBt -wgk -wgk -vkB -ipZ -vkB -kch -eMa -kSw -fFx -eMa -reQ -reQ -sKr -lJm -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(50,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -xJo -xJo -dOr -eCv -rIo -lpT -wJr -igx -kdk -tCR -oGN -ryC -qvF -lkA -qtF -jQY -eFr -evz -qlk -sOi -kQN -rvD -rIM -mYo -eMa -reQ -reQ -sKr -lJm -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(51,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -xJo -xJo -dOr -dOr -iWK -hFS -avg -aFa -ojk -vsE -vry -jTo -baE -gIf -eJn -gIf -vIG -hQt -ewQ -sst -kch -lLc -lLc -meN -eMa -eMa -eMa -reQ -reQ -rsq -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(52,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -xJo -dOr -mDF -uZt -gdH -tsN -fyJ -rSz -ojk -ikx -rVe -ixM -wew -wew -hKg -wew -wew -vqq -rVe -qfI -sOi -qBR -qBR -aRD -tmY -xMc -viM -eMa -reQ -sKr -lJm -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(53,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -xJo -xJo -dOr -ddj -kWC -tsN -tsN -coc -gWu -ojk -prK -rVe -tIz -tTp -ecg -qpp -ecg -tTp -axy -mmQ -tpJ -kyp -ecC -xjw -dzh -iBa -koI -ygV -eMa -reQ -reQ -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(54,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -xJo -xJo -dOr -ngL -aFs -kmH -ihU -rpD -wNH -npb -nyL -fQo -ttA -rxd -hfF -lXY -kyT -lXx -jKV -xbC -hAA -kch -cRY -kSr -veg -iRD -kOJ -wik -eMa -reQ -reQ -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(55,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -xJo -xJo -dOr -fiQ -wzU -ezl -dvG -xUf -dYr -ojk -iMY -nys -rCB -bPp -pkZ -oej -fMD -slW -ece -xbC -kIl -rOc -kch -kch -kch -jAU -kch -kch -eMa -xwJ -reQ -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(56,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -xJo -xJo -dOr -ojk -ojk -kIp -mwQ -kIp -kIp -ojk -okA -aDL -gYM -auU -hSw -cFg -crJ -auU -oQb -vpQ -qfI -fMQ -fRI -ljm -qRZ -hAc -abt -dux -niv -niv -niv -sKr -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(57,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -vxd -niv -niv -hNk -hVi -szX -fdA -hAc -oSi -dIi -fMQ -usc -otx -ttA -qpp -okZ -cFg -oxV -qpp -jKV -ams -dVr -prk -phb -pGE -fOU -pGE -pGE -iLO -hdi -niv -niv -bZL -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(58,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -osJ -cUP -geq -iew -wed -mQI -wkt -hwP -wKb -uOX -uZU -fMQ -tOK -nLi -gSJ -uNI -xMy -vDS -rWL -xsF -akz -oBK -aTd -fMQ -cwr -hQt -baE -hfm -hfm -qyT -aBk -bJA -yfy -gQz -qLn -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(59,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -xpy -niv -niv -rRL -pqS -eQp -eQp -eQp -bAm -rCL -pNx -lqE -ojN -koZ -tTp -bel -dqB -ehU -qpp -oxW -bhO -ofK -eBs -iCa -rbm -rbm -rbm -fpX -joa -ujk -niv -niv -bNj -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(60,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -uyP -fxt -wag -okm -itm -cRP -bgK -bAm -irZ -pNx -kGG -pjG -lfW -qpp -xYz -mRs -wHf -qpp -kdO -hBL -iQd -eBs -iyF -dkd -sgN -hHp -wag -mTB -irZ -voi -haq -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(61,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -uyP -bVv -wag -qbA -uwR -mfF -sxV -bAm -hpL -pNx -adh -fES -obP -aju -gvi -wRc -oTC -bEG -sQJ -lCN -nKD -cJv -cJv -cJv -cJv -cJv -yiV -lGd -irZ -bVv -haq -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(62,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -vxd -niv -niv -vgk -pqS -eQp -gRs -eQp -bAm -uDZ -xpX -tTa -uGw -aXc -dMC -xlz -oju -xuN -vJj -rBO -lCN -lLh -cJv -jIA -flJ -cjc -cJv -nwl -vlK -szK -niv -niv -bZL -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(63,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -lfD -gmn -jmc -buq -vbg -tGv -rhc -gYx -mgc -xyt -xli -pZw -eRu -bRN -uOR -hRW -nBI -era -gFa -pgU -sQJ -fzu -iWp -rRW -fqF -ona -bUe -jKa -xEe -jzL -gSx -uqr -spk -lur -wbv -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(64,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -xpy -niv -niv -rRL -eQp -eQp -eNt -eQp -eQp -sht -xpX -bDA -wsQ -aBK -qpp -kRl -ioU -uNF -qpp -iGp -apf -qpY -wHU -eKS -wTr -jVO -cJv -lsd -lwJ -ujk -niv -niv -bNj -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(65,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -uyP -bVv -wag -eQp -eQp -eQp -eQp -eQp -irZ -pNx -xYT -vGY -mjK -qpp -xUo -qpp -hCY -qpp -qUR -mrS -qpY -wHU -bSU -oqp -myB -cJv -ttd -voy -irZ -bVv -haq -sKr -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(66,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -bne -tRD -tRD -tRD -tRD -pJp -tRD -ddZ -uyP -bVv -ukA -oMI -mPv -lBS -pLF -rKZ -fmy -pNx -eUL -lWR -uOR -lWE -txb -gZD -dXI -txb -qUR -mrS -bjB -cJv -fZP -tCE -nSB -cJv -hkx -pAj -mwF -bVv -haq -sKr -tRD -pJp -tRD -dDb -tRD -lJm -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(67,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -bne -sKr -taa -taa -taa -taa -taa -taa -taa -taa -xlq -xlq -xlq -xlq -xlq -xlq -xlq -xlq -xlq -vzx -tqj -eIL -xCa -pGw -hse -mTl -hse -uTz -enS -vfy -cJv -cJv -cJv -nfo -cJv -dEv -dEv -kQP -dEv -fIw -fIw -fIw -fIw -fIw -fIw -fIw -sKr -lJm -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(68,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -fLf -taa -taa -taa -nAF -nAF -kks -bhT -xXt -xqd -hUZ -uJr -uJr -uJr -uem -crU -azi -xbL -sHm -iFH -eRP -xnB -lGh -gAv -fvn -wly -fby -fby -jLV -hpm -ped -ckA -bQc -bOf -uSB -llw -xwC -xEd -qaC -fev -xHK -dDU -dDU -dDU -fIw -fIw -fIw -sKr -lJm -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(69,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -taa -taa -evG -kks -kKF -cKK -afz -cCk -ajY -qOn -psl -psl -otJ -dGe -uke -bxP -gdZ -xlq -xAm -iTD -ipg -wtc -bNE -eAH -nzu -eRn -wtc -rdI -ktQ -jvv -dDU -eSg -kyh -bAC -aIq -apl -apl -jvv -uHQ -xiJ -dYS -dZg -dZg -fev -fIw -fIw -fIw -rsq -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(70,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -dac -taa -taa -fQF -xlq -xlq -xlq -xlq -xlq -xlq -xlq -xlq -xlq -xlq -fiX -fiX -fiX -fiX -fiX -fiX -fiX -fiX -hKK -yah -bqr -bFA -iVN -ouc -iVN -iVN -iVN -iVN -jee -dEv -dEv -dEv -dEv -dEv -dEv -dEv -dEv -dEv -dEv -uxQ -fIw -fIw -fIw -fpg -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(71,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -sKr -kkJ -gho -htl -hQy -fSa -fSa -fSa -fSa -fSa -fSa -fSa -fSa -bmK -bmK -fiX -fiX -hWB -hWB -hWB -hWB -mJi -fiX -hGr -gWW -oVB -iVN -hko -mRU -hRh -aDp -vcZ -iVN -jee -lkQ -lkQ -tFA -tFA -tFA -tFA -tFA -tFA -tFA -tFA -cFA -ueY -vPH -vhH -sKr -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(72,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -sKr -kkJ -pkw -pkw -hQy -fSa -jAW -bUR -eyr -inU -mfI -eyl -iWe -bmK -dSZ -fiX -fiX -hWB -hWB -hWB -hWB -hWB -pmO -jJh -pcB -cPc -qFZ -jFv -knD -cGp -hOq -qUW -iVN -jee -lnd -lkQ -fHV -nVG -prF -cGN -bdA -lZm -dxk -tFA -cFA -ogN -ogN -vhH -sKr -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(73,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -sKr -kkJ -pkw -pkw -hQy -uPf -dpV -jQG -oQc -aaJ -aLa -gHj -kDM -bmK -dSZ -fiX -fiX -hWB -hWB -hWB -hWB -hWB -pmO -oGx -oWo -oQh -iVN -ixk -ych -nVj -oLd -aUP -iVN -jee -lnd -lkQ -oMJ -lZe -pIL -cDm -xgp -bIg -wDm -heL -cFA -ogN -ogN -vhH -sKr -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(74,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -sKr -kkJ -pkw -pkw -hQy -sNZ -wxQ -mcp -lgZ -eja -vjK -qYD -wFx -bmK -dSZ -fiX -fiX -hWB -hWB -hWB -hWB -hWB -pmO -jJh -oPv -iOE -iVN -pYx -vYl -rRF -gDq -pYx -iVN -jee -lnd -lkQ -vCI -njV -pdd -pbx -lWs -xeN -nHx -tFA -cFA -ogN -ogN -vhH -sKr -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(75,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -sKr -kkJ -pkw -igB -qnJ -fSa -fSa -fSa -fSa -fSa -sqj -mGx -fSa -bmK -bmK -fiX -fiX -hWB -hWB -hWB -hWB -hWB -fiX -vyd -aFT -nRm -iVN -gXj -gXj -iVN -gXj -gXj -iVN -jee -lkQ -lkQ -tFA -nNS -dSt -tFA -tFA -tFA -tFA -tFA -cFA -fWs -ogN -vhH -sKr -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(76,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -iFg -wJN -wJN -wJN -wJN -wJN -qWf -eok -eok -eok -eok -shP -fiX -fiX -fiX -fiX -fiX -bxa -fiX -fiX -fiX -fiX -kTD -fiX -fiX -fiX -fiX -fiX -fiX -fiX -wTF -iGS -uXO -pTy -pTy -pTy -pTy -pTy -pTy -pTy -kTD -fiX -fiX -fiX -fiX -aEe -fiX -fiX -fiX -fiX -fiX -shP -eok -eok -eok -eok -jXi -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(77,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -eoT -dJq -fMx -eoT -ggj -uiJ -odq -sEe -qSX -qSX -pps -gQd -cUD -qSX -qSX -wcF -qSX -qSX -dMS -awJ -oWk -rmQ -gqe -eBq -tWW -xip -ivW -fSs -xoT -qSX -oWk -uel -dMS -qSX -qSX -wcF -qSX -qSX -feE -cYC -nxU -qSX -qSX -ftL -dRn -nMh -nrC -eoT -efZ -cBk -sTa -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(78,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -iip -ccL -xIk -eVJ -cvZ -eTv -cul -aGI -wUr -dbH -ily -dVN -sMY -ePm -fKd -hZR -pQZ -kWq -pQZ -hHC -pQZ -ohj -nnP -lIc -mDy -dRs -nic -nkL -voS -vln -vNm -pQZ -aRe -tUJ -pQZ -qVH -pQZ -kWq -pQZ -hZR -nkr -eAu -oeI -dVN -mhn -gtO -kvk -aGI -qDx -cRI -pEp -gWL -tRf -ycx -wJN -wJN -wJN -wJN -yfe -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(79,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -uRw -eok -eok -eok -eok -lkl -fiX -fiX -fiX -fiX -fiX -ohb -fiX -fiX -fiX -fiX -fTr -goT -goT -goT -goT -goT -goT -maw -cgK -fcf -qVi -pTy -pTy -pTy -pTy -pTy -pTy -pTy -vLh -fiX -fiX -fiX -fiX -rmW -fiX -fiX -fiX -fiX -fiX -shP -eok -eok -eok -eok -dgH -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(80,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -sKr -ePX -fux -bdw -qQa -rMZ -rMZ -rMZ -rMZ -rMZ -jOT -rbu -rMZ -uOv -uOv -goT -goT -bva -aKQ -oOu -dkf -liK -maw -aCG -jOU -lKz -mPx -reW -nxX -oig -uiA -jWM -mPx -fvR -fIA -fIA -sXZ -hIE -eUd -sXZ -sXZ -sXZ -sXZ -sXZ -wyg -tZF -gSw -qYt -sKr -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(81,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -sKr -ePX -fux -fux -qQa -rMZ -qGX -eOj -mIX -ecl -brF -uVV -pPl -uOv -cxp -goT -goT -qfX -coG -coG -qcw -ppV -cJI -gDZ -jQx -rTa -uGD -xSt -nvk -kgc -cuX -niF -mPx -fvR -gAa -fIA -gll -cwE -tTw -akm -toO -lJp -bwx -sXZ -wyg -gSw -gSw -qYt -sKr -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(82,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -sKr -ePX -fux -fux -qQa -oLo -wPe -xUe -oif -sVI -qNA -mtj -srL -uOv -cxp -goT -goT -hjf -ofR -jOZ -mSX -lfB -pfr -kJC -jlt -vQu -mPx -izk -pij -fnb -nSr -oEN -mPx -fvR -gAa -fIA -neE -otO -nWt -tzt -jfA -bWa -vIX -epb -wyg -gSw -gSw -qYt -sKr -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(83,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -sKr -ePX -fux -fux -qQa -rMZ -wHn -miC -vik -inO -vig -cav -chU -uOv -cxp -goT -goT -oEn -jhN -dRq -quz -vmL -tez -pCO -pej -cBg -mPx -gpU -nMQ -pWK -wlZ -nyu -mPx -fvR -gAa -fIA -uhv -eeL -dFK -mvi -aQw -dAH -eUx -sXZ -wyg -gSw -gSw -qYt -sKr -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(84,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -sKr -ePX -gMZ -gOY -qQa -rMZ -rMZ -rMZ -rMZ -rMZ -rMZ -rMZ -rMZ -uOv -uOv -goT -goT -xGM -tUS -wpa -lLu -ylh -voC -mXd -fpD -dnG -mPx -wDQ -wRH -uMG -tqd -jNm -mPx -fvR -fIA -fIA -sXZ -sXZ -sXZ -sXZ -sXZ -sXZ -sXZ -sXZ -wyg -jTL -plu -qYt -sKr -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(85,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wua -nNF -nNF -nNF -bmk -xeA -xeA -xeA -xeA -xeA -icv -icv -icv -icv -icv -goT -goT -maw -maw -maw -maw -maw -maw -qoP -nnQ -xFd -mPx -mPx -mPx -kNi -mPx -tKP -tKP -rkp -rkp -rkp -rkp -rkp -rkp -rkp -rkp -rQm -rQm -rQm -pxR -pGs -pGs -pGs -fpg -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(86,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -nNF -nNF -miw -npY -cFR -cFR -hMA -ndt -xqJ -syU -lSc -rLY -sBA -dyC -dyC -dyC -bIO -jol -tcn -jol -dnL -jhr -dOK -qrn -cxs -keN -iBl -wRA -pgn -vPL -tKP -ijo -cWh -gsz -qsI -gEV -kTd -wkE -vlh -tKP -pQI -oYr -iGY -gxS -pGs -pGs -pGs -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(87,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -nNF -nNF -qPe -rxq -fsK -fsK -fsK -lea -xqJ -usb -nkC -vFJ -oWC -tmM -tmM -tmM -gUl -mMA -mMA -mMA -eIe -okj -lHM -fyb -oZi -vkD -tSM -msj -qvm -gZU -gJd -qNe -bGt -wrG -pss -qau -gbg -mtP -pmp -tKP -tCB -pJV -siV -rYZ -pGs -pGs -sKr -syP -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(88,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -nNF -nNF -ntB -lKo -xsW -ilV -jVy -rFm -pUw -qmS -iKK -sLh -sLh -sLh -sLh -sLh -phV -phV -phV -phV -phV -phV -drA -vJC -waJ -gRi -awH -gwF -jOi -ggZ -tKP -eDx -oDs -fVR -lCJ -lpY -viS -kvm -ktq -tKP -vbl -wyg -tMz -tMz -pGs -pGs -rsq -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(89,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -sKr -nNF -xeA -xqJ -rMY -xqJ -xqJ -xqJ -xqJ -xru -vbe -sLh -eiT -cwf -eiT -nwk -phV -oed -wzi -afD -szP -phV -eXn -aBN -cBg -gRi -ivP -pen -tgt -jNE -tKP -tKP -tKP -djp -lyE -ezI -hxb -muI -tdl -tKP -hkg -qIB -hkg -hkg -pGs -pGs -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(90,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -xei -uRL -aRf -npu -ocW -eSi -kRK -gUl -nor -bJw -sLh -ePv -ncG -xWS -kAa -phV -hou -jkc -fpB -skE -sDH -oJN -fNz -liR -gRi -pdF -pen -qrk -rEv -qYL -lSi -tKP -dFZ -hOp -cym -ePe -uoi -eqA -tKP -ivz -gxS -rxa -pGs -pGs -sKr -syP -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(91,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -fLf -xei -uRL -cTe -fVc -wMG -hwk -gRw -gUl -cAf -byf -tEq -crG -oVE -sMH -lpZ -phV -uju -wdK -hlz -npl -hJi -rXW -bGu -liR -gRi -cAg -pen -aDg -myC -kZG -xPe -tKP -oaj -gQr -gLc -eJk -oFS -wQM -tKP -uFw -siV -lgm -pGs -pGs -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(92,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -xei -uRL -jQU -niA -hwk -hwk -nPf -gUl -jss -skl -sLh -twT -cxG -qvi -eyn -phV -nWl -laz -laz -nqx -phV -kTG -tSN -bGP -keN -iDr -rQw -ouf -pIG -msj -dry -tKP -bVR -mdM -tET -iqA -rAj -aXM -tKP -qVw -vDr -mOR -pGs -pGs -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(93,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -xei -uRL -qDT -uaP -cYn -iGb -nyw -gUl -mMA -ygS -sLh -ewe -jsW -hpa -vdr -phV -qDB -qDB -tjQ -mAf -phV -qoP -bXI -xFd -keN -dIj -bal -oMX -vxN -hjI -aGJ -tKP -agL -mdM -kGM -pBU -ouV -hFo -tKP -nim -vDr -wid -pGs -pGs -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(94,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -xei -xei -uRL -uRL -qDT -qDT -qDT -gUl -gUl -gUl -sLh -sLh -oen -sLh -sLh -phV -phV -phV -phV -phV -phV -kly -nlC -gqM -keN -keN -ruE -swV -rUf -swV -keN -tKP -dro -gpW -dNX -dNX -ouV -iGv -tKP -spm -nFm -pGs -pGs -pGs -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(95,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -eIh -eIh -eIh -oYP -gDD -wYV -lou -iyZ -kwc -oAH -jkH -pzD -avj -bxd -hAe -epp -jUc -hgX -unp -gvz -eLV -umw -dJg -gxN -qzf -geT -ctg -iEm -mJW -wIU -hwU -tKP -lUd -tSd -bwp -bBf -rAj -ihy -tKP -spm -mfJ -pGs -pGs -sKr -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(96,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -sKr -eIh -eIh -oYP -ctu -xOM -rRm -neA -iEl -oAH -pva -oUq -rKP -lBc -sVc -kAJ -lCK -jsn -jfu -sgf -czY -qDo -sBZ -wkC -bQM -dgP -oti -bny -kpP -cDr -msw -tKP -rnO -urs -bKc -fZn -oFS -lwu -tKP -spm -frc -pGs -pGs -gpx -sKr -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(97,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -sKr -sKr -sKr -wRe -dNb -gtI -vmN -edr -rep -fyE -ksv -qIw -wjt -uwA -rxU -rxU -rxU -qOU -bdQ -bdQ -gGX -xQF -cla -utF -seu -msi -aoB -wHk -vnc -cDX -bny -fPK -uNq -dqP -dtV -eNs -ciL -rAj -iNv -tKP -spm -oJd -pGs -pGs -sKr -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(98,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -sKr -eIh -eIh -oYP -pnv -kAy -snB -wdj -pBk -kHT -ooG -sRC -ccc -qWo -hgJ -vQd -gxK -mgN -mgN -oMg -iTR -sCh -adK -mVC -gVE -tIp -hIP -iHF -pxm -cDr -dxg -rwJ -htI -tHG -iHg -fZl -meU -gQB -grE -fkW -hAP -pGs -pGs -pGs -sKr -uIY -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(99,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -fLf -eIh -eIh -eIh -oYP -oqk -qSl -aFz -brx -hxy -ybu -jhQ -izf -gPL -dUH -nmW -dUH -gPL -gPL -kVg -uND -eLV -lJv -kyB -lMB -qzf -rqp -sHs -gxk -sae -wUM -hVh -tKP -pjN -mpY -dNX -rBf -ryY -woN -tKP -wyg -sIR -pGs -pGs -pGs -pGs -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(100,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -vNF -sKr -eIh -oYP -oYP -oYP -oAH -oAH -oAH -ybu -oAH -oAH -eLV -eLV -iTR -iTR -eLV -iTR -iTR -eLV -eLV -eLV -eLV -hXe -iTM -hXe -qzf -qzf -sHd -qzf -qzf -qzf -sHd -tKP -tKP -cXI -cXI -tKP -tKP -tKP -tKP -vwP -hkg -rQm -rQm -rQm -pGs -sKr -uIY -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(101,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -vNF -sKr -wBb -wBb -xYO -gTP -rdv -kFJ -rdv -rdv -rdv -rdv -ybf -rdv -pCR -rdv -rdv -fHs -rdv -rdv -ybf -rdv -rdv -kFJ -rdv -xtN -lFZ -aCf -wUu -pgO -eYz -vQO -fMz -guo -guo -dkJ -aUh -aUh -qRq -bRc -guo -olg -uPQ -ucu -rMr -mal -vEq -oMW -oMW -sKr -uIY -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(102,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -vNF -sKr -wBb -wBb -wBb -xYO -rru -sJJ -hcz -hcz -hcz -lWu -fPZ -lWu -lWu -lWu -lWu -lWu -lWu -lWu -lWu -lWu -lWu -lWu -lWu -lWu -pEW -rot -reM -mEk -qQL -qQL -qQL -kmV -sJJ -lWu -lWu -lWu -lWu -lWu -lWu -lWu -lWu -hIr -vfC -opm -pep -vEq -oMW -oMW -oMW -sKr -uIY -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(103,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wfu -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -vNF -tRD -tRD -tRD -sKr -wBb -wBb -wBb -wBb -xYO -rru -kBm -aNt -ufy -aNt -msN -fDE -kap -aNt -dQB -uvl -lWe -mDe -iKi -dMb -hNE -iKw -jxz -ajp -uAb -bXB -goN -mzU -sJJ -lWu -lWu -iMx -iNj -kBm -mdD -mdD -mdD -mdD -mdD -mdD -mdD -mdD -mdD -goN -guo -lFk -vEq -oMW -oMW -oMW -oMW -sKr -bCV -tRD -pJp -uIY -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(104,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -vNF -sKr -wBb -wBb -wBb -wBb -wBb -wBb -wBb -wBb -gSO -soQ -nvR -aNt -pmj -xDs -sEG -rlJ -rLn -rZt -ftM -hbM -hNE -lEP -hNE -fVt -hNE -cjb -rTE -hhZ -djQ -dhj -goN -mzU -ofg -bbh -tIX -xxB -iNj -kBm -mdD -mdD -mdD -mdD -mdD -mdD -mdD -mdD -mdD -goN -guo -lFk -uQO -cTy -rFV -oMW -oMW -kBS -kBS -oMW -oMW -sKr -uIY -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(105,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -wBb -wBb -xYO -xYO -xYO -xYO -xYO -gSO -gSO -gSO -gYC -kBm -ocQ -dsY -ipp -hBu -gTx -cYN -qKb -aNt -deO -vWX -eJA -kes -otN -tOi -imA -sxB -dnQ -gUF -rkX -goN -vkF -qga -bbh -tIX -tam -npy -kBm -mdD -mdD -mdD -mdD -mdD -mdD -mdD -mdD -mdD -goN -guo -lFk -fOl -fAh -btn -eID -oMW -vXC -vXC -oMW -oMW -oMW -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(106,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -wBb -xYO -xyI -oWS -sgt -szw -wiB -gos -pnG -gSO -pbE -kBm -uLm -sEG -nei -sjc -qBN -rLL -cmA -dew -fIX -gwp -mCS -aUU -uRj -jrw -apE -qee -uwl -lmQ -rkX -goN -mzU -yeS -bbh -tIX -wqu -fzK -kBm -mdD -mdD -mdD -mdD -iNG -mdD -mdD -mdD -mdD -goN -olX -mbT -fOl -ofP -anD -cXj -gkG -xdN -xdN -jqX -oMW -oMW -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(107,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -wBb -xYO -lvm -isN -tnF -isN -mnv -isN -isN -pnI -pHs -kBm -phN -rAf -nei -muq -aNt -aNt -rhl -aNt -csP -voO -eWf -ich -vjF -tOi -fkY -fLm -cvk -wOa -dhj -goN -mzU -aPW -bbh -tIX -rgy -fzK -kBm -mdD -mdD -mdD -mdD -mdD -mdD -mdD -mdD -mdD -goN -guo -pYa -uQO -dvF -anD -hOX -edK -iAW -bjJ -qic -oMW -oMW -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(108,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -wBb -xYO -kQU -eiV -vCd -kqh -vZF -kzJ -kzJ -cmr -pHs -kBm -pad -dxl -vrE -vir -ndK -fQd -sZd -wxx -dlH -hVy -dlH -dlH -vgU -dlH -dvy -dvy -dvy -lvv -rkX -goN -mzU -cno -aUh -aUh -kim -fzK -kBm -mdD -mdD -mdD -mdD -mdD -mdD -mdD -mdD -mdD -goN -guo -amK -fOl -buO -gFs -sIL -hPy -nOz -vha -rVK -oMW -oMW -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(109,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -fLf -wBb -xYO -kLV -oWS -wBZ -fiD -dWM -lJL -muo -gSO -vJu -kBm -aNt -aNt -aNt -jSm -ndK -kLQ -pip -nfK -dlH -bli -kph -tzi -xOK -dlH -opr -wmo -put -lmQ -rkX -goN -mzU -guo -oDP -grZ -guo -fzK -cno -aUh -aUh -aUh -aUh -aUh -aUh -aUh -aUh -aUh -kim -guo -kCI -fjT -bsS -iBu -kVG -slf -oDI -vha -wrC -oMW -oMW -vZb -wJN -wJN -wJN -wJN -wJN -ofN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(110,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -gRR -xaC -cfx -cfx -cfx -cfx -uwf -cfx -cfx -cfx -iui -kBm -mdD -mdD -jkC -lIQ -vcJ -scx -vkW -iwf -elF -tVD -pdK -aQS -eJG -gzR -kxy -wQg -fvA -lmQ -rkX -goN -xqa -sYL -cfl -grZ -ilt -yeT -rwc -rwc -rwc -ybM -ybM -ybM -ybM -ybM -ybM -ybM -ybM -ybM -tAO -uQO -aaU -twz -uLY -nxs -vha -vha -qZk -oMW -oMW -rsq -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(111,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -gRR -xaC -fFU -fFU -ozv -sPw -jPk -joA -cPA -cfx -gJv -kBm -uZT -uZT -uZT -ket -ndK -kLQ -pip -nfK -dlH -kvv -jPB -mde -gpi -dlH -frJ -vSQ -sLe -lmQ -rkX -goN -mzU -guo -slE -grZ -wvZ -wRk -lWu -lWu -lWu -lWu -lWu -lWu -lWu -lWu -lWu -lWu -lWu -iMx -rWZ -rVY -rVY -rVY -rVY -rVY -rVY -rVY -clg -clg -clg -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(112,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -gRR -xaC -fFU -fFU -gvf -gvf -jPk -gvf -gvf -vDW -pHs -kBm -uZT -iRB -iRB -iRB -ndK -wqC -fUd -luY -dlH -jHB -dlH -dlH -qXP -dlH -tLA -hRz -vfI -lvv -rkX -goN -mzU -sJJ -lWu -lWu -iMx -uMs -fqq -xJP -qkU -qkU -ipR -rhB -rhB -caC -rhB -rhB -gLS -goN -eiQ -pdL -fjo -edI -tDI -ppM -tlB -rVY -clg -clg -clg -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(113,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -gRR -xaC -xaC -iOl -gvf -uzM -jPk -gvf -gvf -vDW -pHs -kBm -dBO -iRB -iRB -xor -uZT -uZT -tgJ -uZT -nhU -xyk -suB -vNz -ick -hqa -vFk -muX -gcg -maC -dhj -goN -mzU -frX -bbh -dmM -mQt -uMs -mbl -nlI -gwL -pST -lwj -cYd -vVx -fVp -acO -lac -rhB -goN -vYX -rVY -cTv -bxy -mfv -tzJ -etL -rVY -clg -clg -sKr -syP -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(114,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -gRR -gRR -xaC -dMH -vZT -vZT -rPy -scE -bDH -cfx -vJu -kBm -xKP -iRB -iRB -iRB -ldI -sxf -qrp -rqD -jhB -cDD -xaJ -fub -jSE -dDx -ryZ -lvf -efu -lmQ -rkX -goN -mzU -anX -bbh -dmM -hvk -uMs -htn -rhQ -ctF -jrK -fDJ -aYA -apD -qGQ -jVn -kNS -rhB -mVF -aMG -bRI -hrz -qod -yaA -sSy -gsM -rVY -clg -clg -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(115,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -shy -sKr -gRR -xaC -xaC -xiS -pVO -xLl -lmj -qOa -cfx -dyx -uOm -sDE -kfs -kfs -kfs -uGz -gPw -wpZ -uZT -eav -cJH -hcd -pIW -dan -nhU -bZW -bxO -qCt -euR -rkX -goN -irD -fCM -bbh -dmM -hvk -mpV -ivv -tWV -vrg -qIK -uCg -tHT -qKK -qfc -xnl -ksM -xzL -goN -meb -pdL -etS -cXB -fQU -uLp -oDJ -rVY -clg -clg -qKz -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(116,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -gRR -gRR -xaC -cfx -cfx -qwS -cfx -cfx -cfx -jqk -kBm -uZT -hrY -iRB -iRB -wZr -wpo -vFf -uZT -nhU -nhU -nhU -whL -cOj -nhU -sWn -yeP -khc -djQ -dhj -goN -tCa -axe -bbh -dmM -hvk -kBm -sKy -cOL -llP -gMR -rhB -usp -bqL -yel -cCC -eAG -rhB -goN -tqx -rVY -rVY -pdL -vna -pdL -rVY -mri -clg -clg -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(117,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -shy -sKr -qoL -qoL -sqm -sru -svN -jYQ -uYt -lQb -jqk -kBm -uZT -tqV -uZT -uZT -aAE -uoD -uZT -ghk -rDr -rDr -rDr -rDr -rDr -nhU -dvy -kPq -uKL -nRA -tvk -goN -mzU -cno -aUh -aUh -ltl -kBm -btX -cOL -uIF -aMS -rhB -rhB -rhB -rhB -rhB -caC -rhB -goN -meb -njY -gSU -gpS -bzt -syO -bCU -pyn -pyn -sKr -syP -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(118,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -oWj -fRj -mqO -jjn -glW -lQb -sew -sDJ -nIN -nIN -nIN -vAP -vAP -vAP -vAP -vAP -vAP -vAP -vAP -vAP -vAP -vAP -vAP -sSq -qjD -aUh -aUh -kim -mzU -guo -guo -guo -qvW -cno -aUh -aUh -aUh -aUh -aUh -aUh -aUh -aUh -omZ -eoG -uDO -kim -meb -njY -axt -ssv -git -nqp -bCU -pyn -pyn -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(119,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -fLf -qoL -qoL -sAc -xUQ -fSA -xjq -tun -jgb -vWG -vsI -xmK -dFF -myu -dFF -dRi -rdv -fXF -ayY -uZC -rdv -rdv -alN -xLO -sbF -ibS -qQX -ejQ -whQ -tYV -vBm -mVh -fHg -hFe -fHg -qRU -fHg -hFe -fHg -fHg -oDV -aLw -jZa -dzx -jZa -pSy -bqS -bfI -uqm -ebM -bCU -ulQ -vBH -gcN -hWR -bCU -pyn -pyn -rsq -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(120,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -lQb -gaQ -lQb -xsu -lQb -lQb -lQb -uKz -lQb -kCm -kCm -mpx -ldP -akf -kCm -kCm -kIk -kIk -hfv -kJg -kIk -bDn -bDn -vRU -bDn -xmN -lKQ -xmN -grZ -piy -grZ -kYN -ttF -ttF -grZ -xVe -seP -seP -rcx -seP -seP -seP -sTi -lQb -nai -rXf -vqR -bCU -wlQ -cdQ -prY -rxR -bCU -pyn -pyn -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(121,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -uPo -kKl -cZU -sFs -pRb -lQb -aBR -eAj -elu -kCm -uVt -twj -mue -rBD -wmn -mhK -kIk -eDC -feR -pTH -heQ -bDn -lqA -lqA -bDn -lQb -ceT -lQb -grZ -iJi -iul -wlV -isv -wlV -iul -hiM -seP -mjM -sad -ope -wLT -seP -aUN -lQb -cwe -ikr -wWd -bCU -mhx -jLm -fYO -peD -bCU -pyn -pyn -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(122,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -ajS -kKl -xrV -sFs -pRb -lQb -aBR -eAj -qfV -kCm -ika -gmQ -mRo -wng -bxS -iBJ -kIk -nFl -aDN -eNl -jKE -bHq -wtu -lqA -bDn -nQi -sbP -sLu -grZ -iJi -iul -oLr -iAv -sbG -iul -hiM -seP -xwc -bvA -oMM -oMM -seP -aUN -lQb -uPn -ghO -hXT -bCU -bCU -njY -rNR -njY -bCU -pyn -pyn -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(123,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -qLW -kKl -xrV -sFs -lQb -lQb -ofO -eAj -taA -kCm -qpE -mCo -bcP -dpY -nKQ -mgg -kIk -pQe -oGL -gew -pOK -bDn -lqA -lqA -bDn -dFA -uGY -cZj -grZ -uFR -blD -cpR -blD -rFP -uSA -hcT -seP -chs -fsX -bZH -adx -seP -iKC -lQb -xuO -aUd -nPW -vIL -qGA -jes -qDD -erZ -qyv -fAq -fAq -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(124,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -mxj -kvH -pOn -jav -lQb -rhx -sFm -eAj -xcF -kCm -kCm -kCm -kCm -qtN -kCm -kCm -kIk -kIk -kIk -kIk -iDl -bDn -bDn -bDn -bDn -kbn -lMY -ubr -grZ -grZ -grZ -grZ -grZ -grZ -grZ -grZ -seP -seP -hWh -seP -seP -seP -fiA -fDC -xuO -gQl -iOc -qyv -oah -lEY -tGQ -uzR -qyv -fAq -fAq -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(125,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -xzu -pFP -bYy -vvz -sts -hKH -hKH -adC -hKH -tiE -wbt -nNq -pui -pRa -wOs -bWn -dRw -llr -bUh -bGx -itj -dKE -yhh -dKE -qVU -lyU -lPI -rZM -cPD -gPp -gPp -bnf -gPp -dPP -gPp -gPp -gPp -xJU -cfp -ceU -klM -iEJ -gEf -gWh -xuO -xuO -xuO -qyv -gxn -vQl -rfN -wpV -qyv -fAq -fAq -vZb -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(126,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -mGi -oet -cqW -gmz -lQb -oao -sFm -sFm -cBq -lQb -lQb -cwJ -qeq -gVn -jBz -jBz -jBz -jBz -rTz -jBz -hIf -lQb -lQb -lQb -lQb -cKt -dDf -lQb -uCB -uCB -uCB -uCB -uuL -ygz -uCB -uCB -uCB -lQb -lQb -llx -lQb -lQb -lBJ -bgh -lQb -qyv -eAk -gXf -gXf -gXf -maQ -vfn -qyv -fAq -fAq -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(127,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -rBx -oet -aqH -gmz -lQb -lQb -uYq -lZZ -lZZ -lZZ -ukd -uCk -epj -wHD -eai -buQ -cCy -gUS -mEl -jBz -fca -wIq -wIq -lQb -lQb -lzO -gNl -tMV -uCB -pke -mkS -dZU -mkS -vnW -eha -cPK -uCB -kGk -hnN -mwN -tgQ -lQb -sVN -aWX -lQb -qyv -xTs -gXf -lOn -cKJ -maQ -bbD -qyv -fAq -fAq -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(128,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -lQb -uPD -lQb -lQb -lQb -hYz -qsE -xzN -xWu -ekr -sbe -bDc -jGz -bes -emU -hoa -dfP -uAv -rvp -jBz -elC -ovq -peU -lQb -lQb -gSV -okE -tBq -gHu -lxz -hSU -lGq -ius -wTI -mkS -wTI -uCB -aHK -uGT -qjM -nIa -lZZ -beC -lZZ -lZZ -jzm -hsT -gXf -xTs -cKJ -whe -xQg -iWf -fAq -fAq -rsq -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(129,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -fLf -qoL -qoL -omi -jtg -vok -qsE -qsE -qsE -qsE -xzN -vYz -lZZ -elu -cdg -jmb -fCl -jBz -jBz -jBz -jBz -rac -jBz -fca -hoN -obf -lQb -lZZ -lZZ -kuQ -lZZ -ceZ -ivw -mkS -mkS -sfW -sSz -wTI -ift -uCB -qsE -eZr -peU -eQY -slS -ful -awQ -eDL -jzm -fbb -gXf -hsT -cuP -gXf -iCg -giC -jfR -ppb -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(130,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -sAK -cis -lQb -clM -ttq -gIy -vDV -xzN -ghU -lZZ -ciB -tof -fxZ -bed -obI -eZa -eZa -lEQ -hfK -exM -xam -sru -sru -htd -lZZ -ogq -mXm -rAl -ceZ -wzG -hYy -sCP -iOJ -sqD -yiT -mpE -uCB -rhx -dwD -bRg -lZZ -slS -slS -slS -raU -jzm -hhO -gXf -fbb -jzm -jzm -iCg -fsR -ovz -eqm -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(131,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -mUJ -pXI -xzN -xzN -xzN -xzN -xzN -xzN -ozf -xzN -xzN -xzN -xzN -xzN -qoL -qoL -qoL -qoL -qoL -qoL -qoL -qoL -qoL -qoL -qoL -sPH -lgH -kjC -faA -faA -faA -faA -faA -faA -faA -faA -faA -qoL -qoL -slS -slS -slS -slS -slS -kbW -slS -slS -slS -slS -slS -bNC -hZn -fwS -eWC -ppb -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(132,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -jyp -edj -xzN -xzN -xzN -xzN -xzN -fvL -cUz -lfs -xzN -xzN -xzN -rUB -qoL -qoL -qoL -qoL -qoL -qoL -qoL -qoL -qoL -qoL -qoL -qoL -oZN -qoL -faA -uTg -faA -faA -faA -faA -faA -faA -faA -qoL -qoL -slS -slS -slS -slS -wRs -dvv -oDY -slS -slS -slS -slS -tnZ -duD -wqm -kyI -ppb -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(133,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -xPO -smh -xzN -xzN -wsk -qpe -ukj -vSl -lNm -aTq -bjG -dQa -mxC -xzN -ubp -ubp -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -lva -lva -wnT -lva -lva -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -qoL -qoL -slS -qFF -vWu -lMF -jHH -fIK -oGg -kAg -ukl -qTM -slS -lIY -hZn -cRe -dlN -ppb -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(134,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -qoL -izv -xzN -xzN -fRP -aqF -rHt -hBx -bGZ -hPn -mgy -ofY -pnT -xzN -ubp -wJN -wJN -wJN -wJN -sJY -sJY -sJY -sJY -wJN -lva -ueK -fkR -bFf -lva -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -qoL -slS -pQs -hXt -eEb -mep -dvK -vIP -giR -vOF -brU -slS -nfe -hZn -fMI -bPb -ppb -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(135,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -plv -qoL -qoL -qoL -taB -xzN -xzN -nAL -tZE -qOK -uJu -vGn -tDh -bjG -qQO -oVJ -xzN -ubp -wJN -wJN -wJN -sJY -sJY -sJY -sJY -sJY -wJN -lva -wfa -vlT -dJp -lva -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -qoL -slS -eUo -szZ -lMF -iEt -fdz -cGE -rAd -plt -tma -slS -kFV -mAw -wwH -ppb -ppb -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(136,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -shy -xHR -qoL -qoL -vmx -xzN -xzN -xzN -xzN -xzN -gPA -gSQ -ghC -tMa -tMa -tMa -tMa -wJN -wJN -wJN -wJN -sJY -sJY -xCc -icT -sJY -gaP -lva -fwR -alY -lva -lva -cOt -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -sAu -sAu -sAu -pfh -dul -tGC -lfG -slS -slS -slS -slS -bKt -dqh -sAX -ppb -sKr -syP -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(137,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -obS -xHR -qoL -qoL -uSa -xzN -xzN -bPt -jNv -jQS -pGu -lpQ -rub -pwN -ebf -rVf -nYh -wJN -wJN -wJN -wJN -uoB -cFe -oPr -sgF -sJY -tni -lva -uIr -lok -noV -omc -cOt -rfU -rfU -cOt -wJN -wJN -wJN -wJN -wJN -dHB -sAu -cZP -qZE -iKU -uhC -oQw -ktt -rjA -ggp -vMx -slS -nOZ -hZn -xNb -ppb -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(138,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -obS -afU -qoL -qoL -qoL -xzN -xzN -fdB -mDx -sMy -mMK -eNi -crZ -pwN -upK -lny -xXX -wJN -wJN -wJN -wJN -uoB -cFe -drx -hHF -rAu -eAi -exm -syr -ncm -nOM -xhX -dQp -hlo -upO -cOt -cOt -wJN -wJN -wJN -wJN -wJN -gko -enq -dmN -iKU -apU -sbp -ulv -dUD -wCl -sxJ -slS -sll -knQ -wKq -ppb -vZb -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(139,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -obS -xHR -qoL -qoL -qoL -xzN -xzN -ljR -qwK -ukj -oSU -bJI -lGr -ldg -tbI -lvB -ewq -wJN -wJN -wJN -sJY -sJY -sJY -iqM -wzp -dyz -baK -sHw -spe -mVr -pTN -iti -dQp -kMf -cbu -cFG -dQp -wJN -wJN -wJN -wJN -pKq -sAu -hos -qHE -jbw -kLS -kwZ -mNf -kAg -eqF -xII -slS -vMS -ppb -ppb -ppb -rsq -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(140,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -obS -iZg -xHR -xHR -qoL -ceA -xzN -xzN -xzN -xzN -ucW -feM -mSU -eiD -cVE -rQo -tMa -wJN -wJN -wJN -uoB -cFe -jmt -mEE -wzp -luU -mGY -gzc -sGG -utb -kFT -kFT -cWb -aim -juH -rkR -dQp -wJN -wJN -wJN -wJN -wJN -sAu -eyY -dPv -vru -cTo -hCF -tUi -slS -slS -slS -slS -ppb -ppb -sKr -aeO -syP -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(141,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -jiV -aBe -xHR -xHR -avJ -iBd -mQJ -mSW -vXi -niz -vXi -gTL -mPs -jnG -rrY -ceA -wJN -wJN -wJN -uoB -cFe -gGZ -duy -odC -aWD -xgH -trS -hOR -wjO -jDO -xWZ -jDO -mWA -wNr -cWb -cOt -wJN -wJN -wJN -wJN -wJN -ias -dsj -sQG -tcb -onp -uPl -ucE -uPl -mVw -ibW -pMx -jMY -sKr -syP -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -svy -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(142,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -aBe -xHR -cVl -dbD -hCG -svE -tnx -svE -fpW -svE -tnx -meY -nCA -ceA -wJN -wJN -wJN -fgD -fgD -lkP -lkP -lkP -lkP -lkP -lkP -bgl -dAn -cWb -cWb -cWb -cWb -cWb -cWb -cOt -heP -heP -heP -wJN -wJN -ias -ieR -gFv -nQL -bMH -qMm -bMH -nQL -bMH -uhk -bgx -vxZ -syP -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(143,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -aBe -xHR -hpV -ceA -soE -soE -soE -ceA -soE -soE -soE -ceA -wJN -wJN -wJN -fgD -fgD -atF -hAZ -gih -nVW -uqZ -jDJ -lkP -aKm -pjX -eYR -jws -sVs -dCn -eSI -eYR -eYR -eYR -eYR -eYR -heP -wJN -wJN -ias -nCK -nCK -nCK -ias -nCK -nCK -nCK -ias -kKL -syP -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(144,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -jiV -jiV -egi -wJN -wJN -wJN -egi -wJN -wJN -wJN -egi -wJN -wJN -wJN -fgD -fgD -oJT -vFu -vFu -oZg -vFu -wUV -lkP -mvA -iHT -eYR -mSv -mWa -rEn -dnh -eYR -wJl -eQV -rbR -eYR -heP -wJN -wJN -egi -wJN -wJN -wJN -egi -wJN -wJN -wJN -egi -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(145,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -skb -xct -cLq -fcy -aQF -mSZ -ouU -ouU -siy -aBD -pUq -xaj -wvv -gPM -mcr -abK -eYR -ctW -jxi -axq -eYR -heP -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(146,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -skb -xct -czd -xab -cUh -ijN -vXp -alS -lkP -bxn -mYA -ksw -jcJ -cLH -aQn -jsg -vrF -rxK -ouD -ciu -eYR -heP -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(147,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -skb -xct -lQj -xwP -aFg -jPr -vbV -xuz -bXZ -uPM -xZU -vjs -mHf -lbZ -nLL -oZK -eYR -cxi -uvj -vgx -eYR -heP -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(148,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -xaE -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -fgD -fgD -uUN -tqw -nKk -rpR -uKY -mwS -bXZ -ogG -hzN -eYR -eYR -eYR -eYR -eYR -eYR -eYR -eYR -eYR -eYR -heP -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(149,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -fgD -lkP -lkP -bXZ -bXZ -bXZ -lkP -lkP -lkP -cYT -mvq -fvF -lkG -tbD -sjf -gns -eaT -gPU -eDt -stn -tyd -uSS -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(150,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wQE -wQE -tXc -vTg -jey -xAM -qQu -iwh -pXh -pqT -mFL -fvF -uYM -lrf -rxZ -aRH -kqn -kwt -jbH -eSp -tyd -uSS -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(151,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -nGx -qui -dPB -dPB -dPB -bij -dPB -vkf -pXh -suZ -mvq -pZt -fPC -xEE -pTM -rMh -eaT -eoX -eaD -rpA -tyd -uSS -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(152,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -nGx -qui -dPB -lgE -pcP -tBK -dPB -hxu -owS -qez -sQZ -itG -cxW -woz -iqa -vmp -slF -slF -slF -slF -slF -aCu -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(153,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wQE -wQE -xPo -ekZ -pHA -jac -uYT -yag -iqc -agA -mZa -lDZ -nEt -nBS -jxw -lDU -ani -jXA -nbB -nvV -sxT -uKe -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(154,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -pco -aPJ -kVY -aPJ -aPJ -xKS -qLA -dPB -owS -vLM -iIK -itG -ulT -jIF -fXP -yid -qLh -xfw -tMh -sdb -sxT -uKe -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(155,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -pco -pco -olO -xYV -aPJ -emx -kpk -pAP -owS -eeE -jrL -itG -fzo -tnB -nHX -prl -aag -jzJ -tKX -wwr -sxT -uKe -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(156,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -uYs -vDj -ffU -rhs -aPJ -nGe -nGe -nGe -nGe -jjB -nGe -nGe -nGe -uJt -iDj -iMo -fqc -fqc -fqc -fqc -fqc -mGG -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(157,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -uYs -vDj -vyf -fxn -aPJ -loC -kuY -pPw -mMW -nZH -noS -xch -nGe -lOA -vmf -dzY -lhF -qQA -eRV -dwh -atH -ilB -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(158,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -uYs -vDj -ilz -tVL -aPJ -dFV -ght -wrv -kTn -gMI -fHz -uCq -nGe -niO -wjs -giZ -trg -fih -uCw -sFg -tXS -ilB -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(159,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -pco -pco -ilz -swe -aPJ -gZz -osy -iEY -wrv -qaU -xmU -dVJ -nGe -gqO -xya -vmf -lMl -pAB -hQZ -vuC -tXS -ilB -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(160,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -pco -aPJ -xdB -aPJ -aPJ -xJc -wrv -dbQ -qtJ -wdN -giT -nsS -nGe -roq -ekw -gSc -cBI -ajd -ajd -ajd -ajd -ajd -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(161,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -hLO -hLO -hEJ -sUO -aPJ -nGe -ixb -oWd -qLF -dMl -nTC -dMl -oLl -itG -itG -rvT -uda -rvT -lYA -fdI -uMi -uMi -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(162,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -hLO -lQX -mjk -aPJ -nGe -sUt -leb -jzv -jCr -xiA -wMx -oLl -rvT -rvT -rvT -sQs -sQs -hIq -sQs -uMi -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(163,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -hLO -hLO -hLO -hLO -ndR -nkh -edR -nfn -pJe -sSb -cQT -kPn -uMi -uMi -uMi -uMi -uMi -uMi -uMi -uMi -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(164,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -hLO -fUi -fUi -fUi -ndR -pLR -kMd -xfz -tNg -tNg -tNg -xfz -uMi -oca -oca -uMi -oca -oca -oca -uMi -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(165,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(166,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(167,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(168,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(169,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(170,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(171,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(172,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(173,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(174,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(175,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(176,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(177,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(178,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(179,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(180,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(181,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(182,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(183,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(184,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(185,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(186,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(187,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(188,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(189,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(190,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(191,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(192,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(193,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(194,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(195,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(196,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(197,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(198,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(199,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(200,1,1) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} - -(1,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(2,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(3,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(4,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(5,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(6,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(7,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(8,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(9,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(10,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(11,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(12,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(13,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(14,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(15,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(16,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(17,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(18,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(19,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(20,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aSX -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aSX -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wOv -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(21,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -aSX -aSX -aSX -aSX -aSX -aSX -kdQ -fuc -lLZ -aSX -aSX -aSX -aSX -aSX -aSX -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(22,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -aSX -aSX -aSX -aSX -aSX -aSX -lQM -dDa -pJv -aSX -aSX -aSX -aSX -aSX -aSX -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(23,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -soS -aSX -ltr -ltr -ltr -bXN -bXN -lxq -lxq -lxq -bXN -bXN -ltr -ltr -ltr -aSX -xsf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(24,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -tXe -aSX -ltr -hWZ -aMp -bXN -dRD -vWR -lCH -dET -pFg -bXN -aMp -qwA -ltr -aSX -tXe -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(25,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -tXe -tXe -aSX -ltr -krI -oRs -vDv -fUJ -sGF -lCH -krn -qQY -vDv -rRV -mDb -ltr -aSX -tXe -tXe -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(26,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -nXq -tXe -tXe -aSX -ltr -krI -oRs -vDv -oRl -cNO -cfU -qvX -cow -vDv -rRV -ahf -ltr -aSX -tXe -tXe -nXq -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(27,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -tXe -tXe -aSX -ltr -esD -ogH -bXN -wNV -xvT -gAD -iYT -qqj -bXN -ogH -nxu -ltr -aSX -tXe -tXe -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(28,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -tXe -aSX -ltr -rZl -lrV -bXN -roC -ddK -fEQ -qqj -fbN -bXN -lrV -wve -ltr -aSX -tXe -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(29,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -aSX -ltr -cGe -qwA -bXN -kog -vDv -vDv -vDv -bCu -bXN -hWZ -brh -ltr -aSX -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(30,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -aSX -ltr -qPL -ahf -uoM -lVe -lkM -kUs -lkM -jrX -nwH -krI -feJ -ltr -aSX -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(31,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rlU -soS -aSX -ltr -jSh -ahf -jDW -awc -ogH -obN -ogH -nxu -dYi -jfm -rWn -ltr -aSX -xsf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(32,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -aSX -ltr -iyG -jGA -iGf -rdM -kiH -nzU -kiH -kiH -gUf -iIJ -vdL -ltr -aSX -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(33,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -fDT -aSX -ltr -iwi -xhr -fIb -vCB -mfM -dGd -qNZ -eiW -gVs -dLM -fkN -ltr -aSX -aSX -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(34,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -fDT -fEN -fEN -fEN -fEN -kfA -hjA -rLs -rLs -oUl -rLs -kfA -ltr -pSq -ltr -aSX -aSX -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(35,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rlU -tXe -fDT -fDT -fEN -pMI -vEO -bsV -kfA -guV -iYZ -jHe -psy -eZI -kfA -aAJ -hrT -ltr -aSX -aSX -aSX -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(36,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -tXe -tXe -qwO -anF -rql -hRS -trM -kBu -kfA -ybD -sxI -rfs -iBB -dEs -cEt -lXk -oZz -ltr -aSX -aSX -aSX -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(37,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -rpE -rpE -rlU -tXe -soS -fDT -fDT -fDT -fEN -rFM -cJb -rFM -kfA -qNx -nrt -beb -xGg -tWg -kfA -jfH -roN -ltr -fvb -aSX -aSX -aSX -rtT -rtT -rtT -rtT -rpE -rpE -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(38,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rlU -tXe -bAw -tXe -tXe -tXe -bAD -fDT -fDT -fDT -fEN -fEN -faB -fEN -kfA -xZb -ihh -bvn -wNX -lMG -kfA -ltr -ltr -ltr -ltr -ltr -aSX -aSX -rtT -rtT -rtT -idA -tXe -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(39,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -pJO -pJO -pJO -pJO -pJO -pJO -pJO -pJO -pFd -olw -liW -jZl -kfA -qdc -sxH -bfS -bUc -kXK -kfA -eaO -iJQ -hla -oRw -dLe -mpe -mpe -mpe -mpe -mpe -mpe -mpe -bAD -tXe -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(40,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -tXe -pJO -pJO -pFd -pFd -pFd -pFd -pFd -pFd -pFd -pFd -dgC -liW -jZl -kfA -kfA -kfA -lZJ -kfA -kfA -kfA -uSb -rdj -bvw -hdJ -dLe -dLe -dLe -dLe -dLe -dLe -dLe -mpe -mpe -bAw -tXe -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(41,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pJO -pJO -pFd -rNb -kCz -cpk -fHI -tLY -rXh -ujt -pFd -utv -cQa -jZl -hwe -fPL -dGz -esk -ghs -fPL -nCI -nCI -lZQ -nCI -nCI -dLe -aQp -oQg -ygP -gal -gal -dLe -dLe -mpe -mpe -tXe -tXe -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(42,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pJO -pJO -pJO -pFd -fPp -caf -xVQ -udJ -rcS -caf -caf -pFd -siD -sNV -oDE -vLj -jZk -jZk -xhz -jZk -jZk -vQJ -kPV -fPT -pkh -aBC -dLe -aQp -vjP -vjP -vjP -vjP -oQg -dLe -dLe -mpe -mpe -tXe -tXe -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(43,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pJO -pJO -pFd -pFd -pFd -huO -lwm -wWF -kyc -nZf -opd -iPk -pFd -hWm -lGm -sky -tMB -pZL -pZL -pZv -pZL -pZL -lEz -jAm -nZa -uoI -hMp -dLe -aQp -jxY -pdZ -gbk -gbk -gbk -dLe -dLe -dLe -mpe -mpe -tXe -tXe -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(44,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pJO -pJO -pJO -pFd -kLB -pFd -pFd -pFd -pFd -mbk -pFd -pFd -pFd -pFd -gek -vdu -mnb -ezw -ezw -qcZ -oRX -ezw -ezw -ghJ -dmW -bzb -rgS -ohu -dLe -aQp -jxY -ygP -gal -gal -gal -gal -gal -dLe -dLe -mpe -mpe -tXe -tXe -atx -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(45,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aOq -aOq -aOq -aOq -uDW -kHm -dVs -dVs -dVs -fTC -ujv -jYx -dVs -dVs -dVs -rJx -hBZ -tTS -ezw -fKO -ovI -hya -vDa -ezw -noa -dmW -bzb -sQx -hka -dLe -aQp -jYB -tTD -tTD -bjo -iib -atq -pPx -vAL -dLe -dLe -mpe -mpe -tXe -tXe -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(46,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -aOq -aOq -uDW -uDW -uDW -uDW -esk -lGm -jaZ -jaZ -jaZ -vMX -jaZ -fLx -jaZ -jaZ -lBq -boS -esk -ezw -eUc -gNA -iTq -iPj -ezw -rID -dmW -bzb -sta -tUH -dLe -dLe -dLe -qcm -rJL -ehs -kdg -bGS -peL -lXQ -tih -dLe -dLe -mpe -mpe -xsf -tXe -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(47,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aOq -aOq -uDW -vZz -fTe -eZK -uDW -eGS -fDd -nsv -nsv -nsv -nsv -nsv -nsv -nsv -nsv -nsv -fDd -esk -ezw -aBL -gNA -iYI -gNA -xxv -sta -dmW -uTR -bgG -dnz -eWu -pCq -grk -qNV -pQY -pze -rcj -wfV -fUO -bAs -dLe -dLe -dLe -mpe -mpe -mpe -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(48,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aOq -aOq -uDW -rqd -kUy -hTZ -gDT -bdz -rvx -nsv -bQH -uPc -dBb -tlx -cON -wSZ -kyH -nsv -fDd -esk -ezw -wVO -gNA -wVf -gDw -ezw -aML -dmW -oDO -ghJ -ghJ -dLe -dLe -dLe -dLe -dLe -dLe -dLe -dLe -dLe -dLe -dLe -dLe -pqQ -dLe -dLe -mpe -bAD -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(49,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aOq -aOq -aOq -uDW -kJP -hTu -iKf -uDW -xwY -kKP -exi -fhP -ffp -nfq -mZA -dal -wUi -edc -pBQ -wEb -esk -ezw -kIy -tcE -nIo -kTW -ezw -vTQ -ccQ -tXY -eqt -pwH -pwH -pwH -pwH -pwH -gxm -uVm -pwH -cgh -pwH -pwH -pwH -pwH -pwH -ckL -nCI -tQA -tQA -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(50,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aOq -uDW -uDW -uDW -uDW -uDW -uDW -uDW -esk -wAw -nsv -vfD -cKS -sHD -rNm -jsR -rLt -oMG -nsv -fDd -esk -ezw -ivM -iZP -wxd -ivM -ezw -wDC -dmW -oBh -unm -tTX -tTX -tTX -tTX -tTX -qyK -oDh -tTX -tTX -tTX -tTX -tTX -tTX -wwG -aLQ -nCI -tQA -tQA -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(51,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -dHK -tKr -hmE -sfM -fQW -isA -wEf -tKr -esk -iKs -nsv -nHD -cKS -lfO -ejh -qdn -rLt -mEe -nsv -pha -dkV -bwv -kVf -lzz -lzz -kVf -bwv -bwv -kuJ -chc -ghJ -jan -jan -rHY -aTm -mez -nCI -nCI -agG -agG -agG -agG -tML -ghJ -jhd -ffN -nCI -nCI -tQA -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(52,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -dHK -tKr -dyS -qoW -tNo -tNo -xfu -tKr -esk -gek -nsv -nsv -kXA -nsv -nsv -nsv -dHN -nsv -nsv -fOG -kSS -cdH -klB -eXe -eXe -eXe -wbZ -cdH -fFO -kqy -ghJ -aBC -naG -uHw -rbf -weX -aHM -aHM -aHM -aHM -aHM -aHM -aHM -aHM -xiD -aLQ -xog -nCI -tQA -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(53,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -dHK -tKr -mzC -opb -liy -lDQ -iUm -tKr -esk -kJa -xyo -jVh -jmW -rBT -jZR -jjh -sSB -qRV -aCE -gHs -xcB -riq -caJ -cii -cii -cii -kYz -riq -xbZ -xDK -loO -loO -loO -loO -loO -loO -aHM -cCT -vnK -hGj -vSO -ang -jHu -aHM -xiD -aLQ -csX -nCI -tQA -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(54,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -dHK -tKr -iKQ -opb -nGc -pzw -tZs -hOi -hTP -eSJ -eeW -lNS -ckm -ktg -ktg -nQz -hmD -gkX -cDJ -eHP -rFv -cdH -gHp -nlt -pRM -szf -wvA -cdH -cij -pnE -loO -oNQ -kHd -nwm -mYa -mJy -kKt -mJt -uRR -oZY -pWl -lmT -hbD -aHM -xiD -aLQ -fFn -nCI -tQA -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(55,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -dHK -tKr -jKg -opb -vLT -ezA -wEl -tKr -esk -kJa -lwg -jmW -iTX -eEZ -eEZ -lub -jmW -lVr -aCE -eHP -xgt -kXN -kXN -kXN -kXN -kXN -kXN -kXN -fFO -pnE -loO -oFq -qDi -rCs -quv -ovT -hQX -oeQ -ddW -myr -nRO -ofb -nht -aHM -eTP -aLQ -uMu -nCI -tQA -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -ruB -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(56,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -dHK -tKr -cWn -inQ -fEw -nHI -azA -tKr -esk -kJa -xRU -jmW -mMg -dmG -dLK -vaI -dnf -abj -fUP -exY -akl -kXN -mGL -pAL -rDf -amf -tee -kXN -pPL -iIm -nVu -dgR -wEy -myn -jsz -xeQ -pdD -nRk -vnK -dme -vSO -xiY -utC -aHM -xiD -aLQ -lqB -nCI -tQA -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(57,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -dHK -tKr -oLp -err -hmZ -uEb -rCZ -tKr -esk -kJa -hUB -jmW -qKk -qKk -qKk -qKk -sSB -aIM -aCE -eHP -cpO -kXN -xTq -woS -rKi -acR -gRz -kXN -pyq -pnE -loO -dCr -kRb -oaY -bIP -aHL -tqr -oKt -wDG -fYE -ehI -fdV -aHM -aHM -xiD -aLQ -nPi -nCI -tQA -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(58,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -iQB -aRo -aRo -aRo -aRo -aRo -aRo -aRo -qcQ -kJa -rzq -vvB -eYf -kZq -uAN -unF -mPZ -ecF -kJa -tvr -uYY -kXN -qoR -owI -mTI -shn -adB -kXN -nZd -qTL -loO -ckW -tmA -lHf -mqd -res -nRy -lyr -wBg -xZO -uwC -yfS -aHM -lNZ -xiD -aLQ -rgS -nCI -tQA -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(59,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -iQB -aRo -vgW -xKB -cwT -deD -bhb -aRo -esk -gek -gek -gek -sln -sln -sln -vyb -urw -sln -sln -plz -qms -kXN -xTq -xgD -saT -uGF -gRz -kXN -woR -bts -loO -iel -oVV -ycY -pHt -hwV -dma -llX -voT -llX -llX -qUe -aHM -uHB -xiD -aLQ -wWo -nCI -tQA -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(60,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -iQB -aRo -hvT -bVg -xuD -uIX -wPQ -aRo -cZY -jZl -cNv -bgP -sln -lDS -wkl -vOC -qGw -gIN -sln -eHP -sDz -kXN -nqH -lqX -oDU -ggH -ihl -kXN -wkN -pnE -loO -lvu -sNW -cbO -ifH -dzO -aHM -xvV -mYT -dBP -jBQ -yiq -aHM -xjQ -xiD -aLQ -uAp -nCI -tQA -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(61,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -lUl -lUl -lUl -lUl -lUl -lUl -lUl -lUl -pFz -pFz -pFz -iQB -aRo -xOd -hvd -ntX -mge -kmI -skO -fMG -jZl -jZl -jZl -sln -ouB -uPj -dkC -sHU -jsG -hWe -bAx -gHX -kXN -kXN -kXN -ocu -kXN -kXN -kXN -qms -gZZ -evm -evm -evm -evm -evm -evm -dPl -dPl -rjz -dPl -dPl -dPl -nCI -ghJ -jhd -ffN -ghJ -nCI -tQA -mXk -mXk -mXk -mXk -mXk -mXk -mXk -mXk -mXk -mXk -mXk -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(62,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -xBi -iQB -aRo -mUi -pCc -krZ -kVZ -fcC -aRo -aUp -rAR -rAR -rAR -adO -ssx -dMc -sxK -fGK -cLI -rle -eHP -xgt -oma -kXN -ivu -rap -lMX -ttD -kXN -woR -fcN -evm -uhE -cRB -bwn -jcy -evm -rGS -voA -uGu -sUI -bck -dPl -fEE -tTX -hGD -aLQ -pjL -nCI -tQA -fTv -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -mXk -rtT -rtT -rtT -rtT -eML -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(63,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -rtT -qfi -qfi -qfi -qfi -qfi -qfi -qfi -qfi -qfi -vsF -iQB -aRo -sdS -oiC -oXI -aVS -gFS -aRo -qrw -qxo -faw -qVv -sln -grs -jmI -uYX -wLg -dgj -vyS -buC -aPY -hTA -mba -cBz -rbU -bmr -jcA -kXN -fFO -prP -bjq -cIe -epT -pzr -kDj -evm -naT -sLL -bld -fHi -gsX -mDE -oHu -web -stN -npf -dbj -nCI -tQA -eAS -pfc -vvw -vvw -vvw -vvw -vvw -vvw -vvw -vvw -kkr -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(64,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -cZw -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -dbV -jqf -jqf -jqf -jqf -jqf -jqf -jqf -jqf -iif -iQB -aRo -aRo -aRo -aRo -aRo -aRo -aRo -qcQ -fEN -fEN -fEN -sln -rfp -drP -sxK -sbJ -uiQ -sln -hkq -xgt -nqE -kXN -auk -pgK -dsE -roS -kXN -pyq -pnE -evm -foq -gJm -qzw -rbE -evm -fMK -vyr -rrx -qbZ -nDl -dPl -xiD -kjc -vXO -vXO -vXO -vXO -dMW -hkv -lda -lda -lda -lda -lda -lda -wiO -lda -rtY -rtT -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(65,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -rtT -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ddX -xMk -xjZ -kMT -esx -tlm -mmo -fJC -twH -pvb -dNg -pvb -mMJ -igE -sln -oLh -haV -gYr -hGh -jny -sln -fsu -uYY -bwv -kXN -kXN -kXN -kXN -kXN -kXN -nZd -eOb -ezP -gSf -ssJ -fbC -syQ -evm -dPl -dPl -dPl -dPl -dPl -dPl -xiD -kjc -vii -cJp -vdS -qDa -dMW -aVL -rdY -rjF -rjF -rjF -rjF -rjF -rjF -rjF -rjF -kkr -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(66,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -yba -xjZ -qjP -bsO -fVg -cuW -bHt -bHt -bHt -iHh -pvb -dnR -dcD -sln -sln -sln -sln -sln -sln -sln -pSH -xgt -bwv -kJI -mRP -pKy -izj -cUd -bwv -fFO -ezL -vDC -azk -uoL -xFn -dgr -evm -aLA -vWr -bJB -tdN -cyP -lxb -xiD -coB -mcw -aJA -wLu -xlb -dMW -aVL -hRQ -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(67,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -rtT -qfi -qfi -qfi -qfi -qfi -qfi -qfi -qfi -qfi -yba -xjZ -xzD -trx -oiz -mmo -pvb -pvb -pvb -cYe -pvb -pvb -pvb -pvb -pvb -fiO -ipj -ipj -ipj -jCo -xNk -hfu -cdH -gjd -lzz -lzz -lzz -mdZ -cdH -arq -shG -evm -xpJ -aJL -bNu -rCX -evm -dgx -bVw -wVe -tdN -vON -pOD -xiD -kjc -exs -dNa -bgD -bKy -dMW -aVL -vvw -vvw -vvw -vvw -vvw -vvw -vvw -vvw -vvw -kkr -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(68,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -dbV -jqf -jqf -jqf -jqf -jqf -jqf -jqf -jqf -bRk -xjZ -xov -xjZ -tcu -mmo -ejn -pvb -eUR -aBy -wiU -gsf -wiU -kMY -kMY -hEE -vVY -cnr -cnr -nMj -onC -ayj -cae -cIz -pvH -kEB -axC -nbJ -cae -smL -pZH -evm -evm -evm -vGk -evm -evm -cLv -szk -qEo -tdN -qHz -sta -xiD -kjc -jQd -fTw -dMW -dVT -dMW -fMt -lda -lda -lda -lda -lda -lda -lda -lda -rtY -rtT -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(69,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -rtT -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ddX -yba -xjZ -kZw -sKa -rJX -mmo -pfo -pvb -oTo -pAW -dLu -qpN -pvb -pvb -pvb -kQq -xzJ -ego -dWB -bwv -jDf -pZG -czb -dtE -mkQ -dQY -cqT -idQ -czb -sWj -dSU -vFq -bxb -psW -uKk -gUM -tdN -pwh -szk -fKT -tdN -oTt -sta -xiD -kjc -jQd -rWO -gbT -tUm -dMW -aVL -rjF -rjF -rjF -rjF -rjF -rjF -rjF -rjF -rjF -kkr -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(70,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -yba -xjZ -tch -xjZ -wWI -mmo -rro -eUR -dCc -pAW -pPq -cSd -sMQ -sMQ -viL -sMQ -sMQ -ftw -ftw -ftw -ftw -ftw -ftw -ftw -cRq -aYR -rVO -dtd -dtd -dtd -dtd -dtd -vpO -uyf -qNr -weM -tdN -tdN -tkg -tdN -tdN -ghJ -ghJ -xiD -kjc -jQd -jul -dMW -ftS -dMW -aVL -hRQ -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(71,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -rtT -qfi -qfi -qfi -qfi -qfi -qfi -qfi -qfi -qfi -yhd -xjZ -nsb -sKa -fyB -kem -lgS -tjb -pAW -pAW -pAW -sjQ -sMQ -fEA -xFG -vGX -gaF -ftw -jBb -jBb -jBb -jBb -jBb -ftw -cQh -lfF -okY -dtd -vIw -vIw -vIw -dtd -uAC -uyf -qNr -khO -rnL -cpS -ktr -tFC -vWn -wUS -khO -kcp -wOI -pgI -kzg -sAS -atR -dMW -xXf -vvw -vvw -vvw -vvw -vvw -vvw -vvw -vvw -vvw -kkr -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(72,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -dbV -jqf -jqf -jqf -jqf -jqf -jqf -jqf -jqf -eLC -xjZ -bwb -xjZ -azH -mmo -pvb -nmu -smt -fog -eQQ -tPh -sMQ -kOy -xFG -vGX -gaF -ftw -jBb -jBb -jBb -jBb -jBb -uBY -mqj -nuc -skW -osP -oBW -vIw -vIw -dtd -hEQ -uyf -qNr -khO -dSg -cJs -aKy -ufm -fEG -jXs -mpB -jOq -aec -jQd -cXk -dMW -qWn -dOB -fMt -lda -lda -lda -lda -lda -lda -lda -lda -rtY -rtT -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(73,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -rtT -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ddX -dGx -tON -nap -lPg -bRV -pAW -pAW -pAW -pAW -dcb -faG -sVA -nlJ -lrR -jTy -vGX -gaF -ftw -jBb -jBb -jBb -jBb -jBb -uBY -umT -xXd -skW -osP -mMx -pFm -vIw -dtd -jcE -tNA -qmB -xIV -wnh -hlC -xCG -oIv -gqL -oTI -khO -xiD -kjc -sqV -kBc -kBc -xZC -oFI -qSm -rjF -rjF -rjF -rjF -rjF -rjF -rjF -rjF -rjF -kkr -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(74,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -yba -ahe -lPg -lPg -bRV -eUR -lgS -iEv -lgS -dnY -vvV -aBc -sMQ -wOd -jSI -vGX -gaF -ftw -jBb -jBb -jBb -jBb -jBb -uBY -dDN -nuc -kMJ -osP -qiK -uvx -dYl -dtd -gPE -gPE -qNr -khO -upM -qVc -hYf -sfr -ivC -sbT -khO -jhd -onX -sqV -kBc -kBc -kBc -kBc -aVL -hRQ -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(75,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -rtT -qfi -qfi -qfi -qfi -qfi -qfi -qfi -qfi -qfi -yba -lPg -lPg -lPg -bRV -oTo -rPc -vgH -jEc -dME -jkr -mFG -sMQ -pXx -ebt -lqu -gaF -ftw -jBb -jBb -jBb -jBb -jBb -ftw -gQn -qzQ -wun -bqo -iOP -adZ -rSW -gqK -eKi -eKi -bYC -khO -xTD -xTD -nKd -cYV -csp -csp -khO -qNr -mOq -sqV -kBc -kBc -kBc -kBc -aVL -vvw -vvw -vvw -vvw -vvw -vvw -vvw -vvw -vvw -kkr -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(76,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -dbV -jqf -jqf -jqf -jqf -jqf -jqf -jqf -jqf -bRk -lPg -bRV -bRV -bRV -oxn -rZZ -nFj -nFj -nFj -nFj -nFj -sMQ -sMQ -fDL -sMQ -sMQ -ftw -ftw -ftw -ftw -ftw -ftw -ftw -cRq -aYR -iaT -dtd -rRf -fwu -wvp -dtd -gPE -gPE -mtR -khO -khO -khO -khO -khO -khO -khO -khO -qNr -mOq -sqV -iCS -bqJ -uHX -tot -deh -lda -lda -lda -lda -lda -lda -lda -lda -rtY -rtT -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(77,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -lUl -lUl -rtT -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ddX -yba -lPg -bRV -yfc -uuS -oTo -qpN -nFj -vvM -kfc -oKA -nFj -xWr -oZV -pYP -sxg -wsH -oED -abs -xgT -xmq -idG -sGC -kRJ -idG -afq -fGv -cRq -mgx -mgx -mgx -mgx -mgx -vFR -cTj -weM -cxt -cxt -cas -uGJ -btP -uHZ -fOt -vLt -mOq -sqV -rCy -fmD -bhA -tot -aVL -rjF -rjF -rjF -rjF -rjF -rjF -rjF -rjF -rjF -kkr -mXk -pFz -pFz -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(78,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -kkr -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -yba -lPg -bRV -mgK -vOy -oTo -okp -oeM -qNl -tIu -lOp -qFV -kiS -eZV -atW -lvI -cFo -mPu -xgk -gaY -ncx -idG -vcS -sYU -idG -rFG -wsz -wbk -mgx -sEf -mgx -sEf -mgx -gPE -mtR -gPE -gPE -gPE -lwD -gPE -cxy -uZu -lmg -xZv -dZu -sqV -atJ -whj -eqs -tot -aVL -hRQ -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -kkr -pFz -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(79,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -hzh -xNy -xNy -xNy -xNy -xNy -xNy -xNy -xNy -xNy -xNy -cOC -lPg -bRV -aAw -upN -oTo -aBi -nFj -jry -eTK -wpT -nFj -dIR -edt -uQp -viJ -bTH -eMF -eJS -yjR -mXa -idG -tJx -bUY -idG -uPX -fhV -xCQ -mgx -aUX -mgx -vyy -mgx -gPE -cGH -eKi -eKi -eKi -eKi -eKi -dqz -qbE -sqV -sqV -sqV -sqV -tEF -dmQ -ehB -kBc -qUA -oFI -oFI -oFI -oFI -oFI -oFI -oFI -oFI -oFI -bCk -gpd -kkr -pFz -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(80,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -kkr -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -xMk -lPg -bRV -ebh -moA -oTo -xsQ -rPv -rPv -iQS -rPv -rPv -fAj -mdn -bSd -udn -udn -amy -uaO -xBy -chu -idG -idG -srY -idG -tVx -fPN -keb -mgx -hUX -mgx -uBD -mgx -gPE -mtR -ptM -wtM -wtM -gDo -vpO -mtR -nyY -sqV -dtv -rUW -gnr -atJ -xIM -cBG -tot -aVL -hRQ -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -kkr -pFz -rtT -rtT -rtT -rtT -rtT -gCl -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(81,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -lUl -lUl -rtT -qfi -qfi -qfi -qfi -qfi -qfi -qfi -qfi -qfi -yba -lPg -bRV -yhW -kSW -oTo -qpN -rPv -qse -aSf -qVF -vuu -xhd -mdn -sXC -lzD -wpX -aiA -oOi -nMI -tVb -uHG -dwG -ntW -gDf -kBk -iKy -iJU -sju -oHN -qXB -nGI -riP -sTh -xfd -pSF -haP -egr -yei -gPE -dpR -mIO -uQE -hfB -woC -sVt -dAY -dUQ -sdd -tot -aVL -vvw -vvw -vvw -vvw -vvw -vvw -vvw -vvw -vvw -kkr -mXk -pFz -pFz -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(82,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -dbV -jqf -jqf -jqf -jqf -jqf -jqf -jqf -jqf -cOC -lPg -bRV -tUc -iIE -oTo -qpN -rPv -lru -dkS -jON -lfh -tFG -mdn -sXC -wpX -wpX -aiA -ulX -vcB -vcB -vcB -dPE -jbr -fjV -anu -fcd -lJF -mgx -leL -twZ -mBj -mgx -gPE -gPE -obB -ujE -xZc -jAY -gPE -mtR -nyY -sqV -kyC -xYF -qrU -wQa -frh -uHX -tot -deh -lda -lda -lda -lda -lda -lda -lda -lda -rtY -rtT -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(83,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -rtT -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ddX -yba -lPg -bRV -iRA -fxm -oTo -cSd -rPv -sSd -nkB -wVj -mbf -tFG -mdn -lBp -ukT -ukT -xXO -sDf -idc -chu -idG -idG -hkw -idG -nnR -fPN -ngG -mgx -mgx -mgx -mgx -mgx -weM -weM -weM -weM -weM -weM -gPE -mtR -nyY -weM -weM -weM -weM -weM -weM -wmy -lAE -aVL -rjF -rjF -rjF -rjF -rjF -rjF -rjF -rjF -rjF -kkr -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(84,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -yba -lPg -bRV -mgK -igD -oTo -qpN -rPv -kvz -whx -uMe -mbf -tFG -cdP -udr -ace -ace -nul -vDm -lzL -lnc -idG -akp -jvA -idG -fRO -fPN -xPb -hcF -tin -nZA -aWr -gxi -flG -kdd -lls -rly -gcF -kdd -gPE -jjJ -rrs -pVv -xZv -xZv -xZv -jSM -iGV -wmy -lAE -aVL -hRQ -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(85,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -rtT -qfi -qfi -qfi -qfi -qfi -qfi -qfi -qfi -qfi -yba -lPg -bRV -eff -moA -oTo -qpN -rPv -ifL -rAi -jBT -mbf -tFG -wYp -tdV -xBy -sCV -ify -det -jKU -mzN -idG -gIZ -iTa -idG -ljV -qKU -wVd -xKj -imn -stB -aWr -lKy -vya -kdd -iim -goA -goA -iNd -jIl -xbY -uHZ -kNv -tyX -uHZ -uHZ -sgG -mfs -wmy -lAE -aVL -vvw -vvw -vvw -vvw -vvw -vvw -vvw -vvw -vvw -kkr -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(86,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -dbV -jqf -jqf -jqf -jqf -jqf -jqf -jqf -jqf -cOC -lPg -bRV -azj -xOH -oTo -qpN -rPv -qOC -shL -sPR -far -upE -hhq -tdV -ycb -wWY -tYF -ydd -khm -lyk -idG -suH -kxC -idG -eYX -rJD -hRc -nGo -keb -fNr -bcu -lTj -mcN -kdd -ahx -tDJ -drh -kdd -weM -cKL -cKL -cKL -qhF -aQt -fei -nyY -mtR -wmy -lAE -deh -lda -lda -lda -lda -lda -lda -lda -lda -rtY -rtT -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(87,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -rtT -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ddX -yba -lPg -bRV -pAW -pAW -oxn -uKy -rPv -dRl -eNG -rPv -rPv -idG -idG -flQ -pTa -pTa -rRw -jhm -pTa -pTa -pTa -idG -idG -idG -fBu -hyC -urd -nJJ -gBN -kae -bLy -fRQ -bzP -owl -vwE -bPa -pVE -kdd -xcb -cKL -yfw -cKL -nWU -cSs -xJl -nyY -mtR -wmy -lAE -aVL -rjF -rjF -rjF -rjF -rjF -rjF -rjF -rjF -rjF -kkr -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(88,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -xMk -lPg -bRV -pTS -swN -icG -nyZ -kXm -kqE -kqE -kqE -ejc -wfc -rAX -vGl -pTa -mop -pEv -uLR -hnT -xsr -jYh -wms -wms -wms -wms -wms -maz -nJJ -gBN -vWZ -bLy -pev -oGS -uAg -smH -wPt -wtU -kdd -cKL -cKL -bDX -cKL -cKL -weM -weM -isi -cTj -wmy -lAE -aVL -hRQ -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(89,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -gCl -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -rtT -qfi -qfi -qfi -qfi -qfi -qfi -qfi -qfi -qfi -yba -lPg -bRV -pUY -pvb -pvb -txq -jEc -jEc -jEc -jEc -jEc -jEc -jEc -iMO -pTa -ybR -bqj -nAD -ozj -xWx -ptt -wms -vdv -kBr -kWI -wms -lGZ -kTb -biK -kdd -eAI -hGf -ijh -kdd -koe -uGM -xLz -kdd -lex -uAZ -oTm -xNI -cKL -iDB -tiZ -nyY -mtR -wmy -lAE -aVL -vvw -vvw -vvw -vvw -vvw -vvw -vvw -vvw -vvw -kkr -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(90,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -dbV -jqf -jqf -jqf -jqf -jqf -jqf -jqf -jqf -iid -lPg -bRV -nZk -lRq -uPV -qEm -uPV -uPV -uPV -lRq -pvb -pvb -pvb -vGl -pTa -oeo -jTn -mBA -apu -fzC -wuk -wms -czN -fNX -vRl -nvZ -dWJ -tRg -mku -kQE -iaM -wzH -hXp -msE -oAM -bLy -kWd -kdd -dKc -rmo -nKB -nIf -cKL -pfZ -jAY -nyY -mtR -wmy -lAE -aVf -lda -lda -lda -lda -lda -lda -lda -lda -rtY -rtT -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(91,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -rtT -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ddX -ngg -lPg -bRV -pUY -lRq -tTF -uRY -hyg -dgE -nGO -lRq -scj -weJ -pvb -vGl -pTa -tTh -hHm -pWb -gjQ -cqD -phs -wms -oJH -hMC -iRI -wms -fyc -sZm -pIK -kdd -lnj -rst -ouZ -kdd -pzC -bLy -bXC -kdd -nRV -rpx -gGy -wdp -cKL -fZi -jAY -nyY -mtR -wmy -lAE -uYw -rjF -rjF -rjF -rjF -rjF -rjF -rjF -rjF -rjF -kkr -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(92,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lUl -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -cbF -lPg -bRV -nNL -lRq -cyr -hyj -gvL -mDN -dBn -lRq -bZf -iLh -pvb -vGl -pTa -pTa -pTa -pTa -pTa -pTa -pTa -wms -wms -wms -wms -wms -kxZ -vTy -uYP -uYP -uYP -cKL -cKL -cKL -cKL -cKL -cKL -cKL -mAA -bDX -kCy -uDc -cKL -mgW -hCS -nyY -mtR -wmy -lAE -uYw -hRQ -rtT -kkr -rtT -kkr -rtT -kkr -rtT -kkr -rtT -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(93,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -mXk -lUl -lUl -mXk -mXk -mXk -mXk -mXk -mXk -mXk -mXk -unN -lPg -bRV -pUY -uLv -aoC -cbw -cFi -uRY -bFX -uPV -vjM -pWc -pvb -vGl -ogC -leD -phi -eaf -xZX -iaQ -tFu -fiW -qlr -wdh -pfn -oOn -kwm -qDr -rcO -xIC -hpX -cKL -fCJ -ugW -ixQ -kre -lLW -cKL -ksE -bDX -kCy -pDy -cKL -nxM -gPE -nyY -mtR -wmy -lAE -hwE -hwE -mXk -mXk -mXk -mXk -mXk -mXk -mXk -mXk -mXk -mXk -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(94,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -wRe -uYw -egk -egk -egk -egk -egk -egk -egk -egk -egk -bRV -pUY -lRq -aoC -iJL -uTd -pzp -spW -uPV -ovl -qJK -pvb -vGl -qtL -ekS -onN -czn -dAr -xDC -tFu -cQq -tEG -esg -nkW -qyD -uKo -klZ -exx -exx -fDo -cKL -tod -ixQ -tdI -ssq -vnt -cKL -pwt -bDX -kCy -aEa -cKL -vhj -gPE -nyY -mtR -wmy -lAE -lAE -lAE -lAE -lAE -lAE -lAE -lAE -lAE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -pRd -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(95,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -ckU -egk -egk -egk -egk -egk -opM -opM -opM -opM -opM -bRV -nZk -lRq -jDs -pUh -xGr -fVA -spW -uPV -jqI -gBF -pvb -vGl -qtL -uqJ -wui -kwf -inb -usQ -tFu -mNi -vfb -vCR -lOO -oOn -nwe -fnZ -kmn -tRG -oRu -cKL -hZQ -ixQ -bje -oOk -tdI -cKL -sob -bDX -kCy -eNO -cKL -cKL -weM -rNH -mzV -wmy -wmy -wmy -wmy -wmy -wmy -wmy -lAE -lAE -lAE -lAE -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(96,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -eoO -egk -opM -opM -opM -opM -opM -sRu -sHv -sHv -pmK -tuE -pxD -lRq -gtP -gze -skJ -cnp -izp -lRq -bjd -pfo -pvb -vGl -qtL -eMt -mpU -qdK -rEy -gyn -tFu -ils -nIk -uQX -iSY -tFu -cZE -srf -qAf -qAf -vWI -cKL -dLk -bDX -bDX -bDX -bDX -oue -nKB -bDX -kCy -iiX -acN -cKL -vwa -nyY -mtR -gPE -weM -aaG -ffu -swB -swB -wmy -lAE -lAE -lAE -lAE -tXe -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(97,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lKq -yiZ -bKF -gTA -bOd -xMC -ncR -ncR -rCN -bqn -bqn -fJr -oTo -pvb -lRq -lRq -lRq -lRq -qWF -lRq -lRq -pvb -pvb -pvb -vGl -ogC -fyg -ibi -cYp -rVM -uVb -tFu -dBv -vfb -foc -cio -oOn -xyh -ukq -rwo -rwo -nTE -sCT -sFS -mgE -tJv -tJv -tJv -haA -wyV -tJv -fTt -aIe -bda -mah -eKi -aVI -bwg -vyK -weM -upq -lQP -hwS -tpf -wmy -ojh -cXE -vud -lAE -tXe -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(98,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -aTh -eoO -egk -ljT -mvn -xvl -jRh -nPC -euj -euj -bqn -fJr -oTo -nMk -okX -unx -unx -xRW -gyP -unx -okX -jEc -jEc -jEc -mUq -qoh -gCG -wCA -dol -kib -kUj -tFu -vSp -goD -ekV -qMH -jbe -agK -glV -dmJ -dmJ -kLD -cKL -ocY -rIx -sAf -cLf -ixQ -svl -ixQ -kdh -xAq -cjk -vuf -cKL -gPE -ruI -fba -cSj -kCh -fds -tkw -jrQ -guN -mxA -kMb -kMb -yjK -bua -vDN -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(99,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -eoO -egk -ljT -fhw -xbp -iSn -nPC -azd -euj -bqn -fJr -oTo -ldz -sgL -xCz -xCz -xCz -iGA -xCz -sgL -xCz -xCz -xCz -njJ -ogC -cde -rLP -lWr -sVH -vgw -tFu -sqQ -oqC -hZN -giL -oOn -kwm -wMT -cur -cur -oUi -cKL -ipa -tfU -ejp -uRo -jkU -qyP -tRr -nbg -oCq -mWv -snH -cKL -emE -geF -qNr -mOq -weM -dYd -yeL -rsb -kmE -wmy -kJX -xPm -sZZ -lAE -tXe -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(100,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -egk -egk -egk -ljT -kTi -wJH -msz -nPC -euj -euj -bqn -fJr -kad -ohN -nvT -nvT -bJM -bJM -bJM -nvT -nvT -bJM -xHt -rpl -bJM -nvT -nvT -bJM -bJM -bJM -nvT -nvT -nvT -bJM -bJM -nvT -nvT -jTc -nvT -bJM -bJM -bJM -nvT -bJM -bJM -bJM -nvT -bJM -bJM -bJM -nvT -bJM -wlR -bJM -nvT -nvT -nvT -qNr -ijU -weM -suO -lAU -aqz -bVP -wmy -lAE -lAE -lAE -lAE -xsf -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(101,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -soS -egk -opM -opM -ljT -fJr -uLH -ncR -ncR -vvj -bqn -bqn -fJr -oTo -ohN -nvT -fHq -fHq -fHq -fHq -fda -fHq -fHq -fHq -fHq -fHq -fda -fHq -fHq -fHq -fHq -fHq -fda -fHq -fHq -fHq -fHq -obE -obE -vaw -fHq -fHq -fHq -fda -fHq -fHq -fHq -fda -fHq -fHq -fHq -fda -fHq -fHq -fHq -fHq -iwb -nvT -qNr -mOq -weM -weM -weM -weM -weM -weM -weM -weM -wmy -lAE -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(102,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -egk -opM -kJW -svv -qJJ -ajw -hLq -qwu -cRn -hHd -hLq -fJr -nyU -ohN -iIc -fHq -vif -sLM -sLM -sLM -sLM -sLM -sLM -hcW -fHq -vif -sLM -sLM -sLM -sLM -sLM -sLM -sLM -sLM -sLM -sLM -gbH -fHq -vif -sLM -sLM -sLM -sLM -sLM -sLM -sLM -sLM -sLM -sLM -sLM -sLM -sLM -sLM -hcW -fHq -fHq -jXF -qNr -tdu -pVv -inl -inl -inl -inl -inl -oMi -nxq -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(103,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -egk -opM -dxX -dgT -sRN -ejR -ucR -dCe -fmo -xpO -lsV -bOD -vXU -mdr -iIc -fHq -whO -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -drb -aOu -lCT -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -ceN -cqk -lvz -fHq -whO -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -lvz -fHq -fHq -nvT -vVb -wEu -kNv -iBN -iBN -iBN -iBN -vTZ -dfl -scB -kKR -eFO -tXe -gSd -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(104,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -egk -opM -sgz -jSi -hLq -yhR -ouA -fcx -qKd -rmf -njE -fJr -oTo -vdW -iIc -fHq -whO -mGJ -uoA -uoA -uoA -uoA -uoA -dII -wxL -kzO -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -ceN -ceN -lvz -fHq -whO -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -lvz -fHq -prX -nvT -cTL -xlH -rqW -sHG -pOJ -lgN -jmm -cmh -dfl -nxq -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(105,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -egk -opM -vUs -myc -xIP -opM -opM -opM -opM -opM -opM -opM -oxn -gFg -nvT -pSA -whO -mGJ -uoA -uoA -uoA -uoA -uoA -uoA -wxL -kzO -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -ceN -tNj -lvz -fHq -whO -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -lvz -fHq -fHq -bCq -fkf -teA -rqW -eCX -exj -fBl -tOD -cmh -dfl -iRu -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(106,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -egk -opM -dxX -xCB -hLq -gjE -uIk -plE -miS -jjH -fGH -gjE -ryk -mYW -iIc -fHq -whO -mGJ -uoA -uoA -uoA -exI -exI -hGK -wxL -rbF -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -ceN -tNj -lvz -fHq -whO -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -lvz -fHq -hFN -bCq -eHM -qae -tvK -tvK -tvK -tvK -tOD -cmh -dfl -pst -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(107,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -egk -opM -fGA -xVp -vcz -gjE -kRS -lCS -qzs -iOw -woD -okD -taC -mkh -iIc -fHq -whO -mGJ -uoA -uoA -dII -wxL -wxL -wxL -wxL -wxL -kzO -uoA -uoA -uoA -uoA -uoA -uoA -uoA -ceN -ceN -lvz -fHq -whO -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -lvz -fHq -fHq -nvT -eHM -vTB -tvK -gOx -diP -tvK -tvK -cmh -dfl -bDK -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(108,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -egk -opM -evv -uns -wke -ukV -dVL -waq -kxQ -xSc -nlv -gjE -ryk -mGd -iIc -fHq -whO -mGJ -uoA -uoA -dII -wUa -nvT -nvT -kQa -bJM -bJM -nvT -vzJ -uoA -uoA -uoA -uoA -uoA -ceN -tNj -lvz -fHq -whO -cqk -tyD -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -lvz -fHq -fHq -bCq -jxj -mtI -rGI -syd -jfF -uTw -tvK -cmh -dfl -scB -kKR -eFO -xsf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(109,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -soS -egk -opM -fJr -iyB -fJr -gjE -gjE -oly -tOk -dSX -gjE -gjE -nxG -mGd -nvT -fHq -whO -mGJ -mGJ -mGJ -dII -wxL -nvT -gms -wgD -aYW -nAg -iIc -uoA -uoA -uoA -uoA -uoA -uoA -ceN -tNj -lvz -fHq -whO -cqk -nvT -cqk -pKd -pKd -pKd -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -lvz -fHq -fHq -xZt -lrL -azU -wYF -tHZ -tlW -bfp -tvK -rwb -dfl -iRu -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(110,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -sbr -ttL -mfZ -yeX -rfa -vdh -vdh -vdh -eXV -vdh -vdh -vdh -mDS -mGd -jXF -fHq -whO -cqk -cqk -mGJ -dII -wxL -iIc -fPl -esy -wBV -rrR -iIc -uoA -uoA -uoA -uoA -uoA -uoA -ceN -tNj -lvz -fHq -whO -cqk -fHq -fHq -fHq -cqk -fHq -cxX -nvT -cqk -cqk -cqk -cqk -cqk -cqk -lvz -fHq -prX -xvP -mFR -rsG -tvK -cLl -cJa -haJ -tvK -cmh -dfl -iRu -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(111,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -sbr -ttL -uJV -aKq -tPS -vdh -vdh -vXP -siw -jdg -vdh -vdh -ryk -dwA -nvT -fHq -whO -mGJ -mGJ -mGJ -dII -wxL -nvT -kno -nrW -cMY -oii -iIc -uoA -uoA -uoA -uoA -uoA -uoA -ceN -tNj -lvz -fHq -whO -cqk -nvT -cqk -sLM -sLM -sLM -cqk -cqk -cqk -cqk -cqk -cqk -cqk -cqk -lvz -fHq -fHq -ppE -ppE -ppE -tvK -vxq -jdY -tvK -tvK -cmh -dfl -uib -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(112,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -sbr -ttL -kkg -xgj -uzU -vdh -axm -xdi -irG -nyQ -jdg -pLs -ryk -mGd -iIc -fHq -whO -mGJ -uoA -uoA -dII -wUa -nvT -nvT -kQa -bJM -bJM -nvT -vzJ -uoA -uoA -uoA -uoA -uoA -ceN -tNj -lvz -fHq -whO -cqk -tdq -cqk -cqk -ceN -ceN -daw -daw -daw -daw -daw -daw -daw -daw -lFN -fHq -fHq -ppE -taq -eXy -kiw -gLI -daK -ppE -cxr -cmh -dfl -uxg -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(113,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -sbr -ttL -xcq -rfa -abX -vdh -oPi -uli -vWK -lYy -lNg -aOn -bia -sNS -iIc -fHq -whO -mGJ -uoA -uoA -dII -wxL -wxL -wxL -wxL -wxL -kzO -uoA -uoA -uoA -uoA -uoA -uoA -uoA -ceN -ceN -lvz -fHq -whO -cqk -cqk -cqk -cqk -ceN -ceN -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -lFN -fHq -fHq -ppE -tyI -pOB -brq -jWo -fBT -ppE -cxr -xKW -dfl -fvM -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(114,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -sbr -ttL -mfZ -rfa -rfa -vdh -eVe -dof -irG -tKQ -lmE -uCK -ryk -mGd -iIc -fHq -whO -mGJ -uoA -uoA -uoA -opD -opD -opD -opD -opD -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -ceN -tNj -lvz -fHq -whO -cqk -cqk -cqk -cqk -tNj -ceN -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -lFN -fHq -fHq -ppE -duQ -xoo -eSs -dcU -aJd -ppE -cxr -cmh -dfl -iRu -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(115,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -sbr -ttL -mfZ -rfa -rfa -vdh -vdh -tRV -kga -owj -vdh -vdh -jmz -ozA -nvT -pSA -whO -mGJ -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -ceN -tNj -lvz -fHq -whO -cqk -cqk -cqk -cqk -tNj -ceN -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -lFN -fHq -fHq -ppE -ppE -ppE -ppE -izi -toC -ppE -aSu -cmh -dfl -uxg -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(116,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -sbr -ttL -ttL -rfa -rfa -vdh -vdh -vdh -vdh -vdh -vdh -vdh -jqG -mOa -iIc -fHq -whO -mGJ -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -ceN -ceN -lvz -fHq -whO -cqk -cqk -cqk -cqk -tNj -ceN -uoA -uoA -uoA -uoA -uoA -uoA -uoA -uoA -lFN -fHq -prX -ppE -lzi -tUC -mbh -kYo -kHF -ppE -xOR -xsl -jhh -uxg -kKR -eFO -xsf -gSd -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(117,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -soS -sbr -sbr -ttL -rfa -rfa -vmR -hLe -sPX -jnJ -qXQ -qXQ -vHm -xcX -pDj -iIc -fHq -whO -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -mGJ -ceN -cqk -lvz -fHq -whO -cqk -cqk -cqk -cqk -ceN -ceN -daw -daw -daw -daw -daw -daw -daw -daw -lFN -fHq -fHq -ppE -uZh -doj -xFK -iwk -hgz -ppE -qRN -bWf -gxM -uib -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(118,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -idA -tXe -sbr -sbr -ttL -abX -rfa -kEC -xLV -wjg -vYV -qME -qME -mbu -cag -anf -iIc -fHq -wSp -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -tlF -fHq -jVp -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -pKd -eIY -fHq -iwb -ppE -ppE -ppE -ppE -bDU -kHF -ppE -qRN -sgw -aoH -kKR -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(119,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -sbr -sbr -ttL -ttL -ttL -ttL -lLH -qpn -gsg -fzA -yen -yen -kIR -lAv -nvT -fHq -fHq -msv -fHq -fHq -fHq -fHq -fHq -fHq -fHq -msv -fHq -fHq -fHq -fHq -fHq -fHq -msv -fHq -fHq -fHq -obE -obE -obE -fHq -fHq -fHq -fHq -msv -fHq -fHq -fHq -fHq -msv -fHq -fHq -fHq -msv -fHq -fHq -fHq -ppE -lzi -tUC -vlb -kYo -kHF -ppE -qRN -sgw -kKR -kKR -eFO -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(120,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -sbr -sbr -sbr -sbr -ttL -wYN -fRz -hjx -qsg -cTV -blM -pVF -bby -aZC -nvT -nvT -bJM -nvT -ogT -nvT -bJM -bJM -bJM -bJM -nvT -nvT -nvT -bJM -bJM -bJM -bJM -nvT -nvT -nvT -bJM -bJM -nvT -ogT -nvT -bJM -bJM -bJM -nvT -nvT -nvT -bJM -bJM -nvT -nvT -nvT -bJM -bJM -nvT -fHq -fHq -fHq -ppE -uZh -doj -rSp -iwk -hgz -ppE -ulM -gki -kKR -eFO -eFO -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(121,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -sbr -sbr -sbr -ttL -mNF -bBr -xOY -ptT -qEQ -bLZ -wjg -kXu -gZK -urz -vGI -vGI -vGI -pIA -obl -vGI -vGI -vGI -vGI -vGI -urz -vGI -vGI -vGI -vGI -vGI -nma -abM -uOV -uOV -oCW -uOV -uOV -cge -dfY -eon -atp -uOV -naJ -uOV -ovB -uOV -atp -cge -uOV -isx -qOy -nvT -bJM -ogT -bJM -ppE -ppE -ppE -ppE -rpv -kHF -ppE -qRN -sgw -kKR -kKR -eFO -mzp -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(122,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -tXe -sbr -sbr -sbr -ttL -dyd -sRw -vrX -fqU -pKv -vJD -iVR -jAJ -gWi -wwf -jYu -jYu -jYu -mfP -aTn -aTn -aTn -aTn -aTn -aTn -noY -aTn -sNN -aTn -buZ -aTn -aTn -noY -mHe -mEt -fIN -mHe -mHe -oyp -mHe -kGH -mHe -mEt -oyp -mHe -xDT -vsL -hGN -uco -egb -khA -gBv -aoH -aoH -aoH -vem -ppE -szW -tUC -uzI -kYo -kHF -ppE -qRN -sgw -iLJ -kKR -eFO -tXe -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(123,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -fKI -alZ -alZ -alZ -alZ -fTY -alZ -oYB -oYB -oYB -alZ -oYB -oYB -alZ -oYB -oYB -alZ -rPq -alZ -alZ -alZ -alZ -alZ -alZ -vPj -vPj -iVs -vPj -cfi -gtz -cfi -wFy -tEX -tEX -dii -tEX -tEX -wFy -wyH -pKK -wyH -wyH -jLt -jLt -dWg -jLt -jLt -jLt -tgq -khA -vTs -aoH -aoH -aoH -vem -ppE -uZh -doj -lHj -qHq -hgz -ppE -qRN -sgw -uib -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(124,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -fKI -alZ -woE -xvO -aiB -vKD -ekv -tsG -kNL -dMQ -bml -xtS -fAE -foM -ijE -pRK -vfj -skP -fzt -byL -gHg -cro -wZo -fBj -dyA -mfK -cGs -dHu -cfi -iNp -pCV -wFy -bqN -kMn -fej -vBB -bZT -wFy -jYc -iYE -pgb -vTJ -jLt -sPo -sEl -rKD -ahy -jLt -ydg -hVo -lBy -lcF -ppE -ppE -ppE -ppE -ppE -ppE -ppE -ebl -urR -ppE -qRN -sgw -fvM -kKR -eFO -xsf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(125,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -soS -cJc -alZ -pIl -mCa -rri -gEx -rIZ -rIZ -gab -aqW -kNL -ujy -rsS -pih -pih -pih -keU -dND -vBi -exG -aEf -xCA -lDl -pnV -gGd -cEy -rSj -eVF -cfi -dIb -wWt -bjI -piM -jFo -oRE -hSf -xsS -wFy -wBP -pwz -uHi -jDj -jLt -siF -vSn -mzk -pKa -jLt -nvy -sgw -sDG -iMg -ppE -aDM -iKb -wgm -iKb -rNG -eoi -oSw -iBT -ppE -qah -khA -iRu -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(126,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -fKI -alZ -imr -pPd -dUd -jEo -rIZ -rIZ -pIb -lJq -pNe -rIZ -wUn -wUn -wUn -wUn -gab -oYi -iIr -wNq -kBe -sNt -sNt -sNt -avo -jyW -fXB -cHg -cfi -sEj -xoB -wFy -cKy -vsJ -vWx -vsJ -wKK -wFy -kid -kid -kid -kid -jLt -bIy -iDo -vUh -mxo -jLt -rXK -pbp -xtU -fVk -ppE -wgm -wgm -pJm -dVG -sIh -bJJ -oys -hLM -ppE -vSJ -khA -iRu -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(127,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -fKI -alZ -iJh -jEE -rkW -tLz -mxP -ftD -iMS -fUh -fUh -cmb -fUh -iMS -fUh -fUh -lSZ -pYe -tlw -nkv -wIW -cro -auH -oja -vPj -qBH -amt -pYd -dml -tAp -dby -rkZ -lZV -cNp -jvK -cNp -vJA -wFy -cpQ -cpQ -cpQ -cpQ -jLt -hXZ -sjM -sjM -hXZ -jLt -fYS -sgw -aoH -tao -ppE -wgm -rit -wgm -ykI -sIh -lad -oys -ppE -ppE -vSJ -khA -iRu -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(128,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -fKI -alZ -dgO -jun -rIZ -rri -srV -qcH -pIb -iOu -pNe -rIZ -yhv -kov -kov -gUp -jFL -ybz -xeX -qjW -kFC -hXj -mqP -oja -vPj -foS -fqy -eec -cfi -cFT -cfi -wFy -aBP -aBP -cNg -aBP -aBP -wFy -cpQ -cpQ -cpQ -cpQ -jLt -bkj -tFf -tqv -bkj -jLt -vBn -sUb -oyR -oea -ppE -iXz -vwi -cDB -pJm -ppE -ppE -ppE -ppE -wXK -qRN -sgw -uib -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(129,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -fKI -alZ -wlm -mJM -rIZ -rri -tjj -qcH -rRl -rIZ -oAB -wVD -fUh -mxP -xig -scY -jFL -jFG -aiQ -hzW -dQU -oro -upI -oja -vPj -kVJ -whd -dug -cfi -bpR -atw -bzH -eTg -bwe -wji -gfS -gfS -cfi -cpQ -cpQ -cpQ -cpQ -jLt -bkj -bkj -bkj -bkj -jLt -rlt -bUb -rSn -rIw -ppE -ppE -ppE -ppE -ppE -ppE -bHJ -bHJ -wXK -dDA -sTs -sgw -bDK -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(130,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -fKI -alZ -yfx -cTs -rIZ -rri -eEw -tNn -rIZ -rIZ -rIZ -tCc -iMS -mPp -xFo -scY -jFL -jFG -aiQ -hzW -dob -alZ -alZ -alZ -vPj -vPj -cQP -tUF -cfi -usS -kpt -lmM -ucy -pXj -whv -gfS -rfZ -cfi -cfi -cfi -cfi -cfi -jLt -bkj -bkj -bkj -bkj -jLt -cuD -sgw -aoH -eSq -mlH -laV -rqW -aoH -ctB -aoH -aoH -aoH -aoH -qRN -kYh -vyF -pst -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(131,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -fKI -alZ -alZ -alZ -upr -kvL -ffd -mum -vAJ -qkq -oxi -rjN -oAB -sPn -aqW -pKV -lxK -jFG -llq -nkv -aaq -cro -aTa -rSA -alZ -vxa -tnX -hhG -gtt -yih -ofy -hGt -pGj -dVn -vAM -bUO -pmo -spg -kGC -dVR -dVR -cfi -jLt -bkj -bkj -bkj -bkj -jLt -rWi -oqv -uOV -uOV -atp -atp -ldn -slH -iSK -atp -uOV -uOV -uOV -mNr -vyF -kKR -kKR -kKR -eFO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(132,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -soS -fKI -fKI -fKI -alZ -alZ -alZ -aCo -nLq -kaU -eQk -alZ -hUQ -oSc -orf -tDW -buM -tbv -ohW -aiQ -kHZ -nUI -xCA -pzW -rSA -alZ -uGN -gFl -tTU -xEI -nEy -kFQ -xEI -nEy -kFQ -nlA -vBe -pmo -hIn -kGC -dVR -dVR -cfi -jLt -bkj -bkj -bkj -bkj -jLt -kBD -twl -mHe -mHe -mHe -mHe -oyp -xsl -rDH -uDT -mHe -mHe -mHe -sTs -kKR -kKR -eFO -eFO -eFO -xsf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -viv -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(133,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -tXe -fKI -fKI -fKI -alZ -oLN -dKd -kNU -gnE -cDy -fEj -oAc -oAc -rIZ -sZz -fIW -gmK -jeV -yaz -hIu -oro -sze -rSA -alZ -mfr -gFl -qsl -bRm -cUR -kiZ -bRm -cUR -kiZ -voh -mPA -vxa -abB -abB -abB -abB -dnU -jLt -bkj -bkj -bkj -bkj -wcb -hOv -jwN -hOv -hOv -hOv -hOv -nga -cAC -nar -nga -rqW -gyY -rqW -kKR -kKR -eFO -eFO -tXe -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(134,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -iQn -tXe -tXe -fKI -fKI -alZ -oLN -hhD -kNU -wuO -avh -igH -neK -neK -qji -gDL -hTN -xAw -aiQ -lwU -qEp -alZ -alZ -alZ -alZ -iVJ -gFl -uTY -coE -rWV -coE -coE -emp -nEy -voh -mPA -nhq -teQ -teQ -teQ -teQ -sQY -jLt -jLt -jLt -jLt -jLt -wcb -jAr -jiI -xUC -fLb -rNX -neC -nga -bMC -hDN -nga -vgm -thl -dPq -eFO -eFO -eFO -tXe -tXe -gSd -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(135,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -iQn -tXe -fKI -fKI -alZ -alZ -alZ -fPE -dKd -cDy -fEj -oAc -oAc -wnK -qSD -wph -wph -mik -lwU -izs -cfi -aeU -cOX -cfi -cBm -fEY -wZg -meg -eYU -gGO -meg -eYU -gGO -nYO -nBH -bBv -bBv -bBv -eRE -fXm -buV -eww -sdt -sdt -ihx -cfi -wcb -vFt -lOT -xMp -ayw -xMp -iVQ -nga -qBV -pXe -nga -oXL -xyO -eFO -eFO -eFO -eFO -tXe -gYE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(136,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -fKI -fKI -fKI -alZ -lAS -dKd -cDy -fEj -oAc -jCd -wVJ -xnr -tDW -ivb -xPH -gQA -auZ -hBq -psH -gAi -gzO -ofQ -hjL -wSm -dRP -xuU -nrm -nZb -xuU -nrm -nrN -bxD -tXm -vKU -tMr -lXp -xEI -jfi -hkZ -nEy -ffv -gCM -cfi -wcb -rUE -dUF -nZL -jlK -sbV -aGc -nga -tuR -lAZ -nga -rBy -fLW -eFO -eFO -tXe -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(137,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -iQn -tXe -tXe -tXe -fKI -alZ -jWe -dKd -cDy -kIm -egz -api -vyh -nVr -prr -xpq -aIp -jBX -eep -cfi -thZ -sBO -cfi -cCx -djF -dAE -eee -gRn -gRn -elN -gRn -dJZ -vNq -uOS -kMP -fmP -fDt -lXp -xEI -kYg -xEI -nEy -wQh -gCM -cfi -wcb -wcb -wcb -nSz -aNM -jCA -aNM -qak -nga -nga -nga -itA -thl -eFO -tXe -tXe -gSd -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(138,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -iQn -soS -fKI -alZ -alZ -uJl -cDy -pSd -ndy -wJj -win -hal -xck -jyU -oJp -alZ -hvp -cfi -cfi -cfi -cfi -vDT -wZg -vxa -abB -abB -abB -abB -tnX -iQe -ndq -wgH -gfo -jll -pjt -kZC -kiZ -jwh -gIz -pjg -keQ -tYE -ihx -cfi -cfi -wcb -nSz -aVn -vFr -szN -xWT -hEe -wsy -gyY -ihc -eFO -eFO -xsf -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(139,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -fKI -fKI -alZ -alZ -alZ -cdw -arM -bEf -alZ -cdw -cdw -arM -bEf -wma -ulg -wyZ -gaG -qYN -paZ -vYY -wZg -nhq -teQ -teQ -teQ -teQ -fEY -oEl -qeK -rhZ -are -nEy -rdK -bUO -bbX -esd -xEI -tlM -xoy -sJQ -eCP -fwg -mGP -iHn -nSz -ugK -vKI -ugK -xWT -iIp -aHg -rqW -eFO -eFO -eFO -tXe -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(140,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -eLH -fKI -fKI -fKI -fKI -kZn -oNp -nmS -fKI -nmj -pCP -rKp -sDI -kqY -dBd -tBx -dus -ruP -wRD -pWo -gqV -rYz -uea -vGU -iXA -aRE -uOw -mNG -dUW -qNi -wBR -oou -rXu -jEh -xBh -oHt -xQL -cKb -seZ -xpP -nOC -nXa -dBd -epi -nSz -ikN -lpk -lgW -xWT -dPq -kQd -eFO -eFO -eFO -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(141,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -tXe -fKI -fKI -fKI -sCl -sCl -sCl -fKI -nmj -nmj -nmj -nmj -oeU -aAO -kaP -qjZ -iaX -tGS -iOj -tbY -gzu -cwp -rbg -rfI -osm -sKx -jYs -oKq -fNJ -sKx -cOZ -rfI -nwB -jEI -rnx -gzu -iOj -tGS -niN -aAO -kaP -uYl -kIq -nSz -ghv -tCD -ghv -xWT -deB -eFO -eFO -eFO -tXe -tXe -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(142,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -iQn -bAD -tXe -tXe -fKI -fKI -fKI -fKI -fKI -fKI -fKI -fKI -fKI -fKI -oeU -gLg -gLg -gLg -ubp -ubp -elL -jAd -jAd -aIY -tId -lek -rhb -epf -hXP -tac -xIY -epf -lXp -lek -lQF -aIY -jAd -jAd -kut -ubp -ubp -gLg -gLg -gLg -kIq -eyb -uYw -uYw -uYw -eFO -eFO -eFO -eFO -tXe -tXe -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(143,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -iQn -tXe -tXe -fKI -fKI -fKI -fKI -fKI -fKI -fKI -fKI -fKI -oeU -uYw -kkr -kkr -ubp -ubp -ubp -jAd -jAd -aIY -rbg -bRh -rhb -epf -raP -qnx -uCW -epf -lXp -bRh -nwB -aIY -jAd -jAd -ubp -ubp -ubp -kkr -kkr -uYw -qQR -gYU -fuc -fuc -fuc -xVJ -eFO -eFO -tXe -tXe -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(144,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -iQn -tXe -qaM -tXe -tXe -tXe -tXe -tXe -tXe -tXe -qaM -qQR -uYw -rtT -rtT -ubp -ubp -ubp -jAd -jAd -aIY -vxc -fGL -vbR -epf -raP -jjj -gec -epf -quP -fGL -pcG -aIY -jAd -jAd -ubp -ubp -ubp -rtT -rtT -rtT -tXe -tXe -rtT -rtT -rtT -tXe -qaM -tXe -tXe -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(145,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lPf -rZL -rZL -rZL -rZL -rZL -rZL -rZL -rZL -rZL -rZL -rtT -rtT -rtT -tXe -ubp -ubp -jAd -jAd -jpF -nqq -nqq -nqq -eAT -eAT -dBV -eAT -eAT -dgK -dgK -dgK -bHs -jAd -jAd -ubp -ubp -toF -rtT -rtT -rtT -rZL -rZL -rtT -rtT -rtT -rZL -rZL -rZL -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(146,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -rHO -ubp -ubp -jAd -jAd -ubp -uYw -uYw -uYw -uYw -jdW -mcP -okf -uYw -uYw -uYw -uYw -ubp -jAd -jAd -ubp -xNe -toF -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(147,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -ubp -ubp -jAd -jAd -ubp -uYw -cyU -uYw -uYw -jdW -mcP -okf -uYw -uYw -uYw -cyU -ubp -jAd -jAd -ubp -ubp -toF -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -qEj -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(148,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -idA -soS -ubp -ubp -jAd -jAd -ubp -uYw -uYw -uYw -uYw -jdW -mcP -okf -uYw -uYw -uYw -uYw -ubp -jAd -jAd -ubp -ubp -hyk -gSd -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(149,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -ubp -ubp -jAd -jAd -ubp -uYw -uYw -uYw -uYw -jdW -mcP -okf -uYw -uYw -uYw -uYw -ubp -jAd -jAd -ubp -ubp -toF -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(150,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -ubp -ubp -jAd -jAd -ubp -ubp -ubp -ubp -ubp -uaW -mcP -kjp -ubp -ubp -ubp -ubp -ubp -jAd -jAd -ubp -ubp -toF -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(151,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -toF -ubp -hwX -hwX -ubp -ubp -ubp -ubp -ubp -ubp -mcP -ubp -ubp -ubp -ubp -ubp -ubp -hwX -hwX -ubp -toF -toF -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(152,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -iQn -toF -kDC -toF -toF -kDC -toF -tLm -toF -jZI -yiX -mcP -yiX -jZI -toF -tLm -toF -kDC -toF -toF -kDC -toF -mFw -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(153,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -ftk -ftk -ftk -ftk -ftk -ftk -ftk -ftk -ftk -vjt -mcP -vjt -ftk -ftk -ftk -ftk -ftk -ftk -ftk -ftk -ftk -pTo -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(154,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -vSZ -mcP -pDa -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(155,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -vSZ -mcP -pDa -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(156,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -uTf -qQG -tkT -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(157,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(158,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -dOV -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(159,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(160,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(161,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -aYe -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(162,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(163,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(164,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -pTo -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(165,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(166,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(167,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(168,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(169,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(170,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(171,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(172,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(173,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(174,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(175,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(176,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(177,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(178,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -nop -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(179,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(180,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(181,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(182,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(183,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(184,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(185,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(186,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(187,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(188,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(189,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(190,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(191,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(192,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(193,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(194,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(195,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(196,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(197,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(198,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(199,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(200,1,2) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} - -(1,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(2,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(3,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(4,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(5,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(6,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(7,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(8,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(9,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(10,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(11,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(12,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(13,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(14,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(15,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(16,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -kkr -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(17,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -kkr -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -aCF -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(18,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -kkr -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(19,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -kkr -rtT -kkr -rtT -kkr -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(20,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -stw -stw -rtT -rtT -kkr -stw -mnx -myS -mnx -stw -kkr -rtT -rtT -stw -stw -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(21,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -stw -stw -stw -bTs -eui -bTs -stw -jGD -jGD -jGD -stw -bTs -eui -bTs -stw -stw -stw -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(22,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rpE -rtT -stw -stw -stw -jGD -jGD -jGD -stw -duA -sve -bca -stw -jGD -jGD -jGD -stw -stw -stw -rtT -rpE -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(23,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -ibG -uLo -gFU -stw -stw -sGe -eJf -jKs -qGO -sXu -iKj -iKj -iKj -sXu -vCC -qGO -qGO -hpS -stw -stw -xng -uLo -lZa -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(24,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -iij -fUR -wff -ktE -gst -rWX -cmm -cvM -dpu -siB -rGn -cmm -cmm -iQF -bLU -dGG -wXr -hAu -sZi -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(25,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -fdX -jCZ -iMi -kNR -gLu -cxT -dGG -wEw -fga -aKX -dSz -rMB -ydX -uSJ -wqy -iKj -qvJ -kNR -ucV -kPK -fdX -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(26,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -eLH -xxf -dJe -wff -pHQ -iKj -boo -tpL -iBZ -vUO -sTq -aYw -pLr -jtu -rBS -sUQ -tcJ -wXr -lNv -ciz -eLH -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(27,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -rzP -stw -stw -xGT -oaX -yfd -pQv -uBX -aJG -pqM -uRf -mnH -cwA -wue -yic -tJj -stw -stw -eCO -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(28,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -ibG -bYQ -stw -stw -dCa -uVa -vdx -tfi -cXp -uDL -stC -jKh -ddl -wIr -txc -iKj -qsX -stw -stw -kjX -lZa -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(29,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -dFT -dJe -wff -dZF -tvN -nlQ -mKh -htU -pWe -ccI -mnk -gVz -ahQ -iKj -iKj -dGG -wff -lNv -vOQ -cQb -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(30,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -okh -xtW -wff -sUW -lLf -saJ -gqT -rsF -cMe -oXJ -lFn -cYb -txc -iKj -wiF -pma -wff -tOO -bzN -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(31,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -fdX -fdX -rLI -wff -wqy -kSu -mib -kSu -omE -sGg -puE -tnY -bbZ -iKj -iKj -qaj -vZW -wff -wdk -fdX -fdX -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -kzF -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(32,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -stw -stw -vZL -lnO -xLM -vfK -fQy -sGg -pAr -aYv -foZ -cmm -cmm -lnO -sSF -stw -stw -pjb -eJO -gSd -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(33,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -stw -stw -uPp -uPp -uPp -uPp -uPp -sMd -uPp -mHL -uPp -uPp -uPp -uPp -uPp -stw -stw -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(34,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -fMJ -fMJ -ofk -mXx -aTv -oCK -ofk -cqt -coY -jIR -flr -gBT -dCG -eUz -gXD -mhi -mhi -tXe -tXe -gSd -rtT -rtT -rtT -rpE -rpE -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(35,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -tXe -fMJ -fMJ -fMJ -ofk -xwp -iFP -clH -fru -jSZ -gyH -csZ -flr -eMP -uWj -kLM -awl -mhi -mhi -mhi -tXe -atx -rtT -rtT -idA -tXe -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(36,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rlU -tXe -tXe -fMJ -fMJ -fMJ -ofk -xyV -ksr -lNU -wtH -ubm -aXS -skp -flr -wqk -uWj -kLM -dZK -jsY -mhi -mhi -tXe -tXe -gSd -rtT -idA -tXe -bAD -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(37,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -poX -rpE -rlU -tXe -tXe -fMJ -fMJ -fMJ -mUL -mUL -mUL -mUL -mUL -mUL -nUA -rVT -kEJ -flr -eMP -uWj -kLM -awl -jsY -mhi -mhi -mhi -tXe -atx -rpE -rlU -tXe -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(38,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -bAD -lTE -qMX -bAw -tXe -eLH -fMJ -fMJ -cOm -mUL -uzD -csw -cGF -vZx -nrk -xCd -twq -hbi -flr -wqk -uWj -kLM -dZK -jsY -qLI -mhi -mhi -tXe -tXe -tXe -bAw -tXe -tXe -wvg -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(39,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -fMJ -etT -eSe -eSe -eSe -eSe -eSe -dGY -gQF -cVG -qZm -afn -ltU -mUL -lxl -tzK -lxl -jsY -buf -hKd -tjZ -biJ -jsY -jsY -mhi -mhi -mft -uxi -uxi -mft -mft -eLH -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(40,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -fMJ -fMJ -fMJ -fMJ -fMJ -lJi -jUG -mUL -xBF -nJe -dfG -oTT -xIs -ldV -qZq -oIB -flr -hdr -pom -aSY -qZL -jsY -fSq -vsh -mhi -mft -neo -neo -mft -mft -mft -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(41,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -fMJ -pbu -kYW -cOm -muB -aJb -hGd -jUG -mUL -mUL -mUL -mUL -mUL -mUL -qds -fbB -shF -jTE -wdI -xgP -sTr -hGy -oCT -oMa -aOH -mHg -cpu -pWh -lNI -cpu -cpu -mft -mft -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(42,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -fMJ -ctI -pbu -dDe -uSt -gKy -aJb -hGd -jUG -bxo -ptq -fZD -lOi -bxo -uxx -uxd -mhc -nfV -pqF -sVK -aus -aSY -uJG -jsY -mih -sQu -oMa -uJe -lrH -oex -iUA -cpu -mft -mft -mft -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(43,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -fMJ -bCl -puK -lra -gtG -esn -uSt -aJb -idK -jUG -bxo -jVP -lME -qGV -bxo -eBD -kbq -dNk -cgl -jsY -uwx -aus -lWI -ygU -jsY -oZL -mxc -oqx -cpu -efB -fRG -hGC -cpu -cpu -mft -mft -mft -mft -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(44,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -fMJ -sOO -uSt -uSt -esn -esn -esn -uSt -wcs -uSt -jUG -bxo -wKs -iYR -jme -bxo -xcU -rUK -onI -tri -jsY -nDP -nuQ -qbg -wZz -jsY -oZL -sgZ -oqx -cpu -cpu -osL -cpu -cpu -cpu -cpu -mft -mft -mft -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(45,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -fMJ -sOO -dEI -uSt -wot -wot -wot -wot -wot -wot -cwv -jUG -bxo -bxo -vEU -bxo -bxo -yia -jOL -tnS -nRw -ngK -ngK -ngK -ngK -ngK -ngK -ngK -ngK -ngK -cpu -ntv -rZU -bST -rFS -iqg -cpu -cpu -mft -mft -mft -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(46,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -fMJ -gSe -uSt -uSt -bJP -wot -xgS -qCA -eAU -lFe -wot -lJi -jUG -bxo -tuF -rRa -kHY -bxo -dps -bci -icR -sCm -pWi -jkR -jkR -jkR -jkR -jkR -jkR -sDs -omy -cpu -epk -jnD -dZA -vEe -vEe -qBD -cpu -mft -mft -mft -mft -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(47,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -fMJ -tcB -uSt -esn -wnO -wot -wot -gop -okK -qvc -qjC -wot -lJi -jIs -bNH -phR -bFd -qqa -bxo -grL -jOL -vpm -qsn -ngK -gZb -gZb -jCp -uXj -pxP -jkR -oHY -ngK -cpu -skA -oTG -vEe -rWt -vEe -vdZ -cpu -mft -mft -mft -mft -rHM -rpE -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(48,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -uSt -esn -uSt -hip -cGi -wot -jyh -tbO -hYl -uPB -uAd -wot -lJi -uSt -bxo -vzz -oHC -nhE -bxo -ddv -hlu -kyx -nvx -rem -rem -rem -rem -rem -wdE -jkR -oHY -ngK -cpu -nFK -mDY -vEe -vEe -vEe -mnO -cpu -kCT -kCT -njb -mft -rHM -eLH -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(49,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rNq -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -fMJ -khG -uSt -uSt -qCr -pbu -ovV -jyh -hDS -nOs -lZF -hmg -wot -aJb -wcs -bxo -bxo -bxo -bxo -bxo -ddv -vuL -oYa -vuL -rem -mBg -vcm -utW -rem -wdE -jkR -oHY -ngK -cpu -gSH -oWy -oNF -trz -trz -trz -euo -qap -fXQ -qap -mft -rHM -rHM -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(50,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -fuL -vxP -uSt -uSt -aJb -aJb -wot -wot -tiD -mUm -jyh -jGZ -wot -pJZ -uSt -gml -ddv -fdR -vBC -qxD -xFL -qlD -kyx -oIB -tOU -eHb -fOB -coD -rem -ngK -ivl -ngK -ngK -cpu -cpu -cpu -cpu -cpu -cpu -cpu -cpu -cXm -cXm -nJn -mft -rHM -rHM -xsf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(51,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -fMJ -aJb -aJb -wcs -aJb -xMO -dhI -aJb -aJb -aJb -mnN -aJb -aJb -qzh -esn -uSt -uXY -knb -rDR -enM -cFx -oXp -pHK -jtf -kha -rlQ -toT -vAk -xep -svX -luT -oob -ngK -ngK -ngK -ngK -ngK -ngK -ngK -ngK -ngK -ngK -lYm -uod -dzP -rHM -rHM -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(52,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -gua -uSt -odm -uSt -xsa -pbu -xsa -uSt -sFc -qId -esn -esn -wcs -uSt -esn -uSt -iRg -sCm -sCm -sCm -uAY -sCf -dbw -ewF -rem -uxy -fOB -kFn -rem -udc -wAS -fTU -gmM -lYx -jkR -jkR -oHY -uZL -ums -ngK -fxb -jkR -jkR -jkR -nqW -rHM -rHM -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(53,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -gCD -uSt -uSt -uSt -kcA -odv -wJK -tCx -wru -aVZ -esn -esn -aJb -afc -niH -afc -ddv -kuI -sCm -iWM -xFL -qlD -kyx -wep -rem -pMV -fpI -kHk -rem -tXZ -tnl -fJD -lJY -aRx -lTY -jkR -jkR -jkR -jkR -ngK -ngK -aSV -jkR -gPh -uXj -rHM -rHM -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(54,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -aJb -wcs -aJb -bTO -trA -jBO -bTO -fht -uSt -uSt -uSt -uvK -uIL -uIL -uIL -uIL -uIL -uIL -nhX -uIL -uIL -vuL -oYa -vuL -fJD -gha -une -tOU -fJD -xkE -vZO -fJD -fJD -fJD -fJD -fJD -wEn -jkR -tjw -ngK -dFn -jkR -jkR -tKa -uzm -rHM -rHM -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(55,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -nDi -uSt -qCr -bTO -ofL -wcU -bTO -fht -uDN -sFR -pup -phJ -uIL -eZp -jFr -yiN -fMR -uGI -uGI -kPL -uIL -ijO -kyx -dyK -fJD -meH -meH -meH -meH -meH -meH -meH -meH -meH -meH -fJD -xYc -jkR -vbm -ngK -dFn -jkR -jkR -grp -iBH -rHM -rHM -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(56,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -bUP -esn -qCr -bTO -tfE -fFi -bTO -fht -gMt -bek -ocH -uSt -uIL -xSp -vnn -pQG -hbz -uAB -clT -lUe -rSg -jOL -rCI -kEJ -fJD -meH -meH -meH -meH -meH -meH -meH -meH -meH -meH -fJD -ngK -hvO -ngK -ngK -iDP -jkR -jkR -inI -nNX -rHM -rHM -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(57,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -iGE -esn -wns -bTO -iyi -daZ -bTO -sSe -uSt -uSt -uSt -uSt -uIL -haz -vnn -pQG -duT -jOC -hpd -dua -rSg -rUK -woo -qYq -fJD -meH -meH -meH -meH -meH -meH -meH -meH -meH -meH -fJD -dWn -jkR -rdH -ngK -nCp -jkR -jkR -inI -iBH -rHM -rHM -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(58,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -fMJ -fMJ -bsU -uSt -qCr -bTO -rcp -sKW -bTO -fht -tPs -sFR -vRh -uSt -bcJ -sKu -vnn -pQG -fMR -uGI -hpd -bEX -uIL -cJQ -rCI -cgl -fJD -meH -meH -meH -meH -meH -meH -meH -meH -meH -meH -fJD -hHQ -jkR -wKI -ngK -ngK -hvO -ngK -ngK -ngK -rHM -rHM -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(59,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -jQy -uSt -qCr -bTO -kYw -rOi -bTO -fht -uhR -dCM -rzH -uSt -uIL -dvA -bpD -phx -jcL -rDu -gEd -bMY -rSg -jOL -rCI -kEJ -fJD -meH -meH -meH -meH -meH -meH -meH -meH -meH -meH -fJD -pFy -jkR -jkR -jkR -jkR -jkR -bFE -xYc -xYc -rHM -rHM -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(60,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fMJ -fMJ -aJb -wcs -aJb -bTO -rFX -dZm -bTO -poV -aJb -aJb -aJb -xUT -uIL -wTv -vnn -pQG -pfT -xEJ -nQs -lUe -rSg -xCd -pdu -hbi -fJD -meH -meH -meH -meH -meH -meH -meH -meH -meH -meH -fJD -lzj -jkR -jkR -jkR -oQx -lPo -oRP -xYc -vZS -rHM -rHM -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(61,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -rpE -fMJ -fMJ -fgI -uSt -esn -ukw -uFc -lGQ -aJb -nkf -hMi -kxg -peY -uSt -uIL -mmZ -gRa -pxq -fMR -uGI -uTA -mzc -uIL -vuL -oYa -vuL -fJD -meH -meH -meH -meH -meH -meH -meH -meH -meH -meH -fJD -jkR -jkR -jkR -vcn -ngK -ngK -ngK -ngK -ngK -rHM -rHM -xsf -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(62,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -fMJ -fMJ -jFl -uSt -uSt -esn -rvc -rig -xUT -cWv -hPX -hPX -kzZ -uSt -uIL -ims -sBY -ims -ims -ims -vOs -ims -ims -efa -pdu -bGK -fJD -meH -meH -meH -meH -meH -meH -meH -meH -meH -meH -fJD -axW -snS -vcv -jkR -ngK -oKR -wwR -gXv -uWM -rHM -rHM -tXe -tXe -uWK -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(63,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -eLH -fMJ -fMJ -aJb -wcs -aJb -dAy -mOZ -vMg -aJb -mZE -cvh -qmA -iHw -esn -wOq -ims -oXz -vMY -hFC -wzD -gND -mpT -ims -eBw -kiK -eZQ -fJD -meH -meH -meH -meH -meH -meH -meH -meH -meH -meH -fJD -qDI -snS -okl -jkR -xIg -gHN -uod -uod -lqH -rHM -rHM -eLH -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(64,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -soS -fMJ -fMJ -nba -esn -aJb -aJb -aJb -meX -aJb -aJb -ghg -fht -uSt -esn -esn -jAV -ylF -ylF -sra -akR -kaH -bVl -uCl -ldV -eTu -sIS -fJD -meH -meH -meH -meH -meH -meH -meH -meH -meH -meH -fJD -ngK -ngK -ngK -ivl -ngK -ngK -ngK -rHM -rHM -rHM -rHM -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(65,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -tXe -fMJ -fMJ -ctI -uSt -slo -aJb -pOA -qBe -lJo -aJb -aJb -sKM -aJb -aJb -aJb -ims -cgu -uQl -kcx -kMK -kMK -hhy -ims -odF -kiK -peQ -fJD -fJD -fJD -fJD -fJD -fJD -fJD -fJD -fJD -fJD -fJD -fJD -jHd -jHd -sJC -jkR -sDs -iBH -rHM -rHM -rHM -rHM -sgo -tXe -gYE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(66,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -tXe -fMJ -fMJ -fMJ -fMJ -fMJ -aJb -aJb -xzd -uSt -aJb -mNv -fht -uSt -otU -sYN -ims -ims -ims -aGH -qzT -elU -mMN -ims -jgM -woo -hnq -ifz -xrv -pdX -pSa -wYI -ifz -vRw -dlO -ifz -qYj -nmf -ifz -izh -uod -uod -uod -uod -tnR -rHM -ozH -iQc -rHM -dmA -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(67,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -tXe -nZT -tQG -ofH -nvp -fMJ -gIM -jPN -mHS -wdT -wdT -bMJ -fht -uSt -oDQ -pbu -sps -ghn -ims -ims -ims -ims -ims -ims -kFW -kiK -aMq -ifz -tSW -vTC -phE -uJo -ifz -fbX -dXO -ifz -krK -oIf -ifz -xYc -xYc -btb -iVV -aiS -mSx -cOd -kkI -sVq -krT -sgo -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(68,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -tXe -mLr -cEu -wMi -wMi -qYV -nos -bka -uLa -ybW -rZc -dsm -qJR -apv -vcI -aDF -xXH -acP -acP -vaA -bCj -bCj -bCj -nXG -xvS -tsj -quD -sRo -wBq -jaJ -jgL -bXa -ifz -ifz -mrg -ifz -asc -ifz -ifz -ifz -ngK -iyx -psA -axn -jCp -rHM -ykB -tQf -rHM -dmA -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(69,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -lNM -fMJ -cMo -fcz -aTM -fMJ -ekP -esn -fpc -aJb -byc -pPK -cld -hBr -aJb -gLZ -jLI -oaI -eIo -aJb -ejy -qxe -ejy -ddv -kCS -vbG -ske -ifz -dNl -rFj -iAP -loz -sna -mwx -lsC -sna -cxM -fsz -neP -wwm -ylA -uod -psA -rHM -rHM -rHM -rHM -rHM -rHM -ujc -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(70,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -tXe -fMJ -fMJ -fMJ -fMJ -fMJ -xKr -pbu -fpc -aJb -hrb -sOd -xSy -nhx -bEp -mcA -dOR -hRu -hRu -hRu -hRu -hRu -hRu -hRu -eCH -rAg -eCH -ifz -ifz -ifz -ifz -ifz -ifz -ifz -ifz -ifz -ifz -ifz -ifz -ifz -sNi -aiS -ult -lXy -lXy -rHM -rHM -rHM -rHM -rHM -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(71,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -tXe -mWc -fOj -gkQ -gkQ -gkQ -kAQ -cHi -dTL -aJb -bPF -bPF -bPF -bPF -bPF -epl -bPF -hRu -avi -avi -avi -avi -avi -hRu -ycs -xeY -prT -cEN -dWt -ydK -asr -wle -qRx -rGK -kxI -biE -wle -nBj -qrB -eln -rLB -jkR -kdS -jBE -xPp -rHM -vgc -qSy -rHM -rHM -xsf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(72,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -soS -mWc -fOj -wcM -gWR -gkQ -gkQ -gkQ -fpc -oDQ -bPF -atV -jKQ -gUY -swf -vwH -gpy -hRu -avi -avi -avi -avi -avi -kkq -xHT -dut -nlk -rWw -nkj -ydn -iql -szv -rbh -rTs -bDs -llM -wle -kDO -tBl -eln -uma -ngK -miI -sJC -jkR -vEf -nwn -vFB -rHM -rHM -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(73,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -bAD -mWc -fOj -whl -mip -jTg -pNZ -gkQ -dUV -czH -bPF -iyp -dGJ -cqB -cqB -cYM -qVX -hRu -avi -avi -avi -avi -avi -kkq -awR -aXo -mAV -ewS -eyQ -mOu -qWk -wle -tQO -jUf -jUf -cPG -aKa -sKX -pLt -sOk -fjG -ngK -ngK -ngK -ngK -ngK -ngK -ngK -rHM -rHM -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(74,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -mWc -fOj -jdc -enG -qFr -cXG -gkQ -eCy -fEz -bPF -pcH -nxF -dnu -oGi -rVJ -uci -hRu -avi -avi -avi -avi -avi -kkq -hyf -aYz -ccj -ewS -tvF -poY -oIi -wle -uIC -oae -oae -sYz -wle -pNC -dsX -dsX -rzi -eln -xwW -miW -sqA -uIO -aoE -eln -hva -mDw -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(75,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -tXe -mWc -fOj -wDJ -ctX -luJ -wyb -gkQ -mpq -kdv -bPF -eBY -izE -ffB -ffB -iZx -aYp -hRu -avi -avi -avi -avi -avi -hRu -bTK -fND -npU -ewS -tvF -tvF -fSx -wle -kKz -dHC -dHC -tWK -wle -oUm -cos -cos -vWk -eln -gjT -xEG -rui -oEA -dbu -fPc -qix -mDw -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(76,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -mWc -fOj -gkQ -gkQ -jNK -gkQ -gkQ -eod -kYf -bPF -meS -kMO -cqB -cqB -sJb -oVL -hRu -hRu -hRu -hRu -hRu -hRu -hRu -cQo -vSF -hof -cEN -tvF -tvF -tvF -wle -wle -wle -wle -wle -wle -eln -sMR -dPn -oOc -pzl -oZl -oZl -stp -jay -mOt -pKn -qix -mDw -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(77,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -aRt -mOf -wtn -rqt -hhN -rWp -hlL -mQg -kYf -wYl -sqv -xek -eOx -afk -ycn -vUZ -vTf -gZX -mCr -fpp -nNt -xgA -bPF -kQK -hKx -qcO -qOv -qOv -qOv -qOv -qOv -qOv -irx -stz -cxQ -irx -eln -wmq -oeG -kKv -eln -dJd -xbx -qxX -uIO -uIO -eln -hva -mDw -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(78,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -aRt -mOf -qVP -hPP -mAx -fLa -dsk -lSq -nqy -qnp -cNF -fXs -ahn -ahn -sdx -xKg -xKg -xKg -xKg -jEL -twN -lrl -bEM -jDk -aYz -cGV -qOv -rWy -stz -cxQ -ocE -qOv -irx -xGi -qQC -irx -eln -xjt -lOU -pLq -eln -eln -eln -eln -eln -eln -eln -hva -hva -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(79,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -aRt -mOf -mWg -ehe -qiW -ehe -qli -pBC -kYf -bPF -vXT -aLi -gUY -gUY -vcQ -beq -aut -dNj -aut -jqP -gmF -nJr -bPF -xZE -aYz -ccj -qOv -rWy -kzL -vQv -ocE -qOv -hnk -oil -kya -nsf -eln -ryz -lOU -aQq -qPv -qsD -vxf -twO -dzc -pcb -weB -hva -hva -xsf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(80,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -soS -aRt -mOf -wmY -eVy -eup -xTt -qli -awX -ife -bPF -bPF -gse -gse -gse -gse -bPF -icw -tJC -tJC -bPF -rvh -bPF -bPF -clp -pFH -gav -qOv -chf -dSQ -wCL -qgf -qOv -ouu -bLS -uFT -mZx -eln -rBZ -lOU -pLq -hRT -soM -kcR -rLC -mIg -bPH -weB -hva -hva -tXe -gSd -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(81,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -aRt -mOf -mOf -mOf -xHE -vEg -nmT -jid -oKN -kYf -wzy -wzy -wzy -wzy -pMh -xAd -hlX -hlX -hlX -wVv -lNX -wCv -fny -jsU -sPT -ccj -qOv -cUI -crr -tKT -pjf -qOv -aPw -iqb -uFT -qja -eln -vco -oOm -pLq -mKG -rfE -nOy -lod -vJE -weB -weB -hva -thR -uLo -lZa -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(82,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -xye -uLo -rtg -aRt -aRt -mOf -kYf -kYf -mZF -qJr -kYf -kYf -wzy -wzy -wzy -wzy -pMh -qRF -gZv -gZv -usx -hSc -uMU -vku -fny -kpR -qUq -ccj -hgw -jfq -crr -eRU -tCs -qOv -qOv -qOv -fpj -qOv -eln -mCP -pnF -pLq -eln -eln -eln -eln -eln -eln -hva -hva -xMx -gYE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(83,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -idA -tXe -qUr -jXo -pop -xvB -lfV -fKC -ltH -pex -qmH -jWt -wzy -wzy -wzy -wzy -pMh -hcQ -hEH -pgQ -vvR -rZr -epn -hzl -qfG -tnn -mEr -eae -qOv -qOv -eDD -qOv -qOv -qOv -liA -pLV -jOh -xhp -kQH -oCm -faN -gKW -mfA -eMC -cQL -qMA -oXn -sSX -fQf -klO -mCt -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(84,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rdO -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -hLJ -kAq -xlf -pUM -tZt -gHq -tli -aUF -tSQ -jWt -wzy -wzy -wzy -wzy -pMh -yhP -gLh -vab -oWW -xwV -mFO -pJG -qfG -tnn -obG -kGL -qOv -eTa -snI -tGm -gwh -oOX -djU -oFa -efb -rfX -qLC -tIn -oKz -vUB -aGT -lDe -oNn -bOL -lAy -qGg -mXP -eoO -fRR -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(85,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -hLJ -kAq -xlf -syI -exK -wNK -vCq -igT -dQs -jWt -wzy -wzy -wzy -pMh -pMh -isY -jbN -bLw -ebz -rZr -wnY -eYQ -qfG -tnn -kWT -uXH -juZ -fJJ -sNa -tKT -tKT -vUf -bgZ -tKT -rsi -ruy -eln -kGT -mTF -mfA -mfA -fCI -gvU -ghT -cdU -xJd -eoO -qAW -vOQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(86,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -hLJ -kAq -xlf -fGp -exK -ucx -ucx -igT -hlF -pRi -wzy -wzy -wzy -pMh -pMh -hdq -jor -cyM -vvR -rZr -gZv -dWi -fny -peo -aYz -aJI -qOv -aIS -xsC -fAp -hrO -knC -eKL -tKT -rsi -jyD -kQH -pdl -uIl -mfA -kDQ -iMW -oOH -owN -waO -xJd -eoO -kGl -vOQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(87,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -hLJ -kAq -xlf -fGp -exK -ucx -ucx -igT -cEd -pRi -hsw -hsw -hsw -hsw -pAJ -qXo -gZv -gZv -vvR -rZr -gZv -vnD -qfG -wiH -aXo -gav -qOv -qXp -yfa -jqb -wqN -qAh -kCN -joT -ekH -dyD -kQH -pdl -tto -mfA -bwM -xSr -dWp -and -wFo -xJd -eoO -eoO -clZ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(88,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -huG -kAq -pop -gQG -exK -mMs -mMs -dzV -pvC -pRi -psS -fRk -vkK -hsw -ntz -cxF -gZv -gZv -dVj -gwG -qci -uLu -oHF -pZF -qLd -ccj -pdJ -qOv -cBv -qOv -qOv -qOv -qOv -qOv -hyS -qOv -eln -wgr -bYX -mfA -qVV -pNV -lnE -waS -uBi -sSX -sSX -fvJ -clZ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(89,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -hLJ -kAq -xlf -fGp -exK -ucx -ucx -aRr -bAE -pRi -eMr -dIn -aRn -hsw -eHm -eQR -gZv -gZv -oqy -thy -eMR -uWA -gWK -qeZ -cMN -ccj -qOv -xMK -bkU -taX -lbL -qOv -qQM -ldC -crr -mgz -nVz -nVz -aFR -mfA -mfA -mfA -mfA -mfA -mfA -oyl -sSX -ePH -vOQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(90,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -hLJ -kAq -xlf -fGp -exK -ucx -ucx -igT -sbq -pRi -wlW -drH -hsw -hsw -jPb -vUL -oTF -orC -ruj -gZv -vvR -sRy -fny -tnn -sPT -dji -qOv -oGZ -bkU -mFy -oQH -qOv -ves -lWg -crr -gIe -nVz -tNN -rIt -vwm -riQ -xGv -moY -qtr -xuf -bxQ -uWu -uYw -vOQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(91,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -rpE -rpE -poX -rpE -rpE -rpE -rpE -poX -tXe -hLJ -kAq -xlf -syI -exK -jxW -mAI -igT -dQs -pRi -yiE -xdx -fny -gXo -jPb -vUL -saX -sDP -pSm -rAm -ebz -dJP -fny -wLl -aYz -lYP -qOv -hyP -tOC -bTg -vtT -qOv -tPf -tGK -ryJ -eCs -nVz -pxz -iYx -oNm -rcc -xCJ -iHy -mtW -beu -bxQ -uWu -uYw -vOQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(92,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -tXe -tXe -tXe -iPB -tXe -tXe -tXe -tXe -iPB -tXe -hLJ -dRQ -vQj -pHO -sYe -xYm -glA -uNw -xik -dSr -rUI -bWQ -fny -eVd -jPb -qfC -igY -yeh -paF -uXq -uew -llm -fny -tTs -tpK -ccj -qOv -pIX -jLN -szH -pIX -qOv -wXk -vWL -ldT -wXk -nVz -yas -egL -yka -nNi -dQG -cnj -xoP -xet -bxQ -uWu -uYw -vOQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(93,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -axP -oxE -lJx -oxE -oxE -oxE -oxE -lJx -oxE -qQz -nkV -pop -enp -bqX -xVS -czV -haa -lPF -wLw -bRx -bKH -xUw -xUw -xUw -xUw -xUw -xUw -xUw -oBk -fbk -fny -fny -lqj -xTK -hww -qOv -pIX -oAb -ato -pIX -qOv -wXk -oAb -ato -wXk -nVz -nyA -tXg -iYx -xrC -iDK -nVz -nVz -nVz -bxQ -uWu -uYw -voL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(94,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -wqe -qIp -utn -utn -dDa -dDa -utn -dDa -dDa -utn -utn -utn -pop -oBR -bib -rPJ -rPJ -atr -mwf -fWP -pmW -phW -xUw -qNm -nbT -byY -kFs -lDW -xUw -hZc -sWy -wgR -fny -txi -mzv -txi -qOv -qOv -qOv -qOv -qOv -qOv -qOv -qOv -qOv -nVz -nVz -nVz -nVz -iYx -siU -ylq -vHP -pDI -gFh -bxQ -uWu -nzW -nzW -nzW -nzW -nzW -nzW -nzW -nzW -nzW -nzW -nzW -nzW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(95,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -xxf -utn -iqR -iqR -qWx -qWx -iqR -qWx -qWx -iqR -iqR -iqR -iqR -dBU -dBU -dBU -dBU -dBU -dBU -fcI -tRN -bjs -xUw -fFR -lzW -aGk -adM -aqL -xUw -qvO -rYT -crD -fny -mDD -xPa -lsk -hOF -kRm -shX -mUk -kte -xjV -xDJ -cns -xDJ -nVz -wZI -uHj -faF -xtD -qJP -ezy -nVz -nVz -nVz -bxQ -uWu -nzW -nzW -nzW -nzW -nzW -vEW -vEW -vEW -vEW -vEW -vEW -nzW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(96,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -mKZ -utn -iqR -nlx -bFk -oie -iqR -jHG -jRK -kkL -gHC -oQB -dBm -dBU -epQ -epQ -epQ -xar -tnk -cto -qIk -iDf -xUw -lBz -dXe -kAE -vKa -sxz -xUw -pXM -yfl -jnK -fny -tmL -aDt -sxq -gqF -xft -dfL -lsM -sur -xjV -jMS -ddw -jMS -nVz -nVz -nVz -nVz -nVz -aun -nVz -nVz -fDr -nZF -fWF -yew -dDz -qxv -nnJ -oUH -gRr -hCt -qay -hCt -glv -xMA -hgg -ijM -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(97,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -ibG -eME -utn -iqR -huY -xAG -eGe -swA -jJw -qhl -grt -qwC -jHq -ycK -dBU -rLy -oyB -nDj -nlS -dBU -dEy -tUB -bKj -xUw -xUw -xUw -xUw -syj -xUw -xUw -oBk -oBk -oBk -fny -otj -tuG -rMj -smZ -bDI -lcn -vmB -tOl -bVA -mtC -mtC -mtC -oGo -mtC -mtC -vog -gql -mtC -oGo -mtC -xOf -gVV -fWF -aFq -uxB -cam -kHe -dOS -nCE -bbO -aGt -nKz -dkl -xMA -hgg -ijM -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(98,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -tXe -hLJ -utn -iqR -iqR -atf -atf -iqR -qMl -kvF -ejr -ejr -ejr -ejr -dBU -nsU -sIA -nUE -ewZ -ksC -dAl -nlm -xmH -xpQ -lPl -bSx -mNg -laG -wWp -eII -fPJ -xws -ydf -vke -sTZ -gDH -lhc -gqF -xpV -aoN -leE -bjU -xjV -qRO -hEf -qRO -qRO -evJ -qRO -rWz -kfu -tMl -vau -dwq -bii -cVq -fWF -lwn -yib -hBS -vvO -ufg -vgl -hCt -bAZ -hCt -adA -xMA -hgg -ijM -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(99,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -hLJ -uaW -kCD -ukG -bFk -oie -iqR -vCG -gvQ -oFf -arm -kPX -npK -dBU -bsQ -dWO -xlN -lEK -dBU -aVO -ycv -cAK -ieu -xkH -iRm -ptb -sWf -xOe -wej -xVc -pZV -eRD -eEO -tPx -nKb -uSV -hOF -izz -kyj -qdS -aYb -jPi -lSx -lSx -lSx -lSx -lSx -lSx -lSx -lSx -lSx -lSx -agO -pqD -agO -fWF -fsI -kBs -vsd -dOS -dOS -uGK -cgH -bzA -cgH -cgH -cgH -vEW -nzW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(100,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -iJM -tLU -uaW -kCD -huY -xAG -eGe -xIm -gFe -veC -vgV -miY -pyz -grI -dBU -bsQ -dWO -xlN -lEK -dBU -eIl -wzq -lQv -dFc -dFc -dFc -dFc -dFc -dFc -dFc -dFc -dFc -hQn -hQn -vsX -qit -vsX -lSx -lSx -lSx -lSx -lSx -lSx -sKC -cgR -sXB -sPB -weC -aNW -aNW -aNW -lkg -lSx -hha -hFc -njl -fWF -aFq -ofG -jBS -nXy -tHW -klu -hwv -fzr -foH -urq -urq -gYd -gYd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(101,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -jDS -utn -iqR -iqR -iqR -atf -atf -iqR -vWF -oaO -oFf -rye -qsi -wyn -dBU -jeK -dWO -xlN -lEK -dBU -eIl -tUB -aJI -dFc -euX -aWI -mRe -aaB -xWd -cKo -uBI -dFc -uxP -oow -rkT -bwJ -rtl -lSx -rtD -cqC -dte -xaM -ipX -tTM -jzA -lkt -ezH -fVs -fVs -fVs -fVs -kTu -aau -doN -bii -aeS -fWF -vbs -oGG -jdX -cDv -bXg -mDG -hwv -lTP -tEV -idu -ibF -gYd -gYd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(102,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -afj -esF -rqg -sBz -rOZ -rOI -sIq -dMy -prO -kpb -oFf -plT -qXM -aKj -dBU -bsQ -dWO -xlN -lEK -dBU -wbr -kYd -rvf -dFc -xRM -cmR -bcY -tHa -iWB -oDb -gfp -jyb -oOr -oOr -rkB -boz -vWm -lSx -cho -aVe -oAm -yiR -hql -oAm -tNf -wNs -hjg -xmj -xmj -xmj -xmj -tKH -aau -doN -hFc -jzN -fWF -fWF -fWF -fWF -bsB -lvD -ffh -ftn -lAe -nPb -nPb -qbO -gYd -gYd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(103,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -pzM -sup -kCD -jQz -yjU -itC -aXW -sNM -jTN -lfP -ejr -ejr -ejr -ejr -dBU -xwl -wQk -oVN -sKf -dBU -whn -tUB -kXS -jNk -ktu -rGu -xuk -tCJ -vfs -ina -knd -lJN -gfV -ofW -owU -rhD -mSf -lSx -cZT -lnC -aVe -ygl -hql -hqv -aCc -lVm -uEh -uEh -uEh -uEh -uEh -uEh -aau -aso -mzF -kRL -caR -utX -sQQ -eSL -jDv -qhs -hbv -hwv -ptC -gQV -gQV -tJM -gYd -gYd -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(104,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nrg -uaW -kCD -pLg -cXs -nYn -jdm -dSS -cxR -qhl -xXG -eqS -puM -hvh -dBU -xFc -etV -eia -uOQ -dBU -eIl -uLI -sbo -dFc -hVg -nqB -kWb -dIL -fUv -aYx -ktu -oTx -ktu -ktu -rkT -dwC -gSB -lSx -bBU -qwJ -lLY -uxa -fHe -uxa -xcx -wAU -mNs -fOF -fOF -ukQ -fOF -fOF -lSx -rJC -hFc -lgz -fWF -duF -iQy -fWF -kEE -tvG -hlO -hwv -idr -hNm -hkA -ibF -gYd -gYd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(105,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nrg -uaW -kCD -grF -sIs -uau -qLg -ffc -nJm -nzX -iqR -dLd -fZo -dVc -dBU -xFc -xFc -ano -kDh -dBU -eIl -jMh -egj -dFc -dFc -dFc -pcp -vXJ -tzW -tkb -niY -dFc -kBt -blG -rkT -pxj -bvW -lSx -wYz -uxN -pnp -eLn -gKr -fVS -aKh -sAy -wRB -pik -kin -lSx -lSx -lSx -lSx -nXu -hFc -cwq -fWF -fWF -fWF -fWF -fWF -fWF -fWF -hwv -cCj -pYr -bNq -uqa -gYd -gYd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(106,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -hLJ -utn -iqR -dLm -aCR -iqR -iqR -hBO -sSp -mHT -mHT -mHT -mHT -mHT -dBU -dBU -dBU -dBU -dBU -dBU -eIl -jMh -fhm -lNl -hxm -dFc -dFc -yfb -dFc -dFc -dFc -dFc -hQn -hQn -uVJ -pxj -ifq -lSx -mwD -cvy -eFg -pHc -mcq -sIi -xjk -kmy -rbt -fwy -rto -esl -bQZ -uSj -dLU -hKl -lih -cqV -kwI -cfK -pch -qyQ -lCC -qkP -gJQ -kwI -thW -thW -thW -thW -xNQ -xNQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(107,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -hLJ -uaW -kCD -rsf -aNR -skh -iqR -lHV -pSP -gjj -mmy -mHT -ahA -arC -atC -mHT -wgY -sto -tEK -pqb -gyU -mit -dRO -xGZ -bWJ -tBW -sJv -dNp -dNp -tBW -dNp -dNp -dNp -nJl -tfk -rcD -emK -lSx -ezK -vHg -eFg -uWf -uql -xTc -pnK -kTV -gpb -pbU -duJ -lSx -mNJ -qfZ -lSx -hSn -uaD -hYi -kwI -hkL -bhg -qCU -gWk -rnP -xBY -kwI -thW -lNb -uUl -qEw -pfw -vOQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(108,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -fdX -utn -iqR -uUh -gTc -hVT -iqR -xIZ -duu -gRO -dDp -hAE -aeq -cEb -dvU -qUN -ojy -cGc -fKp -fKp -cgp -eFn -fhm -txH -rXd -szq -kcF -fjF -kfW -qPS -tfZ -nrG -dhH -eJC -gsw -cEL -mDk -lSx -ezK -bLT -lFH -bSH -hQf -lWC -fNC -xBZ -bQy -eMj -lSx -lSx -iHA -pFu -lSx -anv -uaD -ddw -kwI -icW -cxL -xql -cPv -jZO -tDj -kwI -thW -dYL -xBH -kYE -pfw -vOQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(109,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -gnW -nTz -rMc -gDr -nrb -iUN -rgQ -iqR -pbh -mtQ -qeH -gFj -bwQ -qfh -qxU -aQC -msg -yfk -krA -epy -fRq -gJt -fJR -fhm -fhm -dHF -fhm -fhm -wgY -whX -whX -whX -whX -whX -whX -egn -qit -vsX -lSx -qpr -pgN -lSx -lSx -shZ -lSx -xkF -iuK -aEM -qdz -lSx -lSx -lSx -lSx -lSx -gjJ -oin -isX -kwI -jhy -kxH -fiP -aAP -sKE -dvd -kwI -thW -nAO -sBG -vDg -pfw -vOQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(110,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -xxf -fNW -ttc -ttc -ttc -ttc -ttc -ttc -gpR -fZp -qOk -ttc -vfY -seC -otk -mHT -wgY -dwV -ryn -mkE -iDp -jEt -fhm -iAq -jXK -oBS -eVW -wgY -boT -xIJ -rNn -xIJ -boT -whX -pyf -cEL -rtl -lSx -ezK -cvC -lSx -iXS -sqq -lSx -mnz -llb -szj -cwy -lSx -qzl -hAz -uEn -aXq -vuW -hUN -dGl -kwI -kwI -kwI -kwI -ntA -mYq -kwI -kwI -thW -byW -fMs -xNQ -xNQ -xNQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(111,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -wvG -iIF -fNW -fNW -qvY -dlX -aAz -yjh -mLn -hjn -xRA -ttc -ttc -ttc -ttc -wgY -gpA -pPu -gbu -rOv -uWh -wPq -fhm -uni -lwt -mcI -lIy -wgY -cPg -eig -nHi -eig -gwZ -whX -wgN -fdF -bQg -lSx -ezK -cvC -lSx -qHf -sxS -lSx -lSx -lSx -lSx -lSx -lSx -cIj -vhE -bSo -pVx -nEo -sXD -aIL -thW -jVv -jRw -tQm -cmw -fOL -xce -xxo -xxl -cAl -lCc -qsA -xNQ -cJX -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(112,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -fdX -mKZ -fNW -fNW -hYN -cOY -hvU -reS -lvs -vaT -qih -dfT -mTY -xkR -ttc -wgY -fhm -uEp -aBp -fhm -fhm -fhm -wgY -wgY -wgY -wgY -wgY -wgY -mRM -whX -iTv -whX -jTC -whX -jTr -fdF -bQg -lSx -lSx -lSx -lSx -sZx -lSx -lSx -rMo -fGn -rMo -bEB -qxP -ung -wuH -ozF -pVx -pje -sXD -nuC -thW -hio -sGP -qyi -pfy -cki -gCb -nVY -bMX -tXG -iGl -hsn -qdi -kcj -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(113,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -fdX -fjw -xCC -xCC -czE -mJU -eRj -cHz -rEd -hLX -wVT -oTc -amx -ore -ttc -dTZ -aAB -bVO -xSl -uRz -tvZ -whX -mRS -cOR -eNJ -tZT -rlW -qQF -ngO -cqv -sFU -fCf -sLl -whX -imM -gli -oGX -wBr -xFQ -euE -mxO -cSZ -kqA -cfP -lhv -cCF -rMo -rMo -qxP -ung -oGP -blw -pVx -qhw -sfu -krs -thW -pRA -vZY -jGW -uat -koh -haH -jCQ -mOx -hNf -uZH -oAi -vHc -vOQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(114,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -wqe -qIp -fNW -fNW -uek -nzL -eEA -rCd -rCd -yko -nBy -grv -cjH -cAm -ttc -nEx -vJS -aVj -eWT -fHP -tvZ -whX -wwT -dej -ajb -kkG -wyO -whX -jTC -whX -ueq -gqw -gfz -qoe -wgN -oqU -boM -pgv -otI -xPy -chi -bkg -nLH -cfP -lhv -qZt -qZt -tHE -qxP -ung -wlh -pVx -fPs -fPs -rPN -fPs -thW -yjb -vZY -ltO -xGD -kLF -fPb -xNQ -eQv -iIz -xNQ -xNQ -xNQ -xNQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(115,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -xxf -fNW -fNW -fNW -ttc -ttc -ttc -ttc -ttc -ttc -ttc -ttc -ttc -ttc -ttc -mHp -etK -ehT -mSi -wAE -whX -whX -wwj -daT -mRQ -qoZ -lvN -whX -boT -xIJ -liM -ont -hDW -qoe -wgN -fdF -tUE -vcq -yfH -fOT -hwZ -gIn -nLH -vTq -lhv -elP -vts -tPr -qxP -hjK -gNw -sSL -fPs -iQY -wQC -slL -thW -pSn -iqH -mRt -oqq -nit -aAt -sJE -lim -aRb -qbl -lxY -ijM -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(116,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -gnW -nDC -gTl -gTl -gTl -tQj -wcm -fpG -pXP -eYI -gPe -iVd -gNq -siT -omT -cus -pNJ -jsl -luo -thC -pzZ -rjy -sGb -wPR -lIf -pVH -rpI -vlt -whX -lLv -xIJ -hcM -ont -hDW -qoe -sIf -cEL -aDB -wBr -lwd -ljg -btf -rnI -lDM -cfP -lhv -hJw -elP -boO -qxP -qxP -umo -qxP -fPs -kpM -fUf -sfh -thW -tGr -hWW -rav -gkq -wCd -mmJ -uDG -rso -hhI -mEP -lxY -ijM -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(117,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -fdX -gTl -gTl -gTl -vhP -wcm -aXz -suL -bIT -dQH -dlV -kuu -cAa -ikK -nOW -qFc -nOW -kGD -bXv -gSk -whX -wSb -lQt -whX -whX -dKv -whX -whX -whX -whX -ucT -opE -ucT -whX -egn -qit -vsX -xbJ -xbJ -hqt -hqt -tWT -xbJ -xbJ -xbJ -xbJ -qZt -rMo -kcK -gVa -dTy -hQr -fPs -xsg -vUn -xLN -thW -sBe -hWW -rav -bQA -jxR -cyc -iyb -kJV -sKn -aRb -lxY -ijM -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(118,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -mIq -fvG -fpU -uJz -fwW -oEg -men -nGt -upY -gPe -vdU -nrK -ezv -omT -tEs -cep -ulS -oBg -tpH -tpH -tpH -tpH -tpH -tpH -bLn -cpb -sID -ljA -wsW -ovu -meE -cpb -nsT -tpH -gBo -cEL -aDB -cgE -dHa -vaD -xTZ -cKg -xfY -duG -cug -xbJ -xbJ -xbJ -xbJ -xbJ -pVx -fbD -rFq -rFq -fAO -rFq -thW -fFG -qeB -hJV -bbq -nit -vuZ -xNQ -xNQ -xNQ -xNQ -xNQ -xNQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(119,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -iQn -fdX -hLJ -uJz -gAr -wig -vqf -hsY -gAr -gPe -pLk -pLk -pLk -omT -hvF -hjo -sZF -wwN -tpH -odI -fOk -tpH -gss -tpH -sYD -cpb -ghE -cgj -ghE -mBG -tRq -iby -jsk -rAU -qVC -ngV -tUE -tOx -dYZ -iSR -kEx -hXn -yaV -dxB -lIv -avt -ckB -pUn -oeg -xbJ -qxP -uYI -rFq -bLr -sas -vXV -thW -vVo -hWW -rav -oqq -nit -aAt -fgo -lim -lim -qbl -arN -ijM -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(120,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -fdX -hLJ -uJz -aLo -oLY -wig -oEW -aLo -gPe -omT -omT -omT -omT -omT -omT -omT -hgB -tpH -aXB -kOA -hvt -xje -cfM -hNN -ffj -drr -hDl -cub -gZm -drr -miM -sAP -leq -gBo -fdF -hyz -xbJ -jBc -rLE -abI -hXn -pGe -aZJ -rcW -aSH -xtM -sor -urv -xbJ -qxP -uYI -rFq -uhJ -boN -xEQ -thW -sBe -hWW -rav -gkq -nHz -waX -lYK -mIs -rPO -mEP -arN -ijM -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(121,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aAY -gTl -gTl -gPe -koH -wKF -nUm -bdT -gPe -qtw -rWg -tqy -wwV -lKH -mBr -omT -rwA -tpH -qiu -mjE -iue -xMu -jfc -tIg -xin -jED -dYa -jED -rrc -jED -xmm -pYI -tDD -jME -rtE -dqe -eSF -tms -mAN -jQk -gjX -npC -blA -lnR -ugw -muw -uQR -sPq -xbJ -aQd -uYI -rFq -vdA -vNl -bOZ -thW -fFG -qeB -fgP -bQA -vzp -eDk -fgo -mvM -uFL -aRb -arN -ijM -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(122,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hUv -dxZ -dxZ -omT -omT -omT -omT -vwy -omT -cRD -rWg -iAT -vJS -rbD -dCQ -omT -rwA -tpH -tbT -tVV -pbl -ovQ -cfM -mzt -vXE -erj -oEm -qzj -wyE -pRZ -nVa -tHv -tpH -ePE -axY -wUD -xbJ -xbJ -jUA -rIX -kAL -wuT -kAL -etE -avt -tIN -gKH -reI -xbJ -aUf -heX -dQM -dQM -gCO -dQM -dQM -sBe -hWW -hzb -bbq -vzp -mmh -xNQ -xNQ -xNQ -xNQ -xNQ -xNQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(123,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -xgX -dxZ -dxZ -jcz -sQS -erY -hHa -vFw -omT -bUE -sjN -qTe -jSD -qTe -neR -omT -rwA -tpH -tpH -tpH -tpH -tpH -fqJ -fqJ -fqJ -fqJ -fqJ -fqJ -qVI -qVI -qVI -qVI -qVI -eWI -doV -rRI -tKC -xbJ -gGM -qeU -xBR -jGP -xBR -nTO -xbJ -xbJ -xbJ -xbJ -xbJ -pVx -fbD -dQM -dQM -hKq -eBL -dQM -xQT -hWW -rav -oqq -vzp -aAt -mkj -lim -aRb -qbl -kbd -ijM -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(124,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fdX -dxZ -dxZ -xvF -sQS -qPR -iNH -jZY -kgy -wPU -aXj -aXj -aXj -uzw -fHv -hIX -xZW -jLK -nCk -hwN -lBs -wUC -fqJ -muW -dUK -pgY -xrm -fqJ -jSB -pyv -qVI -nxy -qVI -juk -tlz -spC -tKC -xbJ -acJ -qeU -qub -pIy -wiJ -pQN -aOd -xbJ -wUp -keP -xbJ -qxP -uYI -bPd -dQM -lsj -xaP -jcU -dsW -plF -iZc -gkq -fzG -mmJ -qnl -rso -hhI -mEP -kbd -ijM -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(125,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -fdX -dxZ -dxZ -jcz -kPB -kqQ -pck -cxH -omT -dzR -wNu -wNu -wNu -txx -lld -omT -kdF -wCt -jsl -mDV -dqY -uWD -fqJ -kxB -sDj -aMo -uFk -qDS -vpJ -ebc -rWN -nrJ -qVI -gHQ -dQP -xPs -eJC -xbJ -gpN -qeU -xBR -hjP -xBR -pbf -dMG -hMg -xTZ -xTZ -jYP -qxP -ajO -emS -dQM -hqO -tJY -dQM -qFD -xkZ -jSn -cGw -xEn -fQM -xbA -sIo -udR -hTK -oqs -kIn -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(126,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aAY -dxZ -dxZ -xvF -sQS -wDo -fwO -cxH -omT -oqu -pjk -jHC -wRX -bjg -xlB -omT -nkP -iMf -jsl -mDV -kzR -gYS -fqJ -cHq -jRt -bZZ -suP -fqJ -qVI -fiC -qVI -fiC -qVI -ylZ -tZJ -ylZ -uCT -uCT -uCT -btE -vHM -sEr -dIF -nJX -qlx -xbJ -eVv -hAV -xbJ -qxP -jbQ -xCW -dQM -dQM -dQM -dQM -itQ -npI -ycV -viU -isH -sPD -xNQ -xNQ -xNQ -xNQ -xNQ -ciz -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(127,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -dxZ -dxZ -xvF -sGM -sQS -sQS -kPB -omT -pSt -pSt -omT -wMQ -bJf -wMQ -omT -omT -kok -jsl -qxi -kpz -kpz -dpG -paK -luO -jyV -meG -fqJ -qVI -cUK -nnf -qGT -ksk -hhE -vky -kot -rzd -tDo -uCT -uXP -eou -xbG -dIE -nLM -xbJ -xbJ -xbJ -xbJ -xbJ -rNE -uYI -cEW -npI -nXt -bJT -tkL -rbV -wpI -oIE -vox -xEi -gOr -dOc -obm -mes -xNQ -xNQ -oOJ -uLo -lZa -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(128,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -xgX -dxZ -dxZ -dxZ -xvF -uxj -xvF -xvF -omT -wMQ -wMQ -wMQ -scU -ifh -qBr -aFO -aee -gYt -ivD -ukv -rPS -bjY -fqJ -rlI -nMP -hrj -gMa -fqJ -lFW -rPD -wmv -hhE -dUq -jAx -qDh -dUq -jAx -bXq -uCT -xbJ -xbJ -xbJ -xbJ -xbJ -xbJ -eLZ -eLZ -mwo -pVx -pFv -mQK -rMo -npI -uiC -aAf -aAf -fLe -sck -pal -jOa -vRo -jhS -xNQ -pin -xNQ -xNQ -xNQ -xNQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(129,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -iSW -dxZ -dxZ -dxZ -dxZ -dxZ -dxZ -dxZ -dxZ -wFV -wFV -wMQ -wMQ -bJf -wMQ -wMQ -wMQ -wMQ -wMQ -wMQ -wMQ -wMQ -fqJ -fqJ -fqJ -onJ -fqJ -fqJ -oHQ -fUt -aUm -hhE -ewu -kUV -qDh -ewu -kUV -hhE -iWt -pVx -lby -vVM -lby -lby -lpI -qxP -qxP -qxP -nae -qxP -uYI -rMo -mMR -xml -kWm -kWm -wAR -lbK -chg -erx -vtZ -xNQ -xNQ -xNQ -xNQ -xNQ -xNQ -xNQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(130,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -fdX -hLJ -dxZ -dxZ -dxZ -dxZ -dxZ -dxZ -dxZ -wFV -btR -fXg -cIi -wyy -oxy -oxy -sUj -hKO -xWW -ibC -xWW -aux -diO -lTZ -ggm -dEQ -jRN -lTZ -gLB -uCr -jkN -gNP -leU -leU -vEv -una -una -wWb -bQW -pVx -lby -qxP -qxP -qxP -qxP -qxP -dgk -fQV -pVx -qxP -uYI -rMo -nms -cXt -ymg -ymg -tjn -npI -qBO -mNV -jBY -xNQ -xNQ -xNQ -xNQ -xNQ -xNQ -xNQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(131,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -ycO -peK -bzD -bzD -bzD -bzD -ixH -bzD -bzD -hZG -tVr -uao -seK -kXO -nab -oGD -tOw -mRk -gkh -tqL -wek -xno -yav -lTZ -kOu -rDh -qSS -shv -rNw -qAn -ezz -jjF -sWv -bFt -has -dUq -jAx -hhE -qZJ -pVx -xIj -qxP -beV -pTb -lpI -qxP -qKa -jYi -pVx -pVx -uSn -bzg -bzg -bzg -bzg -bzg -bzg -thW -iLd -qck -qFq -bUX -qbl -lim -kGy -ijM -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -qzu -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(132,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -sTx -iLc -sTx -sTx -sTx -sTx -sTx -sTx -sTx -hZG -tVr -ejS -jaU -gZL -rZQ -hkH -rZQ -gZL -gZL -wGf -qvr -rZQ -kUW -lTZ -jKH -caZ -pnM -lTZ -idY -oHQ -wmv -hhE -ewu -kUV -nFc -ewu -kUV -bXq -qVI -pVx -mwo -qxP -hNs -qff -vtH -qxP -pkb -pkb -pkb -pkb -oFK -eah -hOz -dJY -bzg -bzg -bzg -thW -iLd -rOG -jPe -ooE -dVo -jJm -kGy -ijM -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(133,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -kkr -rmS -rmS -rmS -rmS -rmS -rmS -rmS -hZG -pcc -uIp -gZL -mXn -bxH -hkH -hyL -gZL -lgB -hkH -eqo -qvr -reP -lTZ -bFp -rUp -wst -lTZ -qVI -ilr -wmv -hhE -hhE -hhE -plN -hhE -hhE -hhE -hTS -qxP -qxP -qxP -qxP -qxP -qxP -qxP -pkb -qfJ -fok -vNH -lFI -qus -qus -agF -bAL -iSd -dty -thW -gGH -qXj -sGB -fAm -eDg -pcC -cYk -tBs -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(134,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -kkr -kkr -kkr -mVd -mVd -mVd -mVd -mVd -mVd -hZG -tVr -uIp -hkH -tok -hkH -alH -kmc -sIV -hId -jKL -aEI -rqK -kUW -lTZ -lTZ -lTZ -uGe -lTZ -lTZ -lTZ -lTZ -cDo -imE -clR -sdg -clR -imE -cDo -qVI -fQV -inS -qxP -dgk -fQV -hpb -qxP -pkb -plk -uyB -uyB -sIN -lxJ -lVC -bzg -bzg -vwv -bzg -thW -thW -thW -thW -xNQ -xNQ -xNQ -xNQ -qsw -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(135,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rmS -rmS -rmS -rmS -rmS -rmS -hZG -tVr -tAb -hkH -nuj -shU -hId -lhU -xdE -fol -fCx -jaU -qvr -yjA -lTZ -akC -hgH -wst -odG -bPu -bPu -lTZ -qVI -tjd -rLj -qVI -rLj -tjd -qVI -qVI -qVI -pVx -qSp -pVx -pVx -pVx -oSk -pkb -rku -lKC -ubG -klp -rrX -bzg -bzg -nDE -flP -bzg -oZu -wws -gKF -gKF -xNQ -xNQ -uYw -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(136,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -kkr -kkr -mVd -mVd -mVd -mVd -mVd -hZG -rMn -ejS -hId -cKF -qqF -gfk -dCm -gZL -hkH -hId -qvr -rZQ -kUW -lTZ -akC -cZz -unU -wQf -bPu -bPu -lTZ -syB -qIe -pyJ -vmE -pyJ -qIe -qIe -ssS -qVI -red -gkD -wMZ -pVx -uUH -rnD -pkb -mKo -dch -xSL -bzg -bzg -bzg -sRG -kQF -pKO -kKU -cua -azQ -gKF -gKF -vOQ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(137,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -kkr -kkr -bzD -lHq -bzD -bzD -hZG -pcc -ejS -gZL -gZL -gZL -uKA -hkH -gZL -ybd -hkH -nSC -rZQ -xcm -lTZ -uxl -ajs -jiT -aKn -vJb -vJb -vlH -jGY -hWb -mFo -jGY -amS -mFo -jGY -toK -qVI -cem -gkD -gkD -pVx -xbO -rnD -pkb -pkb -pkb -pkb -bzg -nam -nvP -hfX -jsD -asm -gKF -poB -gKF -gKF -abk -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(138,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -ryg -sTx -sTx -hZG -tVr -qBx -ryI -egT -kby -xLe -sBR -kgB -kCj -ycX -kCj -kCj -tQZ -lTZ -iwY -vXk -vXk -qZo -sAA -khu -lTZ -aDv -idj -dxq -aBE -jzf -dxq -qIe -fIB -qVI -uzY -qVk -ajF -pVx -uUH -rnD -kiU -kiU -gvy -xkD -bzg -yez -kQW -sEy -bKP -mKH -gKF -gKF -gKF -uYw -uYw -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(139,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -hAD -fpU -wFV -wFV -gJl -yeg -yeg -yeg -wyB -cDE -eIg -rgg -qBr -dhC -hkf -hkf -hkf -lTZ -hgM -hgM -hgM -nUO -pQX -lTZ -lTZ -ajj -qIe -bmG -bmG -apB -bmG -nTR -qVI -qVI -cLx -vhF -wzk -pVx -ucp -rnD -rnD -kiU -kiU -kiU -bzg -beJ -cfm -aXh -gxp -jrj -gKF -gKF -uYw -fww -fvG -xTI -gSd -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(140,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -xgX -fpU -wFV -wFV -wFV -wFV -wFV -jWE -ggb -mXR -htc -wFV -wFV -wFV -wFV -wFV -pWz -pWz -pWz -pWz -mJV -pWz -pWz -lTZ -imm -cBH -bmG -bmG -apB -bmG -dqu -qVI -qVI -bXT -bXT -bXT -bXT -bXT -bXT -bXT -bXT -bXT -bXT -gKF -aOg -mYt -fKj -gKF -gKF -gKF -gKF -fww -ucQ -gYE -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(141,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -tXe -xgX -fpU -wFV -wFV -wFV -wFV -wFV -wFV -wFV -wFV -wFV -wFV -wFV -wFV -wFV -pxc -pxc -pxc -pxc -gvE -cpT -sgn -mYK -hfl -mYK -lOr -kOt -lnp -kOt -sIU -mYK -mYK -hvo -bXT -bXT -bXT -bXT -bXT -bXT -bXT -bXT -bXT -gKF -gKF -gKF -gKF -gKF -gKF -gKF -fww -ucQ -gYE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(142,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -iQn -eLH -tXe -tXe -xgX -fpU -tng -uYw -wFV -wFV -wFV -wFV -wFV -wFV -ubp -tng -uYw -uYw -uYw -hui -tvE -uYw -tng -kAq -pxc -liJ -bdy -liJ -hCU -pbW -dbt -tDG -hCU -liJ -liJ -kAq -tng -nKE -lxi -qgy -uYw -uYw -uYw -tng -bXT -gKF -gKF -gKF -gKF -gKF -uYw -fww -ucQ -gYE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(143,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -iQn -tXe -tXe -mIq -fvG -fvG -fvG -uqd -fpU -uYw -uYw -uYw -qMW -uYw -uYw -uYw -nKE -dvc -nKE -nKE -nKE -kAq -uYw -liJ -tOd -liJ -doM -doM -doM -doM -doM -liJ -uYw -kAq -nKE -nKE -nKE -tzT -nKE -uYw -uYw -uYw -uYw -uYw -uYw -uYw -rTO -wgP -fvG -xTI -uyK -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(144,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -rZL -rZL -rZL -rZL -rZL -iQn -hLJ -hui -bcv -bcv -bcv -bcv -bcv -bcv -bcv -dmo -uYw -uYw -uYw -kAq -uYw -jVZ -lHt -tVt -jev -uYw -uYw -uYw -uYw -uYw -uYw -kAq -uYw -uYw -uYw -dvW -bcv -bcv -bcv -bcv -bcv -bcv -bcv -qgy -vOQ -gYE -rZL -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(145,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -idA -hLJ -xcu -xcu -xcu -xcu -xcu -xcu -xcu -xcu -dYA -nxJ -nxJ -nxJ -nkV -uYw -jVZ -lHt -tVt -jev -uYw -uYw -uYw -uYw -uYw -uYw -pCe -nxJ -nxJ -nxJ -gWF -xcu -xcu -xcu -xcu -xcu -xcu -xcu -xcu -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(146,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -kAq -uYw -uYw -uYw -uYw -uYw -jVZ -lHt -tVt -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kAq -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(147,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wca -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -kAq -uYw -uYw -uYw -uYw -uYw -jVZ -lHt -tVt -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kAq -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(148,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -kAq -uYw -uYw -uYw -uYw -uYw -jVZ -lHt -tVt -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kAq -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(149,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -kAq -uYw -uYw -uYw -uYw -uYw -hLv -lHt -bFr -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kAq -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(150,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -kAq -uYw -uYw -uYw -uYw -uYw -jVZ -lHt -tVt -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kAq -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(151,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -uJj -fvG -fvG -fvG -fvG -fvG -hFW -lHt -aIC -xwu -uqd -fvG -fvG -fvG -fvG -fvG -fvG -fvG -fvG -fvG -uuA -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(152,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -ciz -vlW -rZL -rZL -rZL -rZL -rtT -rtT -rtT -rZL -rZL -rZL -rZL -rZL -rZL -rZL -rZL -rZL -rZL -iQn -xxf -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(153,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -huG -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -lVP -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -rvv -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -voL -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(154,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -ciz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -xxf -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(155,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -ciz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -xxf -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(156,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -ciz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -xxf -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(157,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -ciz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -xxf -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(158,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -ciz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -idA -xxf -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(159,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -ciz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -xxf -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(160,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -ciz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -xxf -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(161,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hLJ -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -ciz -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -xxf -rzI -rzI -rzI -rzI -rzI -rzI -rzI -rzI -vOQ -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(162,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -huG -kMW -pbY -kMW -pbY -kMW -pbY -kMW -pbY -ciz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -xxf -kMW -pbY -kMW -pbY -kMW -pbY -kMW -pbY -voL -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(163,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -kdR -hWt -hWt -hWt -hWt -hWt -hWt -hWt -cGY -frl -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -wvG -vLv -hWt -hWt -hWt -hWt -hWt -hWt -hWt -tXi -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -qVo -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(164,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -rZL -rZL -rtT -rZL -rZL -rZL -uqg -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -uqg -rZL -rZL -rZL -rtT -rZL -rZL -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(165,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(166,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(167,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(168,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(169,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(170,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(171,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(172,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(173,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(174,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(175,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(176,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(177,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(178,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(179,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(180,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(181,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(182,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(183,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(184,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(185,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(186,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(187,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(188,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(189,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(190,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(191,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(192,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(193,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(194,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(195,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(196,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(197,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(198,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(199,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(200,1,3) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} - -(1,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(2,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(3,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(4,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(5,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(6,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(7,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(8,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(9,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(10,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(11,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(12,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(13,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(14,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(15,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(16,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(17,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(18,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(19,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -yad -rtT -lko -kkr -lko -lko -lko -kkr -lko -rtT -yad -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(20,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -ffy -tSD -lRZ -lko -lko -lko -lko -lko -lko -lko -lko -lko -lko -tSD -ixA -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(21,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -xdF -lHt -hCT -lRZ -lRZ -lko -lko -lko -lko -lko -lko -lko -lko -lko -lko -lko -tOt -tGg -rtT -rtT -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(22,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -hnL -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -rpE -lRZ -lRZ -aoe -lRZ -lRZ -lRZ -lko -uwd -uwd -uwd -uwd -uwd -uwd -uwd -lko -lko -lko -lko -vja -lko -lko -raX -xPM -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(23,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fbs -uLo -fnN -lRZ -lRZ -alX -lRZ -lRZ -lRZ -uwd -uwd -uwd -uwd -kkO -sEP -uwd -uwd -uwd -lko -lko -agR -pwm -eDX -lko -iPB -tXe -lCZ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(24,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rlU -tXe -soS -sMe -lRZ -lRZ -fKa -lRZ -fWM -wFh -uwd -uwd -uwd -uwd -sEP -gHL -uwd -uwd -uwd -uwd -vja -ylx -pTK -qOc -lko -ucs -xsf -tXe -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(25,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -lRZ -sMe -lRZ -lRZ -jUt -lRZ -jTO -syq -rWD -rWD -rWD -rWD -rWD -rWD -rWD -rWD -rWD -rWD -unn -unn -unn -jKJ -unn -ucs -lko -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(26,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -lRZ -lRZ -sMe -lRZ -lRZ -nnI -lRZ -xXQ -syq -wMF -dKB -dKB -dKB -dKB -dKB -dKB -dKB -dKB -dKB -unn -iGi -iWD -mDL -unn -cLp -lko -lko -tXe -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(27,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rlU -tXe -tXe -lRZ -lRZ -idI -owd -vTd -aWS -qIT -slD -syq -diy -diy -diy -diy -diy -diy -diy -diy -diy -dKB -unn -dTD -vdj -qmR -xsN -cLp -unn -lko -tXe -tXe -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -gHi -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(28,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -lRZ -lRZ -lRZ -vsn -epq -bzE -nCx -vlw -lAM -syq -diy -qXR -hcf -nxN -fmT -dOk -age -msI -diy -dKB -unn -jVH -pxs -mjf -dTW -ile -unn -lko -lko -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(29,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -lRZ -lRZ -lRZ -hDt -hDt -aOa -jhb -mhF -nlo -qmw -syq -pxV -pDz -rhH -iBO -lfg -iNg -dOH -pDz -pxV -dKB -unn -qNb -efD -cYE -xcJ -bYU -unn -rWD -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(30,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -lRZ -lRZ -lRZ -iEb -iEb -aOa -gpq -tGL -wPV -cUe -syq -diy -qXR -hJM -hDE -iNw -xCY -dOH -pQr -diy -dKB -crB -iuS -mJQ -fmM -iuS -iuS -crB -rWD -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(31,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -idA -tXe -lRZ -lRZ -lRZ -fIe -fIe -aOa -uPh -opv -aEz -ooK -syq -diy -diy -diy -diy -nBW -diy -diy -diy -diy -dKB -crB -bNl -dBS -ejB -pvi -qIQ -crB -jxX -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(32,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -lRZ -lRZ -lRZ -iEq -ixd -aOa -syq -bpU -syq -syq -syq -dKB -dKB -eQE -eQE -wEU -eQE -eQE -dKB -dKB -dKB -crB -kQx -wvM -uly -bWz -waF -crB -jxX -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(33,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -lRZ -lRZ -lRZ -syq -syq -syq -kzS -hGR -kzS -kzS -kzS -bOx -bOx -bOx -vVu -aSG -uOc -bOx -bOx -bOx -syJ -crB -uBS -qQx -iQX -bWz -bMl -crB -jxX -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(34,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -fdX -nIB -nIB -bsZ -bsZ -bOx -fXl -nzV -uIP -kbR -sdI -gWj -oPJ -bPm -dPO -hXE -kOz -hGU -pKx -qoE -nBp -msl -dEo -oZT -vez -rPQ -muc -crB -jxX -lko -fdX -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(35,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -fbs -xzw -vzX -dkR -dkR -lif -fQz -fjQ -ciF -gNL -lXc -dNR -dNR -xYW -cwY -hdb -nWj -xnL -cAd -iep -uCN -uCN -fwE -kRW -lNk -sar -kYu -xES -pZq -oVY -hdo -fVh -mli -xPM -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(36,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -fdX -nIB -nIB -hdp -dij -bOx -owy -fgf -puD -uCN -uCN -idH -tZj -eXb -jze -pDK -ogW -ogW -ogW -vkL -vkL -iuS -gpw -ukn -onG -jZZ -eqd -crB -jxX -lko -fdX -eLH -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(37,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rlU -fdX -nIB -nIB -qIZ -bOr -bOr -ifM -ifM -ifM -fLp -wgO -usv -ifM -ogW -emo -reN -ogW -dKQ -jVc -vkL -wds -vkL -vkL -vkL -vkL -sut -vkL -kei -kei -lko -kkr -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(38,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -eLH -biw -nIB -nIB -hXy -bOr -hpO -hoi -bhB -fMy -fue -izW -dgc -ifM -wvk -iPs -qar -qZn -toA -oEU -vkL -kJY -sWJ -mKp -vkL -bon -eVG -bTN -tsn -kei -lko -qYn -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(39,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -uYw -stv -qPH -rox -sqc -uZW -mmt -gWQ -qbt -qNW -aCD -qNW -ohz -fOr -qPA -erN -sSC -cYq -jHh -hfO -vkL -waR -bWr -pgW -egt -nTD -xQy -kZr -hpF -kei -lko -oFU -lko -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(40,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -rpE -qMW -uYw -uYw -kXa -aif -aAp -rsp -mmt -gWQ -tcS -eJi -cIZ -jAF -tLp -iQp -rmB -arG -lWc -rhk -dCO -aMI -vkL -sdG -iyn -uXb -vkL -wIy -pHN -mLa -bpK -kei -lko -oFU -lko -lko -lko -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(41,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -aTh -tXe -tXe -vDB -dDg -uYw -pJv -bYb -oOW -uWs -amA -gWQ -oXV -qNW -aCD -qNW -mZX -sQk -obq -vZQ -qnS -arU -eVa -uWO -arU -arU -arU -arU -arU -arU -arU -mFq -lZU -lRN -lRN -pEX -lRN -lRN -lko -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(42,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -tXe -tXe -tXe -vDB -nIB -nIB -bqG -nIB -nIB -uJF -aEy -aBJ -pBJ -vKK -vUU -sWH -plb -cNA -ifM -moM -dFh -wLd -arU -jJY -vBj -dUn -afQ -mOl -vqg -ast -dnx -jfh -was -dIX -uTy -eyD -huK -rtV -lRN -lko -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(43,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -nIB -rtT -rtT -nIB -tXe -tXe -qMW -uYw -uYw -sqy -ceo -htX -sFe -lrn -vNO -bOr -bOr -bOr -bOr -bOr -bOr -bOr -bOr -ifM -lPG -dFh -pAw -jal -puC -tDu -eKz -wgn -eKz -agI -hbG -lfm -vMe -sAM -mnP -uTy -gCe -mUp -nPN -lRN -lko -uYw -uYw -uYw -uYw -uYw -uYw -uYw -lko -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(44,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -nIB -nIB -rtT -rtT -nIB -xsf -uYw -vDB -hwE -hwE -nIB -eoV -lrU -nIB -dnl -oNZ -oNZ -uiv -oAj -jfy -mDl -nLn -dys -tep -pel -opR -dFh -pAw -bzi -otl -pLy -eDo -mPm -tdx -kvW -srr -bPC -arU -kUF -mhO -uTy -dzl -cvX -lYk -lRN -lko -uph -uph -uph -uph -uph -uph -uph -lko -lko -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(45,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -nIB -nIB -nIB -kkr -uYw -nIB -kkr -vDB -hwE -aVb -uYw -nIB -nIB -nIB -nIB -kXd -fUV -cPC -vbj -pqG -pqG -fVm -nQr -wel -bBT -ltp -aVs -nHZ -pAw -apQ -otl -pLy -fCW -oCI -tta -rFL -uIE -vVN -arU -eMW -iuB -wHL -lJb -oyb -xrn -lRN -lko -nxI -nxI -nxI -nxI -nxI -nxI -nxI -lko -lko -lko -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(46,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nIB -nIB -nIB -nIB -nIB -nIB -nIB -nIB -nIB -sak -pJv -nIB -nIB -nIB -ndf -pgg -lYg -hil -uVw -uVw -uVw -uVw -uVw -uVw -cAJ -nTN -lOd -cIM -pPr -arU -aul -iNb -sdy -fpo -mdE -sha -pHG -oOO -arU -eoJ -mho -mho -mho -mho -mho -gfi -lko -nxI -sjA -vgO -jYU -vgO -sjA -nxI -lko -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(47,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -tXe -nIB -bsZ -bsZ -bsZ -bsZ -bsZ -bsZ -bsZ -nIB -nIB -nIB -nIB -nIB -oWv -ieD -pgg -oNZ -hyW -sfZ -sfZ -sfZ -fXJ -lYM -iLM -doP -qRo -daJ -cUn -fRK -arU -arU -arU -arU -arU -arU -arU -arU -arU -arU -qin -nrO -qPa -qPa -puf -tPq -gfi -lko -sjA -sjA -vpp -rky -iDb -sjA -sjA -lko -lko -lko -xsf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(48,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -jYC -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nIB -bsZ -lAs -qoF -cuf -qBW -xae -bsZ -bsZ -bsZ -bsZ -bsZ -bsZ -oWv -wOU -qYz -qgl -qgl -qgl -qgl -qgl -qgl -qgl -qgl -qgl -qgl -ivL -pam -pkl -rPG -awb -bKK -pxY -xdC -eRo -sOJ -lIk -bOh -eRo -evy -rCE -uNx -hsm -bVF -vUv -gfi -lko -sjA -eVU -psD -rEh -sKN -uav -sjA -lko -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(49,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -soS -nIB -bsZ -lwp -dYs -biR -myX -xrL -gGJ -rLu -fsc -hcr -icI -vHe -oWv -udI -dRc -qgl -qgl -yev -nlX -cdM -rwM -lmb -lMW -uBf -qgl -hiV -cAO -iTz -rEG -yha -qHV -oRR -aFE -oEH -diN -cPI -bKT -eRo -eoJ -mho -mho -mho -mho -mho -gfi -lko -sjA -wIm -fuH -xIp -pmX -eJr -sjA -lko -lko -fdX -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(50,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nIB -bsZ -gcc -fQA -oFg -dcr -grn -xOs -oUx -dWC -nXw -xYX -iJE -oWv -oKJ -sTF -qgl -qgl -dbq -moO -moO -xSA -dBI -eqx -uHH -sfO -eMv -nEZ -pAw -iHU -aFW -aoq -kAo -aFE -oEH -hHY -bKp -rNS -eRo -sSD -uQx -suY -jfY -rvk -vit -vdz -lko -sjA -mqx -gYk -fWS -jHX -aks -sjA -lko -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(51,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nIB -bsZ -kJJ -mQV -vmq -ukZ -fpv -hmP -spi -ieG -igF -cRd -ier -oWv -oKJ -fkQ -qgl -qgl -sFz -bKY -uwI -jvu -iQl -qtU -tnr -qgl -bYl -dFh -eel -ifd -jsH -xnJ -kKT -aex -eRo -mZn -lUi -bHa -eRo -jvL -kqq -fki -bAu -pcQ -vWt -vdz -lko -sjA -vFE -hvR -tUx -mvo -vrd -sjA -lko -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -qgA -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(52,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nIB -bsZ -voP -olu -syv -vek -rQV -oWv -rZR -dfO -qBf -iJH -fpP -oWv -oKJ -fkQ -qgl -qgl -qgl -qgl -qgl -kBW -aLB -qgl -qgl -qgl -srX -adI -swn -lxd -usU -tVj -wjl -ulW -dAX -rrl -oqr -cPY -vPw -cYH -xzF -fki -tBd -qDl -nEz -vdz -lko -sjA -sVe -bAr -fcj -qBP -qBP -sjA -lko -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(53,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nIB -bsZ -oWv -oWv -oWv -kek -oWv -oWv -pMp -dAw -eeI -hCw -pMp -oWv -oWv -urK -nwQ -uMn -gEb -oCy -paa -oVg -jce -qWD -xFy -nwQ -wYj -hMX -yke -ifd -wvT -fLB -xxb -pNm -eRo -eek -lPp -cma -eRo -pdI -jwl -fki -rdf -ixu -pMW -vdz -lko -sjA -wty -jqv -bqs -pQz -pQz -sjA -lko -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(54,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nIB -bsZ -lqC -jeX -qNt -aUt -hZo -fYk -hZo -hZo -tHP -duz -flz -oWv -mwJ -fkQ -nwQ -vjn -cpV -vqO -qKx -cSW -uiB -xZk -bAz -sdo -qOz -dFh -gAN -ifd -ifd -fNb -oQN -rPG -eRo -eRo -eRo -eRo -eRo -qju -tlu -tlu -tlu -tlu -tlu -vdz -lko -sjA -kNr -onY -lob -mUf -kNJ -sjA -lko -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(55,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nIB -bsZ -mui -hPR -hLf -mdB -etl -vnL -etl -etl -ove -ggO -ggO -bAt -ggO -bxZ -nwQ -akx -tbc -nwR -oUI -nhh -pYq -iUC -mTi -kMA -esi -qiF -tqe -rVB -eYD -bEP -qWi -qsC -wUT -pGT -ldY -bWL -mVa -bIS -dLD -bGv -hUE -dWf -hZL -qDN -qaX -iWG -uWa -uBj -rKu -pmF -gPV -sjA -lko -lko -fdX -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(56,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nIB -bsZ -bsZ -oWv -oWv -rPn -oWv -oWv -oWv -oWv -nVP -oWv -oWv -oWv -hZo -qkx -nwQ -jUl -ihA -jVC -mxK -rBY -dxQ -ses -gSm -nwQ -riB -cAO -uaM -qbG -gWU -sRc -mqc -jvi -nbW -oJt -wkM -dwz -nbW -fgG -jrz -nlq -pqN -lUK -omF -lwK -gLt -sjA -vgO -vgO -vgO -sjA -iMM -sjA -lko -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(57,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nIB -nIB -bsZ -dLj -eqZ -hZo -oWv -myN -tKy -hcZ -ubk -nXw -cHP -oWv -koo -qkx -nwQ -bEx -iuE -iuE -iuE -iuE -uxm -iuE -iuE -iuE -tgK -prJ -sEs -djR -djR -nIx -djR -djR -pWm -lCk -djR -djR -pWm -ydV -djR -djR -ntL -diZ -djR -djR -jET -sjA -tyL -goM -qOS -vTp -hPx -sjA -lko -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(58,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nIB -nIB -bsZ -gXp -duz -hZo -oWv -jkg -qtP -imJ -bQq -kDb -oWv -oWv -hZo -qkx -pmT -qsm -iuE -mIF -iZu -ivT -nVB -amR -sVh -iRv -kdy -std -nun -djR -jVE -lFa -dxo -djR -alI -nNl -ora -djR -aUy -fFf -sFu -djR -cKE -nNl -oPB -djR -jET -sjA -ugG -ugG -hBn -kEe -deM -sjA -lko -lko -lko -xsf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(59,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -soS -nIB -nIB -bsZ -bsZ -krN -hZo -oWv -mUc -ohs -elJ -hZy -maZ -oWv -oKJ -hZo -qkx -jEJ -eTL -iuE -rRP -uHE -qGC -tTc -wYZ -dLa -rqs -vkR -nSV -brG -pDM -pEh -nNl -puV -djR -gWA -kWo -nsA -bwr -gWA -mOc -nUJ -djR -deG -pFs -uIA -djR -jET -btc -btc -btc -etx -btc -btc -btc -lko -lko -lko -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(60,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -nIB -nIB -bsZ -wVI -duz -oWv -oWv -bsZ -bsZ -bsZ -bsZ -bsZ -kYH -heV -wjm -tMe -iIk -soZ -iJK -syK -oxc -lxQ -kgX -vNw -ecA -tPK -lLr -cLE -fHS -piA -ffF -heG -djR -djR -djR -nCP -evE -djR -djR -ecJ -djR -djR -djR -wOw -djR -jET -btc -jIa -jIa -ybU -jIa -jIa -btc -lko -lko -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(61,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -tXe -nIB -nIB -bsZ -flB -hZo -jse -ylw -bsZ -vWo -nuJ -nuJ -dSW -nuJ -nUv -uGv -tcy -ftU -iuE -iUO -ucf -jMZ -eso -eEX -pGD -mNS -oKB -mPI -fuP -djR -lhY -ngh -voa -txt -kSs -uwY -qgs -jpD -jDr -hem -qgs -vsz -ntg -ebF -qgs -udP -kPk -kPk -kPk -lko -qpl -lko -lko -lko -lko -lko -tXe -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(62,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -nIB -bsZ -bsZ -bsZ -bsZ -bsZ -bsZ -bsZ -bsZ -bsZ -pag -dDh -dBq -dDh -dDh -ndv -iuE -iuE -iuE -iuE -tCf -igs -wOz -iuE -vre -veY -qwT -djR -gaJ -swy -pYK -uEk -lzk -qgs -fyd -kCZ -xBb -pky -qgs -qgs -qgs -fyd -afE -dJF -emO -mJw -kPk -lko -cNP -ulC -iMa -jsV -lko -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(63,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -cBU -tXe -nIB -nIB -nIB -nIB -oWv -vMR -ocv -rpP -plU -vnm -dDh -rIu -vDY -jQa -vBp -eRz -nUh -tge -oWv -rOx -jUv -tpb -sez -rBL -vre -nHJ -bvC -sDk -hCv -auN -jTw -kFB -ejo -xcZ -bRQ -mEX -hoQ -jLr -sIB -pfe -deI -sIB -rAK -wsR -ewh -qlG -xZx -eGR -not -lko -lko -lko -lko -tXe -vlW -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(64,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -tXe -nIB -nIB -oWv -nww -bfG -qBY -gzA -qqh -dDh -cSI -knv -vQU -dDh -eRz -hZo -iau -oWv -ltu -qPx -qPx -qPx -xsB -tDU -nFp -yhr -pXF -diT -cjl -qei -aRB -djR -rau -oUL -fJk -fJk -fJk -fJk -vvX -cbr -qgs -fSv -dJF -emY -jlp -kPk -lko -lko -lko -lko -tXe -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(65,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -cBU -tXe -myd -cuY -sLg -sLg -sLg -sLg -oWv -oWv -dDh -tYr -hNn -kxh -dDh -eRz -hZo -rho -oWv -iMu -qPx -byr -qPx -nUw -vre -vYc -oTB -djR -pNR -djR -dJA -eDb -djR -noH -nSH -vIj -sxZ -omW -qwz -dJF -iGg -uim -srx -dJF -dJF -dJF -kPk -lko -lko -lko -tXe -tXe -vlW -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(66,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -soS -myd -cuY -jou -sLg -bXs -sLg -xiE -krN -dDh -odA -msq -cLG -vBp -pge -aKG -hZo -oWv -daS -mmx -qPx -cBM -qAY -snP -hRZ -psh -eLz -aEL -tZc -dGT -xIQ -udP -sFf -gap -wwo -aGs -eYS -uiE -dJF -dJF -dJF -dJF -dJF -hsq -leB -lko -lko -tng -bYu -tXe -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(67,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -myd -cuY -wmB -aIT -jwZ -ruk -kfH -hKk -dDh -dDh -dDh -dDh -dDh -eKa -hLw -xVg -xhN -qQI -sMf -gHE -cRX -lWK -vHY -bMA -uHd -whR -pAX -edh -hhl -gLp -udP -rRK -gOv -aga -oCZ -kPx -spO -dJF -aAU -sGW -xvr -dJF -jFH -dsP -lko -uYw -uYw -wZR -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(68,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -myd -cuY -sLg -sLg -nAk -sLg -weN -kZK -kZK -kZK -kZK -kZK -kZK -fzb -oOL -gyQ -oWv -jIH -wxY -oXK -oXK -kLY -uYB -urE -eqg -dyp -rnQ -mtJ -nKn -mhL -dQl -hGe -wvO -wUo -oCa -qZf -aPn -vCV -cdn -dzn -rqX -xrb -eaN -vYu -wPo -uYw -uYw -wZR -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(69,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -myd -cuY -qTi -mKd -flf -sLg -heJ -fzF -qRd -igy -eKa -mOK -mOK -iWs -eRz -mzu -oWv -ltP -ixK -pIT -mMI -lla -pZP -aGQ -xFT -gRg -crE -dNY -vfQ -pRh -udP -aaR -pdt -tMD -pBY -ogA -otS -dJF -vZB -vZB -sIg -mqs -dsP -lko -oFU -eQC -eQC -wZR -nmN -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(70,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -myd -cuY -qgg -rqr -cCu -sLg -sLg -cvN -cvN -cvN -iEy -cvN -cvN -cvN -ngU -cvN -kTh -kTh -kTh -kTh -kTh -kTh -uZz -qZR -wHP -qZj -eKd -eKd -eKd -eKd -fOi -xfi -xfi -xfi -xfi -xfi -xfi -xfi -xfi -xfi -xfi -xfi -dsP -eCQ -gOA -pZz -pZz -pZz -afj -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(71,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -tXe -myd -cuY -sLq -eUs -cCA -vGb -sLg -oQQ -thT -kOo -plR -pdw -cvN -bsR -lYo -irA -kTh -dEB -dEB -dEB -dEB -dEB -kTh -cbR -jUp -kgG -eKd -diR -diR -diR -aWk -lci -lci -lci -lci -lci -aWk -jIv -eKN -mwj -brW -tPH -eCQ -eCQ -uYw -ePH -ePH -uYw -eFH -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(72,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -myd -cuY -rKU -tWs -htJ -mEd -sLg -mAP -aCs -kOo -fhY -eJo -cvN -pgC -lYo -kOo -kTh -dEB -dEB -dEB -dEB -dEB -xqh -oHV -fmm -aoX -uQt -sef -diR -diR -aWk -fwa -fwa -opX -opX -opX -aWk -wtD -nUL -mwj -brW -xls -eCQ -eCQ -oyg -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(73,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -eLH -myd -cuY -hyD -sgV -oYf -nYL -sLg -mAP -fui -mXT -plR -sFX -cvN -weY -lYo -fJZ -kTh -dEB -dEB -dEB -dEB -dEB -xqh -gTB -lFA -aIH -uQt -sGv -lui -diR -aWk -wlw -kLe -gPH -mfq -idp -cXU -qHR -nUL -kHK -brW -brW -eCQ -eCQ -eCQ -uYw -uYw -uYw -wZR -gSd -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(74,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -tXe -myd -cuY -cuY -cuY -cuY -sLg -sLg -mAW -iOH -kaz -gbc -sFX -cvN -tnL -lYo -shf -kTh -dEB -dEB -dEB -dEB -dEB -xqh -xSF -oUS -dhl -uQt -vGv -oad -xEM -aWk -ljL -gAu -fhs -jsq -lPd -aWk -sDd -llO -mwj -brW -pGI -eCQ -eCQ -eCQ -eCQ -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(75,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -shR -soS -pAT -pAT -pAT -pAT -pAT -hFK -mgX -kxi -jHY -jFp -sFb -cvN -cvN -cvN -ngU -cvN -kTh -dEB -dEB -dEB -dEB -dEB -kTh -hKe -mAC -bqO -tTe -lGb -aQb -gai -lGA -iwE -tQH -xOg -xOg -erR -aWk -mwj -mwj -mwj -brW -fwr -kHr -eCQ -eCQ -eCQ -eCQ -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(76,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -tXe -tbn -soN -nsa -bRd -pAT -gOK -gOK -gOK -gOK -gFi -gbc -cvN -rcV -ewl -lYo -ilO -kTh -kTh -kTh -kTh -kTh -kTh -kTh -vEX -ryR -dIP -eKd -fNa -vQW -xLQ -aWk -fVH -aPS -djt -nxx -fVH -aWk -bZR -mwj -hBs -brW -rKH -kHr -svc -tZZ -eCQ -eCQ -abk -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(77,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -tXe -jwe -giU -qqH -qqH -mcz -lHU -lHU -wPB -baW -avL -coM -lfN -aoG -aoG -vPI -jPZ -ilR -wuG -drK -axO -axO -wuG -ptD -ikB -frK -kuy -eKd -eKd -eKd -eKd -aWk -aWk -aWk -aWk -aWk -aWk -aWk -exA -fWb -aVQ -brW -brW -brW -brW -nVh -eCQ -eCQ -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(78,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -tXe -pAT -lrw -bnr -jmP -pAT -dng -dng -lQY -wjv -wNN -mfL -cvN -xwR -xwR -cbm -tix -cvN -qNQ -ibw -cTR -vUu -vUu -alJ -qtY -tji -eOE -yhD -fED -fED -fED -fED -fED -fED -fED -fWb -fED -fED -xHc -mwj -uqL -brW -brW -brW -brW -cSz -eCQ -eCQ -uYw -wZR -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(79,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -tXe -pAT -pAT -pAT -pAT -pAT -pAT -pAT -cvN -cvN -cvN -hjS -cvN -cvN -cvN -cvN -pph -stL -stL -fuX -stL -stL -stL -stL -fJi -iOt -aDa -alJ -ppx -leW -mls -kDz -mls -vhZ -bHl -mwj -pQo -brW -cau -mwj -knI -brW -daC -owY -uDo -btU -eCQ -eCQ -uYw -bYu -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(80,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -pAT -pAT -pAT -pAT -pAT -pAT -pAT -cvN -fyw -gVS -hJE -cBL -cjX -aNv -xjr -dVP -stL -qFH -etA -djN -xjE -fhX -stL -nKo -mDg -lKS -alJ -oJs -oJs -oJs -oJs -oJs -oJs -oJs -oJs -mwj -qMa -mwj -mwj -mwj -mwj -mwj -eCQ -eCQ -eCQ -eCQ -eCQ -eCQ -eCQ -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(81,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -oCu -dfu -dfu -dfu -dfu -eBA -pAT -fCG -gOK -lYo -lun -azX -sgD -eke -stL -stL -stL -wxi -vPO -iXp -jKd -fIL -stL -mMT -kyw -nmb -kYs -oJs -uXp -uXp -emC -uXp -uXp -peP -oJs -jyX -brW -gcK -mwj -mGV -iTp -tAA -eCQ -aqA -ixc -ixc -ixc -ixc -cWd -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(82,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -oCu -cKZ -rdw -iHX -cJD -pmm -rQI -iko -lvi -jVV -hZF -gVY -jYm -baB -stL -ygM -vnV -sNB -pqE -xIG -wiz -pkj -stL -ncQ -kyw -pxk -dPt -oJs -pjA -uXp -dIu -vdV -uXp -eXP -oJs -bgn -brW -brW -cKU -hbS -mPt -gEF -ulw -vQb -tIV -efQ -uVi -okx -cWd -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(83,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -oCu -dfu -dfu -dfu -dfu -eBA -pAT -ojv -bBQ -lYo -vdJ -vcg -ekG -oZb -hSq -kkN -nNm -sqF -eVO -mhV -eps -wfw -ajL -sdE -dNs -nmb -oWe -oJs -aYE -uXp -nvl -cZo -uXp -bcK -oJs -vAV -brW -ehw -mwj -lGY -iCK -nhI -eCQ -aqA -ixc -ixc -ixc -ixc -cWd -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(84,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -tbn -pAT -pAT -pAT -pAT -pAT -pAT -aqb -lvi -vaF -erA -iPl -skv -iPl -stL -nDt -tfl -seA -knP -irc -vjJ -rhJ -stL -hzn -kyw -nmb -hED -oJs -oJs -dfI -xYw -dWy -fYI -oJs -oJs -pWR -brW -uRg -mwj -fno -hux -gYu -eCQ -eCQ -eCQ -eCQ -eCQ -eCQ -hgZ -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(85,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -gEO -rfi -rfi -rfi -rfi -ibU -pAT -avQ -lvi -iCD -pkq -iPl -lsE -odp -stL -stL -stL -stL -stL -stL -bDC -stL -stL -nsB -rjb -daE -alJ -oJs -oJs -oJs -eXv -rbz -oJs -oJs -oJs -oAD -brW -fYd -mwj -kaB -hyo -cEw -eCQ -pkM -qjj -qjj -qjj -qjj -ugd -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(86,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -gEO -pYM -xnh -bNz -ifv -gFM -xND -tWh -lvi -vAf -moh -iPl -jpo -dra -stL -iuZ -fCB -pku -fCB -doJ -yeM -dEa -stL -fiz -iOt -xoZ -oJs -oJs -eZy -hDn -ubH -kAZ -dTA -eZy -oJs -uDo -brW -fYd -mwj -ydo -hux -tDm -vTn -wMn -ikH -ghN -rGL -lwY -ugd -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(87,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -gEO -rfi -rfi -rfi -rfi -ibU -pAT -ojv -lvi -qvA -dwQ -tQD -jpS -emb -stL -unu -djA -qWS -oam -pjF -rSx -kAi -stL -lkB -pTA -pRv -oJs -oTR -kOF -npL -udy -vGm -bni -tYX -oJs -btU -brW -jNq -mwj -pvD -cZO -nwE -eCQ -pkM -qjj -qjj -qjj -qjj -ugd -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(88,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -tbn -pAT -pAT -pAT -pAT -pAT -pAT -kLx -lvi -imH -mGI -iPl -psR -oOB -stL -dfs -sKT -iKp -sKT -iKp -mjY -aSg -stL -dpT -oJA -fVM -xsz -uTl -bIW -qBg -kiD -kiD -omr -sTO -oJs -fUK -brW -uRg -mwj -iqL -myh -gYu -eCQ -eCQ -eCQ -eCQ -eCQ -eCQ -hgZ -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(89,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -nOP -oSP -oSP -oSP -oSP -oqd -pAT -oYZ -lvi -iBt -lpB -iPl -aFi -iPl -stL -dDG -egJ -xBk -pbz -pBL -mwi -tuB -stL -kgs -bEn -xXy -oJs -jfo -aHV -eqX -vSw -uwh -uaK -qKJ -oJs -kzn -brW -nMX -mwj -rDj -ftP -fNB -eCQ -xyL -kbB -kbB -kbB -kbB -vBM -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(90,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -nOP -rgx -nZw -oPP -fgX -leO -laP -ljf -lvi -lYo -sPO -cbC -wVw -wqq -aTK -aTK -aTK -aTK -aTK -aTK -aTK -aTK -aTK -wsS -mCU -evH -oJs -oJs -oJs -oJs -oJs -oJs -tGH -oJs -oJs -vVg -eZB -qpQ -vvs -vsO -fMU -vGR -lyw -rIQ -gKR -ndG -ruK -xic -vBM -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(91,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -nOP -oSP -oSP -oSP -oSP -oqd -pAT -dJh -gOK -lYo -iiG -sEt -fFB -wOe -aTK -okd -iDE -lDK -bBp -lTx -hPc -oxh -aTK -kgs -xLq -hbb -slm -gVl -bPD -gYN -oaw -tfa -nEu -aQi -wXZ -vVg -fMi -oiW -mwj -uqy -jtx -xDU -eCQ -xyL -kbB -kbB -kbB -kbB -vBM -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(92,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -pAT -pAT -pAT -pAT -pAT -pAT -pAT -cvN -ies -oEp -gJw -cbC -fgR -onv -aTK -pDN -ait -ckp -kcS -ikb -ikb -fYw -aTK -kgs -qik -wOo -slm -gVl -gAJ -mYX -iGm -dvx -ybV -sDn -apa -cJL -ftI -ftg -mwj -mwj -eCQ -eCQ -eCQ -eCQ -eCQ -eCQ -eCQ -eCQ -eCQ -tXe -gSd -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(93,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -rpE -rtT -rtT -rtT -rtT -idA -soS -pAT -pAT -pAT -kOo -rCc -rCc -rCc -cvN -cvN -tSs -cvN -cbC -yfF -wmh -aTK -sRj -bcy -aDY -lgy -rNU -dGC -usG -aTK -ayu -qIa -bFT -slm -gVl -jXN -hcP -ssm -wWm -sKD -xhu -jPd -slm -enW -tBP -hBv -hBv -rWe -kaL -kaL -wQs -jiv -wop -wop -tXe -tXe -tXe -atx -rpE -rpE -rpE -rpE -rpE -rpE -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(94,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -xdF -ixA -lCZ -aTh -yad -lCZ -aTh -xdF -tSD -pAT -pAT -bsH -rzT -rbs -jAH -amj -gXZ -jSj -kOo -cbC -aPH -cbC -aTK -wzw -rUn -aDY -lgy -tkt -wDS -wXc -aTK -fiz -aAD -xoZ -slm -gVl -clw -pZi -que -vaO -vaO -njA -vaO -slm -bnQ -bnQ -bnQ -bnQ -jVT -xLy -ecL -ecL -ihX -wop -wop -tSD -fOP -tSD -tSD -tSD -tSD -fOP -tSD -tSD -tSD -ixA -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(95,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -ffy -hCT -tOt -tSD -tSD -vMm -tSD -tSD -hCT -uYw -pAT -pAT -oPF -con -hDr -pqP -cvN -kjL -uIG -gOK -gOK -gbc -gOK -vJV -ikb -lSt -tIc -aPv -ieJ -ieJ -cDA -aTK -iwz -qIa -wWr -imY -imY -imY -imY -imY -bnQ -sIW -lgo -dxd -ert -fJV -bLD -cKH -bnQ -pvl -ecL -sCB -sCB -ihX -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -dnB -uWB -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(96,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -pAT -pAT -irA -ujN -rJW -xkX -cvN -gRB -qLK -jrF -jbK -mNz -mSy -aTK -aJJ -uqE -cwO -mYR -nUq -ccN -lUz -aTK -gPg -sWc -uZq -sVB -ouJ -kkx -yeA -ijv -bnQ -pKJ -hXU -qMT -tIK -cdz -kJA -pmV -bnQ -vNt -gky -fuh -fGt -ihX -wop -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(97,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -pAT -pAT -cOz -ujN -wNJ -wNJ -wNJ -wNJ -wNJ -tMb -tMb -vED -tMb -aTK -uQI -pLH -aTK -aTK -aTK -aTK -aTK -aTK -wsS -uDK -sMw -gzF -duB -kyz -anr -puL -bnQ -gTT -eJT -bce -rDP -vqc -scf -wIz -bnQ -gHP -gHP -gHP -gHP -ihX -wop -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(98,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -oAy -hGM -uYw -uYw -uYw -uYw -uYw -uYw -uYw -nKE -pAT -aNs -pgC -ujN -wNJ -jXl -tdi -gbE -wNJ -tXM -kaS -rjh -pnx -fBs -gku -jhq -eMM -bXn -iUf -vut -ePs -coP -ngE -gGx -thx -uYL -iNN -gZs -gZs -xWz -bnQ -qch -tco -vDK -dHv -lFj -qWy -cLV -bnQ -vKg -nsd -mIT -gHP -ihX -wop -wop -wop -abk -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wZR -lCZ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(99,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -coH -uYw -uYw -uYw -uYw -uYw -uYw -uYw -vSo -pAT -saO -jwX -ujN -wNJ -hQO -weF -dlr -wNJ -pgt -wCk -czG -wuP -weD -bqW -xim -bWo -idD -gVb -pUW -dYW -coP -cHZ -awW -tAW -sVB -syi -xDA -pjW -cfL -bnQ -nRf -pUG -lpg -rDP -sbs -mxv -wIz -bnQ -qfs -iyA -uoK -gHP -ihX -wop -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tOt -tGg -gSd -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(100,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -aTh -coH -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -pAT -qbF -xqA -qpM -wNJ -wfJ -acV -kGw -wNJ -ayD -hzR -vuA -pvO -nYj -vuA -mSl -eMM -bXn -hyA -sat -xPF -coP -aGj -mse -vsB -qgo -qgo -qgo -qgo -qgo -bnQ -uJR -iTH -eKw -kOi -ijP -akZ -mBp -bnQ -oUp -med -lbF -gHP -ihX -wop -eap -wop -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(101,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rXt -lSK -hCT -uYw -uYw -uYw -uYw -uYw -uYw -pAT -pAT -pAT -ujN -ups -pCd -wNJ -smx -rTD -hhg -wNJ -ayD -hzR -oqA -vcH -gyq -gyq -gUO -jEl -coP -coP -coP -coP -coP -pEw -xTl -vBw -qgo -tfs -kJO -qMb -qfK -bnQ -oGC -wsu -eqc -vls -kMu -fbM -cKH -bnQ -oNi -bvK -uYU -gHP -vxW -wop -wop -wop -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(102,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -wWV -wWV -gLV -wNJ -wNJ -wNJ -mxf -vnr -aHo -wNJ -pgt -rQg -oqA -hKb -gyq -gyq -gUO -jVo -psd -xuw -iAD -nlW -gvD -fnv -xoa -wib -lGO -jIQ -aWu -lPV -rev -bnQ -dfK -xLL -dfK -dfK -dfK -dfK -dfK -bnQ -iGy -kVd -kVd -gHP -ouq -rXn -wop -wop -wop -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(103,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -wWV -qtq -nvX -wNJ -mGe -hYm -xFp -ugQ -uUK -wNJ -auE -hzR -kmK -lTI -kgk -kgk -uFe -lDX -cwu -gdN -fqh -gdN -gdN -qda -eiO -lAT -qgo -oQn -wjk -bSE -aJD -dNz -hfc -aCl -rYJ -yly -xQE -vRg -aCp -iZs -tVm -tMU -fZM -dNz -jmN -lln -sTL -nsm -wop -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(104,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -ufa -ufa -nvX -wNJ -klJ -xsT -xrW -uvE -vME -oQE -sYX -ekc -aLS -hmT -ygp -pLl -nsl -axZ -uBB -pJy -aTI -nuE -nuE -ozl -uMF -aZX -ibQ -ian -dBG -ldQ -sgv -dNz -mQl -cHR -lCb -aYX -cfQ -aJv -bKi -gTN -uNn -hdN -mjB -daa -kPc -iWF -ecL -fwh -qoq -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(105,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -xEA -ncz -nvX -wNJ -wod -qkA -uRI -tBy -vyI -wNJ -hhP -fmq -ctJ -qNK -kmO -kxv -kVi -vuI -qNK -aCM -iAD -oaH -cgD -fnv -suy -uBb -giS -dyT -qYU -xyq -giS -dNz -mby -wLC -rcN -dVD -wJA -ddI -bmB -jWw -cdG -wJA -xpM -dNz -rMx -peH -ecL -kLd -glU -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(106,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rXt -akj -uYw -uYw -uYw -uYw -uYw -vSo -wWV -wWV -jWL -jWL -geL -wNJ -usl -epF -nSa -lts -rsv -wNJ -oxG -oxG -wjj -vXm -oxG -nNj -qYS -eFv -xtX -vbi -eFv -eFv -obe -sYq -xeO -rUl -dIp -wGZ -cvV -vSg -pCG -dNz -tEi -sIl -gNW -gNW -gNW -gNW -kjw -gNW -gNW -gNW -gNW -qSx -lrY -bso -szJ -igz -glU -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -sZT -puo -gSd -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(107,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -sXd -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -czJ -dmd -nvX -wNJ -wNJ -wNJ -tjC -tfe -wNJ -wNJ -owB -fOg -uvV -oFb -oxG -pYT -aCw -eFv -tRI -oIh -oVS -ybQ -eFv -bNJ -wUq -nlc -sxF -vbh -qVf -wWk -ksI -hHv -fIg -jjV -gNW -okg -wNF -wNF -ncM -qdg -wNF -djH -cZc -qSx -cNo -jJA -ecL -ppn -bJC -wop -wop -abk -uYw -uYw -uYw -uYw -uYw -wZR -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -nvI -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(108,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -lhg -akj -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -ufa -ufa -nvX -lYw -fZy -nsI -gUV -mcO -dBw -gzs -oZh -jms -rBA -jrD -oxG -apm -fef -eFv -oto -uNG -edi -rhi -eFv -ucY -xTl -mfx -bBL -atj -vJQ -bOt -tud -swD -xZd -gaA -gNW -vUQ -gMC -kWG -fZL -byi -kWG -qeg -tST -qSx -xiV -jJA -ecL -fwh -cmk -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(109,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -sXd -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -qJj -dmd -nvX -sUC -fZy -nOL -gUV -mcO -xzY -gzs -cdk -fOO -uvJ -xNg -oxG -saI -knz -eFv -hvZ -pnD -ijx -syx -eFv -top -vcA -wpk -dIp -nSA -biG -rIc -wPp -dNz -sDo -gaA -gNW -bcI -uIc -gKz -fZL -aIU -aIU -fyN -kcn -qSx -tkY -rhy -eFZ -fwh -rYW -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -wZR -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(110,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rXt -akj -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -wWV -gVw -nvX -eEQ -fZy -oYh -gUV -lel -iMy -gzs -aKt -cDS -toD -qJo -oxG -nbP -xJH -eFv -sKH -vbi -vbi -vbi -eFv -fIJ -vcA -aZX -fIj -tiA -dgh -aRv -arb -fIj -vlx -hnx -gNW -uoZ -jPh -uGS -iNo -aIU -aIU -fyN -gPJ -qSx -fns -jmN -eVI -lty -wop -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -dnB -uWB -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(111,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -coH -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -jWL -mRL -jWL -fZy -qfk -ovG -soV -geU -gzs -oku -rrZ -tvu -dwo -oxG -cxA -eFd -wPL -ebG -fhh -opF -eCe -sfH -nSY -vcA -aZX -fIj -gnL -dCx -cGg -pqK -mBz -cBf -ibv -gNW -ipu -byi -qeg -gbC -aIU -aIU -fyN -fIG -qSx -jVT -nwj -jVT -wop -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wZR -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(112,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -nHd -kda -kqT -fZy -twY -jVf -eCo -dmw -gzs -wjj -wjj -wjj -gor -oxG -rJu -twx -kmZ -gSC -eDM -lxg -cWt -sfH -veV -sXI -hlc -nbG -hfH -egW -cRT -wfW -vHa -gET -izl -gNW -bcI -fGI -aIU -gbC -aIU -aIU -fyN -seF -qSx -bXc -jmN -ihM -nPA -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(113,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -myD -imi -iqy -iir -yhF -bvt -fCA -aGi -fFC -aND -aND -aND -ctD -cEx -kyf -lTT -bev -eNk -eNk -eNk -eNk -eNk -xQZ -rBp -vaJ -kdA -hba -nfJ -qjc -bih -iCF -sDM -cFh -gNW -vUQ -fGI -aIU -gbC -aIU -aIU -fyN -tST -qSx -xDk -jmN -rYX -rYX -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wZR -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(114,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -coH -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -rSU -gXw -vjl -fZy -wOA -vAU -kEk -pLK -nHF -gat -bON -bON -bON -bON -nOt -itJ -cQn -ikg -pNp -eDJ -aYH -eNk -mCs -wqA -vhK -fIj -gIx -sGZ -uyI -mBz -mBz -mYD -jxI -gNW -bcI -uIc -eCZ -gbC -sDx -aIU -eCZ -seF -qSx -dtn -jmN -xrw -tVg -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -sZT -orR -uWB -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(115,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -xdF -hCT -uYw -uYw -uYw -uYw -uYw -uYw -vSo -wWV -wWV -bAO -aTL -kZI -fZy -qJO -rhT -sVf -anW -fZy -rKv -aiP -sZU -qnF -kTe -hAB -wAZ -kXW -pOm -jUZ -ghd -gEm -mLQ -pno -awP -psO -fIj -fxV -nib -aYJ -mBz -kzH -xRO -jXb -xUF -pfV -rgN -rXr -vzO -tzU -jMM -hZK -kQA -sIv -rYX -jmN -mPD -cHK -wop -wop -abk -uYw -uYw -uYw -uYw -uYw -wZR -vlW -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(116,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -kGU -imi -vjl -fZy -fZy -fZy -hwm -fZy -fZy -odS -odS -odS -iQR -xTj -hAB -eYc -bxG -cjp -kgI -mMm -czQ -eNk -sPu -vcA -ssT -fIj -kru -lWO -msn -mBz -gJH -njH -lKv -gNW -sNT -oLF -dNN -hnB -lxZ -xKw -dpq -nPt -qSx -gHP -gPD -jVT -jVT -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(117,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -oSZ -tnm -hGM -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -heT -dtY -vTj -atK -odS -iAQ -iQG -wlE -cBP -kbt -cIH -odS -wLX -oru -jXC -oZs -cXu -cjp -xjf -tFi -xHI -dou -nSY -vcA -iZZ -fIj -mBz -mBz -mBz -mBz -yly -fxq -sIl -gNW -nCl -xRf -fcT -fEX -bGO -vso -emi -pfq -qSx -xpU -jmN -qjQ -ygQ -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -wZR -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(118,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -cBU -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -wWV -djw -uyd -pmJ -odS -skm -rtU -uVD -wkA -xHM -eHe -odS -uEl -jwx -hAB -rom -qxz -eNk -mdp -uxv -iVe -eNk -ccO -vcA -fQk -bdI -stI -csD -csD -jRa -isu -eKv -sIl -gNW -xEk -qby -cbd -ofJ -lUa -qCV -wyp -kaf -qSx -xaG -jmN -sXg -sXg -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -nYS -uWB -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(119,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -wWV -jWL -jWL -ojR -odS -iia -uUc -iKt -qqN -hNp -cIH -odS -eAz -rHE -att -cHN -rHE -eNk -eNk -eNk -eNk -eNk -sbL -htW -xIl -jLB -jPx -piK -diG -aYy -gKT -sDM -sIl -gNW -ohy -vNM -nIu -qOG -jiU -xAH -gNW -gNW -qSx -pVD -jmN -mmm -rHA -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -wZR -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(120,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -wWV -tyl -gPZ -eIv -odS -nGT -hUq -vqL -lyu -hTO -cAu -ndj -fxl -sUP -tiB -bfT -sVd -vRd -nCh -xVO -lGG -eht -bXJ -vcA -mcD -jLB -rXw -iTQ -iOy -ufo -isu -ajl -shV -gNW -gNW -gNW -gNW -gNW -gNW -gNW -gNW -bcL -dNz -lfH -jmN -iix -joo -wop -wop -uYw -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(121,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -xdF -hCT -uYw -uYw -uYw -uYw -uYw -wWV -wWV -wWV -wWV -vPu -klQ -hVf -odS -fIn -lEq -kso -lMR -pGF -xJT -cVc -hiT -krm -qgW -tHC -tdY -tdY -tdY -vYP -wtP -mbg -iIC -akd -sdr -qKL -syu -tiK -hCb -ikC -pId -hTm -oax -ntZ -ntZ -eMY -ntZ -wFB -dNz -ljn -aGh -bcL -dNz -lUW -jmN -ocG -wyx -wop -wop -wop -uYw -uYw -uYw -uYw -uYw -wZR -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(122,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -wWV -wWV -wWV -vPu -mxG -gnR -odS -dWr -uVD -uVD -enZ -rAC -hKN -ozr -hiT -ewO -oaQ -ydu -hwW -qmG -hoJ -iMs -iVt -mBf -cll -aSj -gJE -bdI -vXb -hVS -hSx -rQA -isu -nqO -uCO -hJT -hJT -hJT -uIe -fFs -aIi -tAK -mEj -aqT -dNz -gHP -dOl -jVT -jVT -wop -wop -wop -uYw -uYw -uYw -uYw -uYw -dnB -uWB -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(123,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -vSo -wWV -aGP -jWL -jWL -jWL -jWL -ojR -odS -odS -odS -ekY -lxj -wNO -dOd -lyO -xzT -wZC -oct -wTA -sxv -tDw -oSE -hBo -mpg -eht -taj -cxv -aOt -nOV -nOV -nOV -nOV -nOV -nOV -thP -uwG -ivB -ivB -ivB -onW -ivB -ivB -jHS -dNz -dNz -dNz -rYX -jmN -gBq -wzQ -wzQ -lUy -wop -uYw -uYw -uYw -uYw -uYw -wZR -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(124,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -okr -ptu -fBi -dDW -gAI -eYs -mhS -lYw -noM -alw -rUv -noM -noM -noM -hkN -obk -gqS -cex -qlu -qlu -qlu -mjZ -cex -cex -bNJ -sHi -ftF -nOV -flu -hPF -rRq -bmc -nOV -uPb -ydR -ivB -qzP -mcU -vCu -xdk -iyO -jHS -evB -qBc -lnu -lnu -vho -jVT -jVT -sSN -jVT -wop -abk -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(125,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -rLZ -jWL -mkc -jWL -gAI -ufa -jiD -gQN -noM -szp -iPQ -uIu -hUG -noM -dbc -pUb -vkV -cex -jQo -cyV -eYo -smr -grD -cex -hFu -vcA -aZX -nOV -lEe -xPG -ohE -qpw -odH -jSR -hys -ivB -uxe -pfR -jDi -obZ -pWP -jHS -kbM -gcb -rYX -kfm -wnz -jVT -rta -tZC -xnf -wop -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(126,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -frN -jiE -lCV -jWL -jWL -xEA -eYs -mhS -noM -bbg -qAw -wbm -wbm -jYV -jVJ -fdZ -xYo -cex -hSE -jXE -mBb -juu -hJd -cex -hOL -rjg -aZX -nOV -kIz -cbL -pjj -nqC -bZp -uWi -vtl -ivB -cLi -nah -aEv -dHi -qvI -jHS -hQA -tEY -tLc -mac -jiA -jVT -gPd -tZC -sCB -wop -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(127,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -lRx -nwZ -kgE -mZt -mZt -mZt -xdv -rwx -noM -sZq -bmi -cpv -sLE -noM -fmK -xEc -vkV -cex -cmJ -jXE -sDT -wtA -sPa -psk -iFx -fjl -hlc -iVZ -sYg -gKN -aKe -iQh -nOV -fTV -jWb -ivB -edD -rSl -tAz -uzq -kTS -jHS -nGi -rYX -fBg -jVT -jVT -jVT -lUy -tZC -rYX -wop -uYw -uYw -uYw -uYw -uYw -wZR -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(128,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -coH -uYw -uYw -uYw -uYw -uYw -uYw -wWV -iDU -brE -vrS -pGn -sMx -mmR -jkq -eFf -noM -noM -noM -noM -noM -noM -iVA -eRH -mmK -cex -iTl -jXE -kKC -jmu -rkb -psk -mJj -toV -sbY -oJw -vri -kyt -hxU -cfk -nOV -jLA -mXf -ivB -dsg -qfB -rEc -fCD -bpY -jHS -bnz -kIT -ejO -iTh -ptr -jSW -jVT -jVT -eJR -wop -uYw -uYw -uYw -uYw -uYw -tOt -ixA -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(129,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -oAy -hGM -uYw -uYw -uYw -uYw -uYw -wWV -fGs -unX -kjg -pGn -dtt -pGn -pGn -mYL -rQO -tmr -qgH -oeV -fGa -jWL -cOl -eTF -utD -cex -fhu -fjh -xrZ -lez -vwI -cex -lMP -bFR -lGJ -nOV -vNe -kxG -arQ -rtR -nOV -dNz -dNz -jHS -jHS -jHS -jHS -jHS -jHS -jHS -nGi -oIZ -jSW -jSW -him -jSW -dqa -fkJ -wzQ -wop -uYw -uYw -uYw -uYw -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -eML -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(130,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -oSZ -tnm -tnm -cxm -tnm -tnm -wWV -vNC -oLA -elS -pGn -xYH -pGn -pGn -mZt -mZt -mZt -wVA -sKi -lKL -jWL -mbd -jkL -mbd -cex -cex -cex -cex -cex -cex -cex -iAj -tDx -mYP -nOV -nOV -nOV -nOV -nOV -nOV -qqk -lzG -ybX -epe -epe -lzG -aFM -eDq -jVT -nGi -lzC -jSW -jSW -wMB -jSW -xsi -npA -wzQ -wop -uYw -uYw -uYw -sZT -tnm -tnm -puo -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(131,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -rZL -rZL -cBU -tXe -tXe -nYD -nYD -nYD -pGn -pGn -vxn -pGn -pGn -mvy -mvy -pGn -mZt -aSx -lKL -hZp -kHX -oGe -vRA -axL -jyO -dfd -ipo -iYy -haW -wnX -vas -mJq -vSR -qwk -kKs -leG -dWF -oyP -wZw -vhv -kFL -lVJ -dWF -ePa -fDQ -fDQ -wXB -lqa -nzv -lzC -jSW -jSW -irS -jSW -jSW -nhv -nhv -nhv -uYw -uYw -uYw -wZR -vlW -rZL -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(132,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -soS -nYD -nYD -nYD -nYD -pGn -nKU -qSv -xDX -pGn -pGn -pGn -vuc -mZt -dlI -lBW -leG -mlT -uwk -jdy -ccq -eGU -sEU -ooZ -kgb -mCs -tNv -quV -kzx -bbI -iiZ -gnd -hZp -nZi -aOj -iYa -wtw -rYX -vDO -jVT -nIK -jVT -jVT -gHP -jSW -jSW -jSW -jSW -qTm -mHu -ugb -jSW -nhv -nhv -nhv -nhv -uYw -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(133,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nYD -nYD -tRF -uQe -lyS -kUD -xMn -gtv -rSm -lLL -rFc -pGn -gaW -sEn -sEn -sEn -sEn -jmE -iVg -iVg -xia -sTU -sTU -hZp -hZp -aOx -dCA -aCb -oYe -gCz -hZp -hZp -aBA -rYX -jVT -lSb -rYX -jVT -jVT -hLx -rYX -qhC -gHP -jSW -gPR -nHR -sjU -ral -wJE -aRp -exk -hKA -bjR -nhv -nhv -abk -uYw -wZR -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(134,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nYD -nYD -rDs -ulB -pNE -qbH -esB -cXW -lPa -uHU -aeI -pGn -gaW -idw -cWz -xhA -sEn -sWY -cPM -wTa -xxp -mCD -koE -bkO -qAX -qAX -lMu -qAX -vaH -qAX -qAX -bkO -jvP -rYX -wop -sLT -iMh -bwo -eKY -meC -rYX -qhC -gHP -jSW -aqJ -cMM -qjv -xEB -alA -iSe -dxN -vdE -uoH -nhv -nhv -sZT -tnm -puo -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(135,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nYD -nYD -xZV -sMp -mUQ -efw -hHX -uZJ -rSm -nDN -vBP -pGn -gaW -eWh -ewz -cRc -sEn -srn -rFB -tuN -beA -mvW -gSp -bkO -bkO -jdd -pji -qLt -sED -lFT -bkO -bkO -xpU -rYX -wop -sQz -qPz -sAG -xVR -rYX -rYX -lUy -gHP -jSW -bZU -hlM -sjU -bDp -rwV -kcf -gjc -gZM -iNW -nhv -nhv -jVe -rZL -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(136,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -nYD -nYD -pGn -pGn -pGn -rvq -idq -qhu -ioi -ioi -ioi -ioi -gaW -ocw -qTB -cyn -pgw -gqm -hHA -vhy -rPu -mvW -tBF -bkO -vId -sNP -kty -vlL -iuu -owx -umI -bkO -mFl -rYX -wop -nan -mgL -wop -fAD -rob -rYX -oSI -gHP -eSY -eSY -eSY -sbX -tDf -mfl -dxa -jSW -jSW -jSW -nhv -nhv -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(137,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -tXe -nYD -nYD -pQt -hck -bbd -vzD -act -dFw -gks -jjo -uJv -ioi -gaW -oAe -akE -ssk -sEn -eAP -mLb -dcz -jmx -anQ -nZW -bkO -cMf -fGb -fGb -hlU -xCs -iBA -llT -bkO -wop -wop -wop -sQz -bkQ -wop -wop -wop -wop -wop -gHP -eSY -kDS -nUp -ivd -hVE -cTP -lUI -pTs -vPd -hYX -nhv -nhv -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(138,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -idA -tXe -tXe -nYD -nYD -qzM -iLZ -cHJ -fIa -fbL -cCD -gks -uVF -gBi -ioi -ouw -ouw -ouw -ouw -ouw -rSO -rSO -rSO -rSO -rSO -rSO -bkO -tPO -koW -lRm -czD -bqI -fGb -meO -bkO -wop -wop -wop -xaa -nDB -wop -wop -wop -wop -wop -wop -eSY -qwN -msZ -ivd -tIa -rxO -moz -mUM -alL -sXh -nhv -nhv -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(139,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -eLH -nYD -nYD -ciM -tJJ -lyS -ceS -kvu -uzc -sCv -lis -bGR -mDi -uYw -ouw -ouw -ouw -ouw -rSO -rSO -rSO -rSO -rSO -rSO -bkO -mmH -ycr -vbU -vbU -wDa -iFF -dHW -bkO -wop -wop -wop -wMJ -uYw -lNn -wop -wop -wop -uMt -uYw -iuW -rzl -vvb -vCK -pZT -hXG -tIm -exk -rhV -wFa -nhv -nhv -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(140,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -soS -nYD -nYD -nYD -pGn -pGn -rjw -gix -lpG -kgN -hNC -hOu -ioi -uYw -uMt -tng -oyg -uYw -uYw -uYw -uYw -uYw -bGC -nxJ -iiu -isZ -tfy -gUX -nPX -bXW -auV -isZ -iiu -nxJ -mQn -nxJ -nkV -uYw -uYw -tng -oyg -uYw -uYw -uYw -dwg -vLG -daM -bQa -lCR -tCL -lkC -jSW -jSW -nhv -nhv -nhv -xsf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(141,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -tXe -hFb -fXX -hPf -vdd -uzC -mnp -uzC -pCm -wGK -nKq -uAU -nYD -viI -tnm -tnm -tnm -tnm -tnm -tnm -tnm -tnm -tHF -hGM -uYw -qrY -qrY -oJb -oJb -oJb -oJb -oJb -uYw -sZT -tHF -tnm -tnm -tnm -tnm -tnm -tnm -tnm -tnm -hGM -nhv -iPp -khC -lJD -bEV -hTf -egI -hTf -hVF -pHq -vGc -vcl -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(142,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -tXe -eCf -dJE -kro -sIr -sHp -sIr -vWT -sIr -sHp -aPV -nwG -nYD -jVe -rtT -rZL -rZL -rZL -rZL -rZL -rZL -rZL -rtT -oAy -hGM -uYw -uYw -uYw -uYw -uYw -uYw -uYw -sZT -puo -rtT -rZL -rZL -rZL -rZL -rZL -rZL -rZL -rtT -oSZ -nhv -cFV -jxp -lEZ -bhi -nwu -bhi -lEZ -bhi -pvs -ujx -nqK -tXe -gSd -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(143,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -tXe -pwv -nYD -aWQ -aWQ -aWQ -nYD -aWQ -aWQ -aWQ -nYD -qaM -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -oSZ -tnm -tnm -tnm -tnm -tnm -tnm -tnm -jVe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -tXe -nhv -dzD -dzD -dzD -nhv -dzD -dzD -dzD -nhv -fRZ -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(144,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -tXe -dxi -rtT -rtT -rtT -erp -rtT -rtT -rtT -dxi -tXe -gYE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -tXe -iAm -rtT -rtT -rtT -erp -rtT -rtT -rtT -iAm -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(145,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(146,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(147,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(148,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(149,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(150,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(151,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(152,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(153,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -jhc -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(154,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(155,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(156,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(157,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(158,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(159,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(160,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -cUY -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(161,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(162,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(163,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(164,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(165,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(166,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(167,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(168,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(169,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(170,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(171,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(172,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(173,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(174,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(175,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(176,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(177,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(178,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(179,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(180,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(181,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(182,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(183,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(184,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(185,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(186,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(187,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(188,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(189,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(190,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(191,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(192,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(193,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(194,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(195,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(196,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(197,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(198,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(199,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(200,1,4) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} - -(1,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -xCn -"} -(2,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(3,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(4,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(5,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(6,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(7,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(8,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(9,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(10,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(11,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(12,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(13,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(14,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(15,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -fpE -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(16,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(17,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -xNz -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(18,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -rpE -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(19,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -rlU -hbd -jEd -nTr -cFl -tow -bZF -hbd -lCZ -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(20,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rlU -nTr -cFl -bjD -nvi -clF -xbE -oBC -utP -suJ -cFl -tow -lCZ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(21,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -rpE -rpE -rpE -nTr -gMW -cVI -xPv -iYp -qzL -eKr -uTE -iYp -jBp -cVI -bPX -tow -rpE -rpE -rpE -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(22,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -iIe -cFl -cFl -cFl -mYF -iYp -qzL -xpg -iYp -etw -tqW -sij -iYp -oCv -uTE -iYp -tGd -cFl -cFl -cFl -hgL -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(23,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -aaI -uYw -uYw -uYw -uYw -iYp -nYM -gck -flh -ugM -edw -tSV -qZF -tny -jYJ -iYp -uYw -uYw -uYw -uYw -kHz -lCZ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(24,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -nTr -mYF -dYA -wbc -cVI -xPv -iYp -mZk -xIb -mdA -cjz -vAp -dhc -lbY -hAt -nbr -iYp -jBp -cVI -tdh -gWF -tGd -tow -lCZ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(25,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -nTr -mYF -uYw -leM -iYp -qzL -xpg -iYp -ePj -pvP -pSk -deT -aoj -scS -sNg -vmy -twV -iYp -oCv -uTE -iYp -leM -uYw -tGd -tow -lCZ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(26,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -iIe -mYF -uYw -uYw -iYp -iYp -jhJ -jLf -gHl -gve -pvP -bEl -aoj -lJJ -aoj -klK -tcU -hhW -iud -qIs -wOg -iYp -iYp -uYw -uYw -tGd -hgL -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(27,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -aaI -uYw -vSo -iYp -iYp -iYp -awr -pyr -xaV -gmH -mbH -dpI -oXQ -aoj -eAo -qZg -bqA -oTM -lFg -ibE -sMW -kkC -iYp -uYw -uYw -uYw -kHz -lCZ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(28,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -nTr -mYF -uYw -uYw -iYp -iYp -iYp -kBZ -gKX -cpw -irE -wjN -crm -kvc -tqE -tSK -gtq -oJx -liY -ctC -fto -hrr -iYp -iYp -ydZ -iYp -abk -tGd -tow -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(29,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -nTr -mYF -uYw -uYw -iYp -iYp -iYp -iYp -qEa -vgF -wRm -ylP -hYB -gpg -xnM -hnw -xnM -kJw -hJk -kuV -goG -rXM -oGV -iYp -iYp -hEw -iYp -iYp -uYw -tGd -tow -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(30,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -iYp -iYp -iYp -iYp -iYp -iMF -fQJ -ylS -keJ -soJ -uaQ -pLd -vjE -peF -ygt -jpT -xTP -iJp -fuA -uVs -iYp -iYp -imR -iYp -iYp -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(31,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -vSo -eKO -eKO -xAE -xAE -xAE -xtu -irV -qBk -nAC -nAC -wjN -gjK -bWT -bWT -bWT -lbg -oJx -nAC -nAC -ndx -gEz -jtD -jZr -nTa -iYp -iYp -iYp -abk -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(32,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -eKO -xAE -xAE -cMI -xWt -xtu -nig -nbj -kdr -miL -bKC -gfq -vZK -gkg -eWN -qMJ -nCN -bUQ -jhl -dJo -vWC -xtu -hcG -myg -iYp -iYp -iYp -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(33,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -rDD -eKO -eKO -xAE -hqn -oXS -ruz -xAE -xtu -xtu -xtu -xtu -nVe -eHy -ixU -xtu -nVe -gHx -ixU -xtu -xtu -xtu -jEq -jEq -hcG -dPg -iYp -iYp -iYp -iYp -uGf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(34,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eKO -eKO -xAE -daV -obT -mvC -xAE -pfE -fqm -fqm -fVO -ooC -tyJ -sUA -ipU -nRD -kXz -fIZ -fVO -tFO -bBa -byQ -aqI -aqI -pUi -aqI -aqI -aqI -meJ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(35,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eKO -eKO -xAE -dqF -ouo -sIt -csC -jGV -sVl -pYB -gdD -bLk -uRn -mND -gnX -mND -uRn -idk -gdD -gqW -dzv -xWl -aqI -gRb -uXX -nsD -tRB -aqI -meJ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(36,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wuh -wuh -fMg -fMg -fMg -fMg -fMg -fMg -ghZ -thi -tXp -sHE -aOo -uRn -mND -aWb -mND -uRn -dva -sHE -dCW -ayJ -xgB -aqI -sRS -qax -gVj -aRR -aqI -meJ -meJ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(37,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wuh -wuh -fMg -fMg -kgj -xSK -nwt -gVk -fMg -pVA -xhU -gpE -hMO -cEB -nrA -jbO -imx -jbO -eKb -atl -hMO -lHs -edA -ccS -hIs -hfG -qax -wWz -vbQ -aqI -meJ -meJ -meJ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(38,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wuh -wuh -fMg -kKI -jSF -jSF -bnt -twA -vKY -cbV -thi -ybl -fbE -tlv -dao -mND -vRa -mND -jBt -eHt -fbE -arO -enc -qfv -aqI -fYV -uuV -gVj -kXI -aqI -meJ -meJ -meJ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(39,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wuh -wuh -fMg -iQz -ejL -bLR -pow -oPZ -bQn -cbV -iah -isJ -plB -bFm -cpa -oFB -pQh -oBo -qie -jyG -plB -cbV -njQ -srp -qDO -xIW -fnX -qLx -scO -aqI -meJ -meJ -meJ -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(40,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wuh -wuh -wuh -fMg -dWA -qhg -bMD -gNM -cxd -fMg -dBh -gUj -dQq -fbE -fbE -plB -fbE -mxS -fbE -plB -fbE -fbE -tHc -gUj -cKr -aqI -aqI -aqI -wYr -aqI -aqI -meJ -meJ -meJ -meJ -tow -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(41,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wuh -wuh -wuh -fMg -twU -ows -oym -aIO -cQD -hXo -aoh -qWV -dJQ -wJP -bjf -cLT -nIS -iGZ -waK -tJs -gIl -wJP -knX -iah -iHc -kka -dqs -hBY -dXp -jky -vrx -bQU -bQU -bQU -bQU -kHz -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(42,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -bNd -bNd -bNd -bNd -fMg -jcn -xHY -bNB -muF -wIY -fMg -sPE -thi -qiM -wJP -xWY -pqy -pqy -bSJ -pqy -ulE -rLG -wJP -eCI -thi -aXK -kka -egZ -nkO -dXp -pJR -adw -nDA -bQU -bQU -bQU -bQU -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(43,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -hbd -atx -aTh -hbd -lCZ -rpE -rtT -bNd -bNd -bNd -pHL -cBD -fMg -mrh -iPw -uwr -twA -ybb -xgZ -cbV -thi -isJ -ivJ -bwW -wJP -kQX -hDf -eNZ -wJP -dAK -ivJ -cbV -bHf -daA -jpb -cGv -cGv -wJp -eXK -hXB -adw -pob -bQU -bQU -bQU -bQU -rtT -rpE -rpE -rpE -rpE -rlU -hbd -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(44,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -mrY -bjD -cFl -cFl -suJ -cFl -dGA -cFl -bNd -bNd -hlT -sLV -fuw -fMg -fMg -fMg -fMg -oAk -fMg -fMg -mSA -rxw -jQX -ivJ -tRS -qLJ -soD -qRS -bzm -iRF -ghY -ivJ -dXy -rxw -hsZ -kka -pDv -aTE -qGs -vIq -vIq -vIq -ptB -cKO -bQU -bQU -bQU -cFl -dGA -cFl -cFl -cFl -cFl -suJ -gOH -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(45,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wNm -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -iIe -bVu -uYw -uYw -vUq -vUq -vUq -vUq -vUq -bNd -bNd -dJO -nrI -nHg -lLE -fAC -tTy -wtg -ueh -whF -twd -rut -iah -xgB -wJP -nza -cJV -vcT -abq -bWY -pZM -omG -wJP -rut -iah -wKO -kka -adw -kzm -khd -pDv -jFy -qRr -mKA -dZW -bQU -bQU -bQU -bQU -bQU -bQU -bQU -bQU -uYw -uYw -rvy -hgL -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(46,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -kAq -uYw -vUq -vUq -hRp -hRp -hRp -hRp -lLE -lLE -lLE -fkc -lLE -lLE -mZV -aDT -mSM -aRa -nNh -twd -vZh -tsv -vZh -wJP -vSE -qDE -qDE -eSR -qDE -qDE -quf -wJP -vZh -tsv -vZh -sPt -sPt -sPt -sPt -sPt -sPt -sPt -mKA -iNm -bQU -bQU -bQU -bQU -bQU -bQU -bQU -bQU -bQU -uYw -kAq -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(47,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aaI -kAq -vSo -vUq -hRp -hRp -cDC -oqK -mZD -lLE -gdm -uYA -xTv -iRr -xRa -cac -njG -bgp -ueh -mtt -twd -asI -iah -ybl -wJP -xrJ -trR -cfn -trR -cfn -trR -rVa -wJP -dwT -iah -oxa -sPt -qOH -uqC -nTu -jaq -jyr -sPt -qGs -vIq -noF -vIq -uHL -mnW -iQH -mnW -mnW -bQU -bQU -abk -kAq -kHz -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(48,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -kAq -uYw -vUq -hRp -hPN -clW -mkq -sAs -jfv -wJw -tWx -acf -jcg -vkI -qKw -tCO -tJz -cSp -qSZ -qfW -rZv -bkh -isJ -ivJ -phc -iRb -gJG -phc -dAQ -dpp -phc -ivJ -dXy -kAK -mzZ -mBF -hyc -nFk -dWS -tBS -tBS -sPt -sPt -gqH -gqH -gqH -fju -gqH -gqH -gqH -qWz -bQU -bQU -uYw -pAe -jtL -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(49,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -kAq -uYw -vUq -hRp -kVD -unH -ebs -jtY -lLE -rgK -eEi -uLi -qHZ -xRa -dZf -igN -fSV -uaS -eJL -twd -uYf -rxw -jQX -ivJ -phc -phc -jzR -phc -kdq -phc -phc -ivJ -cbV -aOA -tAU -tpi -fdQ -eGC -pVK -qij -qij -ulA -sPt -gqH -iej -xmF -fvE -hyH -iFo -gqH -mnW -bQU -bQU -uYw -ghb -nbi -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(50,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -kAq -uYw -vUq -hRp -hRp -vXR -ooS -hRp -lLE -lLE -lLE -lLE -lLE -lLE -nPx -jhY -lyY -uaS -qqC -twd -cbV -thi -isJ -ivJ -phc -bkz -iuv -phc -slu -kSG -phc -ivJ -cbV -thi -ybl -sPt -lQE -jdD -guH -wyt -wyt -lcv -acw -gqH -xMl -fbZ -bnI -mIL -jGr -gqH -mnW -bQU -bQU -uYw -rvy -tow -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(51,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -kAq -uYw -nzF -xjT -mVb -fzh -okN -usI -qgC -fNY -cDf -ceX -abu -xZN -xZN -xZN -xZN -mrA -xZN -xZN -grY -iah -mPS -wJP -koy -jCI -uzk -jCI -uzk -jCI -ykD -wJP -lKi -iah -rNl -nPg -tfG -bvp -tzF -oWO -ncS -sou -bvp -gqH -ozR -bIo -sRF -gpv -oQJ -gqH -mnW -bQU -bQU -uYw -kAq -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(52,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -uAJ -kAq -uYw -nzF -xjT -naC -aql -byA -sva -ryq -ryq -ryq -vTY -rtI -xZN -ote -bdj -epB -fZb -kLl -xZN -dcK -uGA -srp -pJF -egd -dkg -vpr -egd -vpr -wPH -egd -pJF -scs -vtr -rNl -nPg -tfG -bvp -din -sxb -hLG -cGn -bWy -eBC -ayy -hKj -inh -aRF -xxk -gqH -oLi -bQU -bQU -uYw -kAq -dcy -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(53,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -kAq -uYw -jgT -ihT -ihT -ihT -oQi -xxZ -ihT -ihT -kpO -qrJ -eym -xZN -fsb -wuI -bHS -dOA -lKZ -xZN -cbV -iah -dDj -wJP -xwd -rbM -bQo -buY -aHE -bop -baI -wJP -tkF -iah -rNl -nPg -tfG -bvp -iFe -hgI -gBk -sou -kSk -gqH -doG -bIo -fyW -gpv -fdy -gqH -mnW -bQU -bQU -uYw -kAq -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(54,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -kAq -uYw -jgT -ihT -bJj -odw -rYC -rMW -sXy -ihT -fnn -qrJ -ciI -xZN -mPX -sPM -ejg -wGh -qjy -xZN -dBh -thi -oxu -wJP -wJP -uAj -uAj -wJP -uAj -uAj -wJP -wJP -cHE -thi -iHc -sPt -hqH -wRf -jBi -keS -keS -hes -cyb -gqH -oiu -eFK -wme -oJi -hTi -gqH -mnW -bQU -bQU -uYw -pAe -jtL -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(55,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -kAq -uYw -jgT -ihT -bJj -iJr -kIx -dto -wDi -ihT -deq -qrJ -tNI -xZN -cBw -bin -yeN -iXM -cYQ -grR -sOQ -vlO -iLG -tMH -tDL -eEC -tDL -vaQ -mvD -brB -vXn -efi -vXn -qbk -pbP -sPt -hZf -hqH -iHt -nZI -nZI -tXL -sPt -gqH -tPJ -dUh -tIt -jiQ -keA -gqH -mnW -bQU -bQU -uYw -ghb -nbi -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(56,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -kAq -uYw -jgT -ihT -bJj -eyO -tBT -rMW -rdU -ihT -kgu -qrJ -qiT -xZN -dpX -jja -bHS -bHS -fqW -xZN -uKr -cdt -nXn -juR -xSX -kQg -non -lzS -nYa -vAH -nYa -juR -vec -cdt -jQX -sPt -ojZ -uGm -vyo -fov -baT -qob -sPt -gqH -gqH -gqH -jwM -gqH -gqH -gqH -qWz -bQU -bQU -uYw -rvy -tow -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(57,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -kAq -vSo -jgT -ihT -ihT -bwS -cRr -rMW -xzh -ihT -qsO -qrJ -vhV -xZN -gsv -fFd -knr -nFM -bAX -xZN -bFP -adp -qfv -edu -edu -edu -edu -ffw -edu -edu -edu -edu -avN -pqU -lAk -sPt -ndi -rQf -pYj -dGi -njz -mLz -meu -oOZ -cVp -mnW -jVS -mnW -mnW -mnW -mnW -bQU -bQU -abk -kAq -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(58,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -sVS -eLG -nxJ -bOy -bOy -jaO -jaO -vtD -rMW -hOU -ihT -xjT -jcM -nWa -nWa -nWa -nWa -nWa -nWa -nWa -nWa -wPb -xaK -crs -edu -eJb -iSZ -lOo -fTk -eqV -mpw -qhU -edu -uAo -xaK -kuK -wjK -wjK -wjK -wjK -wjK -wjK -wjK -wjK -afT -kLp -iMB -rSI -trC -adw -nmr -bQU -bQU -bQU -uYw -jJa -dsp -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(59,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -rDD -djg -uYw -uYw -jgT -jgT -ihT -cQV -kWB -ggq -ihT -gLb -qrJ -nWa -mxD -jhF -abW -ton -kWA -aqC -nWa -jil -omf -nbD -eAM -fEy -fwJ -lCm -jej -xNv -fwJ -vMB -eAM -iVf -kwa -tfP -hVv -bqv -ecS -qjX -vpe -qCv -dnV -hVv -dAF -hci -pjE -pjE -cLQ -luc -eIn -sLI -sLI -nxJ -nxJ -nvC -uGf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -oCi -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(60,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -aaI -uYw -uYw -jgT -jgT -ihT -ihT -nuD -uzL -ihT -uaL -sKJ -uhD -hxY -wka -wka -dFQ -ozh -auv -rxI -iPd -haL -cOK -uCy -hpT -hJR -hbT -ckn -dNc -xpx -ssI -wNp -ioI -hvn -fPH -hVv -gUC -cFs -wgs -ijj -sKQ -jCW -vcO -mnW -iYD -vnl -adw -adw -nXH -bQU -bQU -bQU -uYw -uYw -kHz -gYE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(61,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -dCk -djg -uYw -uYw -jgT -jgT -ihT -ihT -jwp -ihT -uaL -qrJ -nWa -iPZ -uoG -eyF -mpS -hxD -uoG -wXw -lyK -wjq -hFB -eAM -fHU -jFK -hTt -htx -jPS -jFK -mYI -eAM -dag -wjq -gte -hVv -hVv -hVv -iok -whD -ayl -xZG -hVv -vjQ -iYD -pmn -wdP -kzm -bQU -bQU -bQU -uYw -uYw -rGb -jtL -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(62,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -aaI -uYw -uYw -uYw -jgT -jgT -ihT -ihT -ihT -scz -qrJ -nWa -bfq -dqv -sNE -aap -jSg -cuI -nWa -pgS -rBV -cUU -edu -mEz -ria -mEz -edu -mEz -ria -mEz -edu -txC -fEm -cjn -spV -dzt -nQb -vaa -fBM -dYx -oXA -hVv -cOG -eOo -bQU -bQU -bQU -bQU -bQU -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(63,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -rDD -eMB -djg -uYw -uYw -nzF -nzF -nzF -nzF -iTy -qrJ -nWa -pkC -tzL -cfs -bPB -iKu -pVU -bcs -lau -ccR -lds -eIr -aZj -pdE -kej -eYh -kbm -otE -ggf -eIr -tAr -bfH -qUp -wFO -fYA -vVv -iyk -dJs -nOh -rnX -hVv -jxv -rfT -shE -bQU -bQU -bQU -uYw -uYw -rGb -eMB -uGf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(64,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -cBU -aaI -uYw -uYw -uYw -nzF -nzF -nzF -hFV -qrJ -nWa -mxg -viz -dXc -nOi -iyC -uPY -vtp -oWT -oGs -gPl -lSl -gPl -rlH -pOE -tBz -pOE -brA -gPl -lSl -gPl -mbq -nwJ -dKh -fYA -udF -eNz -jCW -jCW -ckl -hVv -pKC -cQR -bQU -bQU -bQU -uYw -uYw -rGb -jtL -vlW -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(65,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -wtJ -qrJ -nWa -mAz -mFv -xTC -bkT -sBQ -qPp -nWa -tVN -xRB -fEo -dMK -dhe -eNR -tgM -xNH -klq -pMN -ygC -dMK -jLc -mZY -bzw -wjB -fYA -cNc -aCL -jCW -jCW -jGi -hVv -rfT -kNX -bQU -bQU -uYw -rGb -eMB -jtL -vlW -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(66,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aaI -uYw -uYw -uYw -vSo -nzF -nzF -jnY -qrJ -nWa -lqI -lqI -lqI -lqI -knS -lqI -uyQ -pbH -rBV -nwJ -uWS -sYx -cNK -hEI -bfH -nGl -wSK -lCn -uWS -pbH -gRU -hFU -aeW -fYA -mFj -gbM -vmb -fwG -har -hVv -hMV -ybs -bQU -bQU -eNw -jtL -vlW -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(67,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -uaL -sKJ -iGD -rKy -jTJ -wnF -iGD -wYJ -eCj -oeZ -ohM -wjq -pnU -jnT -ceF -jsr -pbH -alU -fJM -tmy -kwG -jnT -qRX -dTq -rLb -qFy -xnd -hVv -gFW -pmR -weT -qpy -hVv -rfT -kFE -bQU -bQU -kHz -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(68,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -uAJ -uYw -uYw -uYw -uYw -nzF -nzF -oUW -qrJ -iGD -sSO -ooq -pve -iGD -iEB -nNr -jMp -kHQ -mLR -nwJ -jnT -out -fua -pbH -alU -fJM -khQ -vMl -jnT -pbH -mnV -qBa -pXR -pXR -aNp -aNp -aNp -aNp -aNp -cOG -rfT -shE -bQU -bQU -dcy -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(69,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -fnn -tZw -iGD -kjo -dOh -ybq -iGD -rLR -lrC -oeZ -iFD -aiw -eJs -jnT -xlV -lvy -bzF -bfH -soR -kbe -rpY -jnT -jSl -aiw -dze -pXR -nel -buN -pXR -vWW -hDo -pXR -xKT -rfT -shE -bQU -bQU -jtL -tXe -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(70,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -uoJ -qrJ -iGD -sZs -vWv -xOp -iGD -qnA -hEt -tze -tze -tze -tze -tze -tze -tze -beN -aVq -kaX -dmO -dmO -dmO -dmO -dmO -dmO -pXR -upT -wpU -pXR -iPW -uGq -pXR -aMC -rfT -jic -bQU -bQU -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(71,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -wtJ -qrJ -iGD -fmH -iGD -iGD -iGD -qVG -aTp -tze -rNx -rNx -rNx -rNx -rNx -tze -uIv -bfH -bgw -dmO -mwe -gGi -ceI -bJm -tAe -pXR -pXR -jUL -pXR -xPU -pXR -pXR -qvx -rfT -jic -bQU -bQU -tXe -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(72,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -hpc -qrJ -oeZ -tqM -hae -hIT -wdG -vrG -oKT -tze -rNx -rNx -rNx -rNx -rNx -gDd -eea -nTl -iCf -oxC -kQl -ohw -ppC -bTJ -ppC -rBU -boa -ubB -nfL -wuR -vlq -lOI -hcS -kaG -kFE -bQU -bQU -eLH -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(73,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -uAJ -uYw -uYw -uYw -uYw -nzF -nzF -bie -qrJ -oeZ -fea -uJh -ayB -fIc -sIm -mbV -tze -rNx -rNx -rNx -rNx -rNx -gDd -htB -wjq -hFB -tqf -lZj -ahU -ruT -mRr -iyv -pXR -xVT -oaf -oTb -dgN -psn -pXR -fDI -rQc -jic -bQU -bQU -tow -tXe -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(74,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -uET -sKJ -oeZ -xiW -voo -qfE -pOS -gxA -tYJ -tze -rNx -rNx -rNx -rNx -rNx -gDd -eea -alU -mQL -tqf -lZj -lZj -iCl -mRr -chE -pXR -txv -cSC -twJ -loY -vBb -pXR -nkO -rQc -pmn -bQU -bQU -tGd -tow -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(75,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -wsF -qrJ -oeZ -rLa -lPz -kCE -wpi -uNk -oMx -tze -rNx -rNx -rNx -rNx -rNx -tze -lFi -bfH -bzw -tqf -lZj -lZj -iCl -rjS -rbn -pXR -voQ -fEe -eAa -oaA -qWK -pXR -vVc -rQc -pLe -bQU -bQU -uYw -tGd -tow -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(76,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -vSo -nzF -nzF -nzF -ksp -vcd -vcd -vcd -dqi -vcd -vcd -vcd -tze -tze -tze -tze -tze -tze -tze -beN -aVq -beN -dmO -lZj -quR -iCl -bxl -nqM -pXR -cVF -aJi -uhY -vwn -dpn -pXR -vah -rQc -shE -bQU -bQU -abk -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(77,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -hNZ -qrJ -vcd -gIR -oTP -sxM -jit -oNj -baF -vcd -wAh -mUO -sMj -rPt -nSy -wrR -fZS -jDK -ltN -tse -tse -tse -tse -tse -tse -tse -snt -vvp -snt -snt -snt -snt -kka -wpL -bQU -bQU -bQU -uYw -uYw -kHz -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(78,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -uAJ -uYw -uYw -uYw -uYw -nzF -nzF -jRJ -sKJ -vcd -jPs -bkN -fYz -mpK -gnO -xZS -vcd -cVB -rhF -rVS -bqD -gZf -wrR -clD -kTQ -hAJ -tse -lMi -rNK -lOa -wFQ -oMY -tse -cMb -xRc -iwZ -ojo -gvI -snt -bCP -sPL -kFE -bQU -bQU -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(79,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -oIG -qrJ -vcd -iIA -oqf -tPA -bbV -qAu -yeq -vcd -bDm -hjC -fKs -oHh -oEO -wrR -mkt -fKt -iTZ -tse -dNT -fuf -npE -lVT -aAi -tse -rhC -eVk -sbx -ojo -gvI -snt -kzo -iYD -jic -bQU -bQU -uYw -uYw -kHz -atx -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(80,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -rOW -qrJ -vcd -vcd -vcd -vcd -hBd -vcd -vcd -vcd -wrR -wrR -duE -wrR -wrR -wrR -vFA -jDK -rfn -tse -btB -xJg -gUT -eHA -mlr -tse -jga -nfl -vLr -ojo -gvI -snt -lcB -iYD -krL -bQU -bQU -uYw -uYw -tGd -cFl -tow -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(81,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -dNr -qrJ -kyg -fWa -tuX -mze -jDq -wdL -dbB -jrx -apA -qNw -jDq -rJn -xSo -nLX -hAO -hdI -dhX -tse -tse -tse -qXy -tse -tse -tse -snt -xQm -snt -snt -snt -snt -cOG -iYD -shE -bQU -bQU -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(82,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aaI -uYw -uYw -uYw -uYw -nzF -nzF -kye -pvV -rNN -rNN -cnh -aQu -wXb -oor -vRY -kdm -vRY -oor -wKC -vRY -fqR -rEQ -xJO -pDQ -gjP -nLX -gaH -qNw -qop -jWr -gQI -jlU -qNw -jbJ -pmk -wSG -eUW -btF -pmk -iYD -uDp -bQU -bQU -uYw -uYw -uYw -uYw -kHz -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(83,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -uAJ -uYw -uYw -uYw -uYw -nzF -nzF -dYk -qrJ -qYZ -tzM -tuX -aqr -yfi -usD -fBO -tpp -brI -xHi -xAj -eWg -nkG -nLX -gNu -tQu -eoQ -rEQ -bJb -odj -gAC -nOQ -vRY -nxP -vRY -pou -jsP -bcV -iiS -wuE -pmk -iYD -feA -bQU -bQU -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(84,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -uaL -qrJ -hKY -hKY -hKY -hKY -amQ -hKY -hKY -qjp -qjp -qjp -usr -qjp -qjp -qjp -mJZ -mBH -urH -nLX -lWD -jar -dKo -jdC -iWX -xAj -vsN -tym -pmk -aIl -izt -izt -pmk -iYD -tOr -bQU -bQU -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(85,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -jRJ -qrJ -hKY -aNn -oyH -oTr -uZx -fit -gHI -qjp -vdI -bxp -ooV -fJK -jDc -qjp -rdN -jDK -nch -lsb -lsb -vFH -lsb -hdc -hdc -gdc -hdc -hdc -pmk -aTf -fZE -mhN -pmk -iYD -ybs -bQU -bQU -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(86,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -vSo -nzF -nzF -fnn -sKJ -hKY -lEA -iSy -iSy -msd -qcJ -vYG -qjp -xfC -yiL -fpq -tLH -eDe -qjp -tuX -tkO -tuX -lsb -aXe -nyP -sqb -jxH -rdn -lnL -gYL -hdc -gwt -pun -diI -evo -pmk -ihs -xCg -bQU -bQU -abk -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(87,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -nzF -nzF -eYN -qrJ -hKY -sxU -uJY -sxU -oDc -fvU -jsb -qjp -hqY -xAk -gDl -kGN -qSQ -qjp -aLI -tkX -umm -lsb -alE -tvm -pQa -bFZ -iRR -rJe -xgE -hdc -gpr -htV -sof -tDr -pmk -iYD -kFE -bQU -bQU -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(88,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -uAJ -uYw -uYw -uYw -uYw -nzF -nzF -nzF -jcM -hKY -hKY -hKY -hKY -hKY -hKY -hKY -qjp -uOd -oRb -xjo -nqm -kZg -qjp -eRd -tkX -gen -lsb -via -ibt -qrt -bFZ -aLc -dVH -gip -hdc -pmk -pmk -pmk -pmk -pmk -xLU -bQU -bQU -bQU -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(89,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -iWV -iWV -aLI -twv -hmN -mrD -pIY -xWy -xWy -eqq -qjp -fLK -ujZ -gsH -gDl -kGN -jeH -qjp -ajo -tkX -kyL -lsb -rGX -xBo -tCS -bFZ -qKs -xjd -jWq -hdc -nCo -mBc -awT -bvN -sah -fYj -row -iWV -iWV -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(90,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -iWV -iWV -eRd -taE -mKb -qDd -qDd -qDd -qGW -exH -qjp -qcN -qek -fLQ -qyW -kGN -kLn -qjp -oFs -tkX -kyL -lsb -wfo -tsm -kqt -jxH -iqj -ojM -xbm -hdc -yfO -oiO -nbf -eNe -kpV -rhN -saA -iWV -iWV -uYw -uYw -uYw -uYw -kHz -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(91,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -jWA -jWA -jWA -oUc -tdn -rZd -rPm -wrD -twv -mlu -qjp -nfr -wMV -wgQ -tXW -qjp -qjp -qjp -bBS -dbG -mlu -lsb -lsb -lsb -lsb -hdc -hdc -hdc -hdc -hdc -qsk -oIo -oNN -xkl -qVa -uXR -fKB -fKB -fKB -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(92,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -uYw -jWA -jWA -rAZ -mBm -vBY -rPm -oFs -twv -row -qjp -qjp -qjp -qjp -qjp -qjp -hpR -mqe -upm -rDm -iVK -xWy -xWy -wHp -pIY -ljC -gaU -gaU -xUd -qRL -gfe -oIo -oNN -mQf -rMF -bfL -fKB -fKB -uYw -uYw -uYw -rGb -eMB -uGf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(93,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -rDD -djg -uYw -uYw -uYw -uYw -jWA -jWA -uvY -iyd -cEa -rPm -jFF -twv -oAZ -dSC -xKC -nLm -tVp -xWy -wHp -pIY -gaU -uxr -fIr -igU -igU -igU -xMX -igU -igU -igU -igU -igU -igU -igU -vio -oNN -mYM -bGa -jfg -fKB -fKB -uYw -uYw -uYw -kHz -vlW -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(94,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -aaI -uYw -uYw -uYw -uYw -jWA -jWA -vxI -jjp -gcH -rPm -wmm -taE -qDd -qDd -qDd -qDd -qDd -qDd -rWR -qDd -qDd -qDd -bRb -uKq -vFO -jWg -iWV -gir -idB -bfR -bfR -okF -bfR -biZ -biZ -oNN -ktT -rkh -uXm -fKB -fKB -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(95,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -jWA -jWA -jWA -vQo -moe -jWA -iWV -iWV -iWV -iWV -iWV -iWV -iWV -iWV -iWV -giO -bfR -sXS -rvB -lem -rsE -edb -iWV -iWV -iWV -iWV -iWV -iWV -iWV -iWV -iWV -fKB -fKB -vxY -noj -fKB -fKB -bQm -uYw -uYw -kHz -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(96,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -vSo -jWA -jWA -hzv -jWA -jWA -iWV -iWV -iWV -iWV -iWV -iWV -iWV -iWV -iWV -iWV -skT -fcQ -oaF -gcz -sWZ -iWV -iWV -iWV -iWV -iWV -iWV -iWV -iWV -iWV -iWV -fKB -fKB -fIQ -fKB -fKB -jkS -bQm -uYw -uYw -tGd -tow -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(97,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -uAJ -uYw -uYw -uYw -uYw -uYw -uYw -jWA -nnA -jWA -uYw -uYw -uYw -tng -uYw -uYw -uYw -uYw -iWV -iWV -iWV -iWV -iWV -xkk -iWV -iWV -iWV -iWV -iWV -uYw -uYw -uYw -uYw -tng -uYw -uYw -uYw -fKB -xSm -fKB -bQm -uYw -uYw -uYw -uYw -uYw -dcy -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(98,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -eQC -eQC -eQC -eQC -eQC -jWA -xof -jWA -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -iWV -iWV -iWV -uNU -uBE -cOn -iWV -iWV -iWV -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -fKB -fdC -fKB -eQC -eQC -eQC -eQC -eQC -uYw -kHz -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(99,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -ehW -nGU -eQO -pGJ -pGJ -pGJ -nMC -ngm -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -iWV -iWV -xcw -qyL -pxI -iWV -iWV -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -iqx -kNV -xzj -xzj -xzj -luL -ura -jev -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(100,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rpE -aTh -aaI -ehW -erQ -nIc -sEd -olf -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tng -iWV -iWV -xGX -iWV -iWV -tng -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -olf -soX -oOh -fJa -jev -kHz -atx -rpE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(101,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -nTr -cFl -mYF -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -eUH -ioc -yfs -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -tGd -cFl -tow -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -neg -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(102,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -iIe -mYF -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -oZc -ioc -jGQ -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -tGd -hgL -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(103,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -eUH -ioc -yfs -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(104,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aaI -uYw -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -eUH -ioc -yfs -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(105,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -eUH -ioc -yfs -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(106,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -uAJ -uYw -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -eUH -ioc -yfs -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -uYw -dcy -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(107,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -eUH -ioc -yfs -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(108,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -eUH -ioc -yfs -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(109,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -eUH -ioc -yfs -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(110,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -rDD -djg -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -eUH -ioc -yfs -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -rGb -uGf -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(111,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -aaI -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -eUH -ioc -yfs -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -kHz -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(112,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -eUH -ioc -yfs -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(113,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -oZc -ioc -jGQ -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(114,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -eUH -ioc -yfs -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(115,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -tkp -tkp -tkp -tkp -pXl -vyz -fne -tkp -tkp -tkp -tkp -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(116,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -uAJ -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -uYw -tkp -tkp -tkp -tkp -tkp -tkp -tkp -tkp -uet -tkp -tkp -tkp -tkp -tkp -tkp -tkp -tkp -uYw -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -dcy -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(117,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -ehW -erQ -nIc -sEd -rip -erQ -nIc -sEd -jev -uYw -uYw -uYw -uYw -tkp -tkp -tkp -qnf -qnf -qnf -qnf -swH -khP -adU -khP -swH -qnf -qnf -qnf -qnf -tkp -tkp -tkp -uYw -uYw -uYw -uYw -ehW -soX -oOh -fJa -rip -soX -oOh -fJa -jev -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(118,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -ehW -erQ -iAt -sEd -rip -erQ -iAt -sEd -jev -uYw -uYw -uYw -tkp -tkp -tkp -fWe -qnf -aUj -aUj -aUj -aUj -aUj -jZW -aUj -aUj -aUj -aUj -aUj -qnf -sjy -tkp -tkp -tkp -uYw -uYw -uYw -ehW -soX -htf -fJa -rip -soX -htf -fJa -jev -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(119,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -idA -aaI -uYw -uYw -uYw -ePH -ePH -ePH -uYw -ePH -ePH -ePH -uYw -uYw -uYw -tkp -tkp -tkp -qnf -qnf -aUj -mDz -mDz -mDz -mDz -mDz -lnN -mDz -mDz -mDz -mDz -mDz -aUj -qnf -qnf -tkp -tkp -tkp -uYw -uYw -uYw -ePH -ePH -ePH -uYw -ePH -ePH -ePH -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(120,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -hSu -qnf -aUj -mDz -mDz -uhW -uNO -oum -cXD -fIk -cXD -oum -uNO -qYE -mDz -mDz -aUj -qnf -hSu -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(121,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -iIe -mYF -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -qnf -aUj -mDz -mDz -hIo -cFI -ydi -ydi -ydi -loi -lMQ -vno -vno -sdz -oki -mDz -mDz -aUj -qnf -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tGd -hgL -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(122,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -qnf -aUj -mDz -uhW -bCN -qjU -mGr -mGr -mGr -vrD -mGr -mGr -mGr -qKf -oqb -qYE -mDz -aUj -qnf -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(123,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -qnf -aUj -mDz -tKO -isq -wug -mGr -eIu -wcN -rNy -bMV -kDn -mGr -pyu -mWw -pah -mDz -aUj -qnf -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(124,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -qnf -aUj -mDz -qKf -xpT -dTa -mGr -vdC -wBl -uTP -pnw -sfU -mGr -dTa -dkt -qjU -mDz -aUj -qnf -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(125,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -qnf -aUj -mDz -eIy -xpT -mGr -uOe -sbw -wxO -pBm -iqw -ehm -twk -mGr -dkt -oyN -mDz -aUj -qnf -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(126,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -uAJ -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -fne -tkp -iEL -aUj -mDz -rAI -qjU -mGr -mwC -xkv -uQF -qfM -uQF -orY -hkb -mGr -hwI -qZb -mDz -aUj -hrB -tkp -fne -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -dcy -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(127,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -qnf -aUj -mDz -rWJ -evY -mGr -meZ -umU -uQF -aby -uQF -aCX -jWO -mGr -qfu -gWy -mDz -aUj -qnf -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(128,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -ksu -aUj -mDz -qKf -xpT -dTa -mGr -maW -uQF -mqi -uQF -pBE -mGr -dTa -dkt -qjU -mDz -aUj -sON -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(129,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -qnf -aUj -mDz -tKO -kzX -gWa -efM -gce -jHi -tah -ydi -dYG -ike -oDz -oOR -pah -mDz -aUj -qnf -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(130,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -qnf -aUj -mDz -pyu -dcW -jfS -mGr -mGr -mGr -vrD -mGr -mGr -mGr -qKf -isq -wug -mDz -aUj -qnf -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(131,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aTh -uAJ -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -qnf -aUj -mDz -mDz -lyR -uMK -rYg -yhZ -tUj -bUM -oKG -qLi -neL -cFI -sCx -mDz -mDz -aUj -qnf -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -dcy -atx -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(132,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -nTr -mYF -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -hSu -qnf -aUj -mDz -mDz -wSa -fik -fax -dLE -wPr -kNw -fax -tWj -aqc -mDz -mDz -aUj -qnf -hSu -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tGd -tow -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(133,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -tkp -qnf -qnf -aUj -mDz -mDz -fax -fax -lDR -wPK -xDi -fax -fax -mDz -mDz -aUj -qnf -qnf -tkp -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(134,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -tkp -iEL -qnf -aUj -aUj -fax -fax -lvn -abP -sIK -fax -fax -aUj -aUj -qnf -hrB -tkp -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(135,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -tkp -qnf -qnf -dkI -bLB -hyu -mJE -rIH -dxS -xYd -nnY -qnf -qnf -qnf -tkp -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(136,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -tkp -tkp -cXg -lWt -lWt -tfO -sjZ -lsL -lWt -lWt -tkp -tkp -tkp -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(137,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -uAJ -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -tkp -tkp -tkp -ykQ -pjy -pjy -pjy -oOK -lWt -lWt -lWt -tkp -tkp -tkp -tkp -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -dcy -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(138,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -rGb -eMB -djg -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -lWt -lWt -fcb -lWt -lWt -uYw -uYw -uYw -uYw -rGb -eMB -eMB -djg -uYw -uYw -rGb -eMB -djg -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(139,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -tXe -rDD -eMB -eMB -eMB -eMB -eMB -eMB -eMB -eMB -eMB -djg -uYw -uYw -uYw -hVK -uYw -uYw -uYw -rGb -eMB -eMB -jtL -tXe -tXe -dCk -eMB -eMB -uGf -tXe -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(140,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -tXe -tXe -tXe -eLH -tXe -tXe -tXe -tXe -tXe -tXe -tXe -rDD -djg -uYw -uYw -hVK -uYw -uYw -rGb -uGf -tXe -tXe -tXe -tXe -tXe -tXe -tXe -eLH -tXe -tXe -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(141,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -idA -dCk -djg -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -kHz -tXe -tXe -tXe -tXe -tXe -tXe -tXe -tXe -tXe -tXe -tXe -tXe -dCk -eMB -eMB -mae -eMB -eMB -jtL -tXe -tXe -tXe -tXe -tXe -tXe -tXe -tXe -tXe -tXe -tXe -aaI -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -rGb -jtL -gSd -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(142,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -rDD -djg -uYw -uYw -uYw -uYw -uYw -uYw -uYw -rGb -uGf -gYE -rZL -rtT -rZL -rZL -rZL -rZL -rZL -rZL -rtT -rZL -rZL -rZL -rZL -rZL -rtT -rZL -rZL -rZL -rZL -rZL -rtT -rZL -rZL -rZL -rZL -rZL -rZL -rZL -iQn -rDD -djg -uYw -uYw -uYw -uYw -uYw -uYw -uYw -uYw -rGb -uGf -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(143,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -cBU -dCk -eMB -eMB -eMB -jVl -eMB -eMB -eMB -jtL -gYE -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -iQn -dCk -eMB -eMB -eMB -eMB -jVl -eMB -eMB -eMB -jtL -vlW -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(144,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -rtT -rZL -rZL -rZL -rZL -rZL -rZL -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rZL -rZL -rZL -rZL -rZL -rZL -rZL -rZL -rtT -rZL -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(145,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(146,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(147,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(148,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(149,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -eML -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(150,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(151,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(152,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(153,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(154,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(155,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -ykE -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(156,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(157,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(158,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(159,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(160,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -www -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(161,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(162,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(163,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(164,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(165,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(166,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(167,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(168,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -rtT -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(169,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(170,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(171,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(172,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(173,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(174,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(175,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(176,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(177,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(178,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(179,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(180,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(181,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(182,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(183,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(184,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(185,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(186,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(187,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(188,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(189,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(190,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(191,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(192,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(193,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(194,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(195,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(196,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(197,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(198,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(199,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} -(200,1,5) = {" -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -wJN -"} From d224adf43c717e083db922031b122cb9cb681fec Mon Sep 17 00:00:00 2001 From: LordNest Date: Sun, 16 Mar 2025 21:04:52 +0400 Subject: [PATCH 26/60] Update job.dm --- code/game/jobs/job/job.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index a66d4d9f3dc9c..57fb80647e84b 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -57,7 +57,7 @@ var/faction = MOB_FACTION_CREW - var/global/psi_allowed_species = list(/datum/species/human,/datum/species/human/vatgrown,/datum/species/human/tritonian,/datum/species/human/gravworlder,/datum/species/human/spacer) // [SIERRA-ADD] - PSIONICS + var/global/psi_allowed_species = list(SPECIES_HUMAN,HUMAN_SPECIES) // [SIERRA-ADD] - PSIONICS /datum/job/New() @@ -77,7 +77,7 @@ // [SIERRA-ADD] - PSIONICS /datum/job/proc/give_psi(mob/living/carbon/human/H) - if(!(all_species[H.client.prefs.species].type in psi_allowed_species)) + if(!(GLOB.species_by_name[H.client.prefs.species].type in psi_allowed_species)) return if(psi_latency_chance && prob(psi_latency_chance)) From 78b2e8d18fdb0ec03b69a9ec7350e7d058c4fc9b Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Sun, 16 Mar 2025 18:37:27 +0100 Subject: [PATCH 27/60] =?UTF-8?q?=D0=9F=D0=BE=D1=87=D0=B8=D0=BD=D0=BA?= =?UTF-8?q?=D0=B0=20=D0=B2=D0=B2=D0=B8=D0=B4=D1=83=20GLOBAL=5FLIST=5FINIT?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../preference_setup/psionics/02_abilities.dm | 6 +- mods/psionics/code/misc/mindcontrol.dm | 109 ------------------ mods/psionics/code/misc/psi.dm | 2 +- 3 files changed, 4 insertions(+), 113 deletions(-) delete mode 100644 mods/psionics/code/misc/mindcontrol.dm diff --git a/code/modules/client/preference_setup/psionics/02_abilities.dm b/code/modules/client/preference_setup/psionics/02_abilities.dm index bc832f691e442..33c56a6dd26c3 100644 --- a/code/modules/client/preference_setup/psionics/02_abilities.dm +++ b/code/modules/client/preference_setup/psionics/02_abilities.dm @@ -1,12 +1,12 @@ // [SIERRA-ADD] - PSIONICS -GLOBAL_LIST_INIT(psi_level2cost, list( +GLOBAL_LIST_AS(psi_level2cost, list( "Blunt" = 0, "Latent" = 2, "Apprentice" = 6, "Operant" = 16 )) -GLOBAL_LIST_INIT(psi_faculty2color, list( +GLOBAL_LIST_AS(psi_faculty2color, list( "Coercion" = COLOR_RED, "Consciousness" = COLOR_SURGERY_BLUE, "Energistics" = COLOR_MEDICAL_UNKNOWN_IMPLANT, @@ -16,7 +16,7 @@ GLOBAL_LIST_INIT(psi_faculty2color, list( "Redaction" = MANIFEST_COLOR_SERVICE )) -GLOBAL_LIST_INIT(psi_threat_level2free_points, list(6, 8, 12, 16)) +GLOBAL_LIST_AS(psi_threat_level2free_points, list(6, 8, 12, 16)) /datum/preferences var/list/psi_abilities diff --git a/mods/psionics/code/misc/mindcontrol.dm b/mods/psionics/code/misc/mindcontrol.dm deleted file mode 100644 index 28ddb24daec3e..0000000000000 --- a/mods/psionics/code/misc/mindcontrol.dm +++ /dev/null @@ -1,109 +0,0 @@ -#define MIND_CONTROL_ALLOW_MOVE 1 -#define MIND_CONTROL_ALLOW_SAY 2 - -GLOBAL_LIST_INIT(diagonals, list(NORTHEAST, NORTHWEST, SOUTHEAST, SOUTHWEST)) - -/atom - var/datum/mind_control/mind_controller - -/atom/proc/set_control_mind(mob/living/victim, duration, flags) - if(!victim) - return FALSE - - if(!mind_controller) - mind_controller = new(src) - - mind_controller.control_flags = flags - - mind_controller.affected |= victim - mind_controller.affected[victim] = duration - -/// Mind Control datum start - -/datum/mind_control - var/atom/parent - - var/control_flags - var/list/affected = list() - - var/atom/target - -/datum/mind_control/New(atom/owner) - . = ..() - parent = owner - START_PROCESSING(SSfastprocess, src) - -/datum/mind_control/Destroy() - . = ..() - STOP_PROCESSING(SSfastprocess, src) - if(parent) - parent.mind_controller = null - -/datum/mind_control/Process() - if(!parent || !LAZYLEN(affected)) - qdel(src) - return - - var/list/slaves = affected.Copy() - for(var/mob/living/slave in slaves) - if(slave.stat == DEAD || affected[slave] <= 0) - affected -= slave - continue - - if(target) - walk_towards_target(slave) - - affected[slave] -= 0.2 SECOND - - if(!(control_flags & MIND_CONTROL_ALLOW_SAY)) - slave.silent = max(slave.silent, 2) - - if(!(control_flags & MIND_CONTROL_ALLOW_MOVE)) - slave.stunned = max(slave.stunned, 2) - -/datum/mind_control/proc/speak_through_affected(message) - for(var/mob/living/slave in affected) - var/old_silent = slave.silent - slave.silent = 0 - slave.say(message) - slave.silent = old_silent - -/datum/mind_control/proc/walk_towards_target(mob/living/slave) - if(slave == target) - return - - if(slave.z != target.z) - return - - slave.a_intent = I_HURT - slave.update_hud() - slave.resist() - - var/distance = get_dist(slave, target) - if(distance < ismob(target) ? 0 : 1) - return - - var/old_stun = slave.stunned - slave.stunned = 0 - - var/direction = get_dir(slave, target) - if(direction in GLOB.diagonals) - direction = turn(direction, pick(-45, 45)) - - var/old_loc = slave.loc - slave.SelfMove(direction) - - if(slave.loc == old_loc) - var/turf/blocked_turf = get_step(slave, direction) - var/list/possible_blockers = blocked_turf.contents + blocked_turf - - for(var/atom/thing as obj|mob|turf in possible_blockers) - - if(!thing.density) - continue - - possible_blockers += thing - - slave.ClickOn(pick(possible_blockers)) - - slave.stunned = old_stun diff --git a/mods/psionics/code/misc/psi.dm b/mods/psionics/code/misc/psi.dm index f2fc42bd6b387..7c6336b178db4 100644 --- a/mods/psionics/code/misc/psi.dm +++ b/mods/psionics/code/misc/psi.dm @@ -1,4 +1,4 @@ -GLOBAL_LIST_INIT(psychic_ranks_to_strings, list("Latent", "Apprentice", "Operant", "Masterclass", "Grandmasterclass")) +GLOBAL_LIST_AS(psychic_ranks_to_strings, list("Latent", "Apprentice", "Operant", "Masterclass", "Grandmasterclass")) PROCESSING_SUBSYSTEM_DEF(psi) name = "Psychics" From 2f38bda230a0ef1c70bd14abfd3d549df79d9e1f Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Mon, 17 Mar 2025 17:06:42 +0100 Subject: [PATCH 28/60] =?UTF-8?q?=D0=A1=D1=82=D0=B0=D0=B2=D0=B8=D0=BC=20?= =?UTF-8?q?=D0=BD=D0=B0=20=D0=BA=D0=BE=D1=81=D1=82=D1=8B=D0=BB=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/game/jobs/job/job.dm | 4 +--- mods/psionics/psionics_includes.dm | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index 57fb80647e84b..42a75e621aced 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -57,8 +57,6 @@ var/faction = MOB_FACTION_CREW - var/global/psi_allowed_species = list(SPECIES_HUMAN,HUMAN_SPECIES) // [SIERRA-ADD] - PSIONICS - /datum/job/New() @@ -77,7 +75,7 @@ // [SIERRA-ADD] - PSIONICS /datum/job/proc/give_psi(mob/living/carbon/human/H) - if(!(GLOB.species_by_name[H.client.prefs.species].type in psi_allowed_species)) + if(!(GLOB.species_by_name[SPECIES_HUMAN]) || !(GLOB.species_by_name[SPECIES_VATGROWN]) || !(GLOB.species_by_name[SPECIES_SPACER]) || !(GLOB.species_by_name[SPECIES_GRAVWORLDER]) || !(GLOB.species_by_name[SPECIES_MULE])) return if(psi_latency_chance && prob(psi_latency_chance)) diff --git a/mods/psionics/psionics_includes.dm b/mods/psionics/psionics_includes.dm index ab1dd923f0d2f..7b05ecfe07858 100644 --- a/mods/psionics/psionics_includes.dm +++ b/mods/psionics/psionics_includes.dm @@ -6,7 +6,6 @@ #include "code/misc/psi.dm" #include "code/misc/decoyobj.dm" -#include "code/misc/mindcontrol.dm" #include "code/complexus/complexus_helpers.dm" #include "code/complexus/complexus_latency.dm" #include "code/complexus/complexus_power_cache.dm" From 9f7331ae2af4ddb9cbdbde46392c4816869747a5 Mon Sep 17 00:00:00 2001 From: Rochehendson Date: Mon, 17 Mar 2025 18:08:59 +0100 Subject: [PATCH 29/60] =?UTF-8?q?=D0=94=D0=B5=D1=84=D0=B0=D0=B9=D0=BD?= =?UTF-8?q?=D1=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/__defines/psi.dm | 5 +++-- code/__defines/~mods/~master_defines.dm | 8 +++++++ mods/dev_mode/code/dev_map/dev_define.dm | 16 -------------- .../code/equipment/foundation_implanter.dm | 22 +++++++++++++++++++ mods/psionics/code/equipment/implant.dm | 22 +++++++++++++++++++ mods/psionics/code/equipment/psimonitor.dm | 22 +++++++++++++++++++ 6 files changed, 77 insertions(+), 18 deletions(-) diff --git a/code/__defines/psi.dm b/code/__defines/psi.dm index 1401abcf5fb37..31146726fafc0 100644 --- a/code/__defines/psi.dm +++ b/code/__defines/psi.dm @@ -1,10 +1,11 @@ -// [SIERRA-ADD] - PSIONICS +// [SIERRA-EDIT] - PSIONICS +/* #define PSI_IMPLANT_AUTOMATIC "Security Level Derived" #define PSI_IMPLANT_SHOCK "Issue Neural Shock" #define PSI_IMPLANT_WARN "Issue Reprimand" #define PSI_IMPLANT_LOG "Log Incident" #define PSI_IMPLANT_DISABLED "Disabled" -/* + #define PSI_COERCION "coercion" #define PSI_PSYCHOKINESIS "psychokinesis" #define PSI_REDACTION "redaction" diff --git a/code/__defines/~mods/~master_defines.dm b/code/__defines/~mods/~master_defines.dm index 6893379bdda96..df0e2d584358b 100644 --- a/code/__defines/~mods/~master_defines.dm +++ b/code/__defines/~mods/~master_defines.dm @@ -105,3 +105,11 @@ #define LANGUAGE_SIMPUNATHI "Iber'Unathi" #define LANGUAGE_SIMPTAJARAN "Simplified Siik'Maas" //PRIMLANGS - End + +// PSIONICS - Start +#define PSI_IMPLANT_AUTOMATIC "Security Level Derived" +#define PSI_IMPLANT_SHOCK "Issue Neural Shock" +#define PSI_IMPLANT_WARN "Issue Reprimand" +#define PSI_IMPLANT_LOG "Log Incident" +#define PSI_IMPLANT_DISABLED "Disabled" +// PSIONICS - End diff --git a/mods/dev_mode/code/dev_map/dev_define.dm b/mods/dev_mode/code/dev_map/dev_define.dm index cbb976bc6b4d5..3382a9b2b8c3d 100644 --- a/mods/dev_mode/code/dev_map/dev_define.dm +++ b/mods/dev_mode/code/dev_map/dev_define.dm @@ -104,19 +104,3 @@ RELIGION_TAOISM ) ) - -#ifndef PSI_IMPLANT_AUTOMATIC -#define PSI_IMPLANT_AUTOMATIC "Security Level Derived" -#endif -#ifndef PSI_IMPLANT_SHOCK -#define PSI_IMPLANT_SHOCK "Issue Neural Shock" -#endif -#ifndef PSI_IMPLANT_WARN -#define PSI_IMPLANT_WARN "Issue Reprimand" -#endif -#ifndef PSI_IMPLANT_LOG -#define PSI_IMPLANT_LOG "Log Incident" -#endif -#ifndef PSI_IMPLANT_DISABLED -#define PSI_IMPLANT_DISABLED "Disabled" -#endif diff --git a/mods/psionics/code/equipment/foundation_implanter.dm b/mods/psionics/code/equipment/foundation_implanter.dm index df190270dd60a..0db61b4dbc7fa 100644 --- a/mods/psionics/code/equipment/foundation_implanter.dm +++ b/mods/psionics/code/equipment/foundation_implanter.dm @@ -1,3 +1,19 @@ +#ifndef PSI_IMPLANT_AUTOMATIC +#define PSI_IMPLANT_AUTOMATIC "Security Level Derived" +#endif +#ifndef PSI_IMPLANT_SHOCK +#define PSI_IMPLANT_SHOCK "Issue Neural Shock" +#endif +#ifndef PSI_IMPLANT_WARN +#define PSI_IMPLANT_WARN "Issue Reprimand" +#endif +#ifndef PSI_IMPLANT_LOG +#define PSI_IMPLANT_LOG "Log Incident" +#endif +#ifndef PSI_IMPLANT_DISABLED +#define PSI_IMPLANT_DISABLED "Disabled" +#endif + /obj/item/implanter/psi name = "psi-null implanter" desc = "An implant gun customized to interact with psi dampeners." @@ -16,3 +32,9 @@ /obj/item/implanter/psi/New() ..() imp = new /obj/item/implant/psi_control(src) + +#undef PSI_IMPLANT_AUTOMATIC +#undef PSI_IMPLANT_SHOCK +#undef PSI_IMPLANT_WARN +#undef PSI_IMPLANT_LOG +#undef PSI_IMPLANT_DISABLED diff --git a/mods/psionics/code/equipment/implant.dm b/mods/psionics/code/equipment/implant.dm index 3157821616eb3..d5217fac68da3 100644 --- a/mods/psionics/code/equipment/implant.dm +++ b/mods/psionics/code/equipment/implant.dm @@ -1,3 +1,19 @@ +#ifndef PSI_IMPLANT_AUTOMATIC +#define PSI_IMPLANT_AUTOMATIC "Security Level Derived" +#endif +#ifndef PSI_IMPLANT_SHOCK +#define PSI_IMPLANT_SHOCK "Issue Neural Shock" +#endif +#ifndef PSI_IMPLANT_WARN +#define PSI_IMPLANT_WARN "Issue Reprimand" +#endif +#ifndef PSI_IMPLANT_LOG +#define PSI_IMPLANT_LOG "Log Incident" +#endif +#ifndef PSI_IMPLANT_DISABLED +#define PSI_IMPLANT_DISABLED "Disabled" +#endif + /obj/item/implant/psi_control name = "psi dampener implant" desc = "A safety implant for registered psi-operants." @@ -111,3 +127,9 @@ for(var/report in SSpsi.psi_monitors) var/obj/machinery/psi_monitor/monitor = report monitor.report_violation(src, stress) + +#undef PSI_IMPLANT_AUTOMATIC +#undef PSI_IMPLANT_SHOCK +#undef PSI_IMPLANT_WARN +#undef PSI_IMPLANT_LOG +#undef PSI_IMPLANT_DISABLED diff --git a/mods/psionics/code/equipment/psimonitor.dm b/mods/psionics/code/equipment/psimonitor.dm index 60db32805fac2..a276c213047f0 100644 --- a/mods/psionics/code/equipment/psimonitor.dm +++ b/mods/psionics/code/equipment/psimonitor.dm @@ -1,3 +1,19 @@ +#ifndef PSI_IMPLANT_AUTOMATIC +#define PSI_IMPLANT_AUTOMATIC "Security Level Derived" +#endif +#ifndef PSI_IMPLANT_SHOCK +#define PSI_IMPLANT_SHOCK "Issue Neural Shock" +#endif +#ifndef PSI_IMPLANT_WARN +#define PSI_IMPLANT_WARN "Issue Reprimand" +#endif +#ifndef PSI_IMPLANT_LOG +#define PSI_IMPLANT_LOG "Log Incident" +#endif +#ifndef PSI_IMPLANT_DISABLED +#define PSI_IMPLANT_DISABLED "Disabled" +#endif + /obj/machinery/psi_monitor name = "psionic implant monitor" icon = 'icons/obj/machines/research/psimeter.dmi' @@ -120,3 +136,9 @@ /obj/machinery/psi_monitor/proc/report_violation(obj/item/implant/psi_control/implant, stress) psi_violations += "Stress [round(stress/10)] event - [implant.imp_in.name]." + +#undef PSI_IMPLANT_AUTOMATIC +#undef PSI_IMPLANT_SHOCK +#undef PSI_IMPLANT_WARN +#undef PSI_IMPLANT_LOG +#undef PSI_IMPLANT_DISABLED From a6c75b3046959d4160882993fe98f62fa3c7c631 Mon Sep 17 00:00:00 2001 From: nasend <85687271+nasendd@users.noreply.github.com> Date: Tue, 6 May 2025 21:29:17 +0300 Subject: [PATCH 30/60] modular 1 --- baystation12.dme | 84 +++++++++---------- code/modules/psionics/complexus/complexus.dm | 4 - .../psionics/complexus/complexus_helpers.dm | 4 - .../psionics/complexus/complexus_latency.dm | 4 - .../complexus/complexus_power_cache.dm | 4 - .../psionics/complexus/complexus_process.dm | 4 - .../psionics/complexus/complexus_topic.dm | 4 - .../psionics/equipment/cerebro_enhancers.dm | 4 - .../equipment/foundation_implanter.dm | 4 - .../psionics/equipment/foundation_weapon.dm | 4 - code/modules/psionics/equipment/implant.dm | 4 - code/modules/psionics/equipment/null_ammo.dm | 4 - code/modules/psionics/equipment/psimeter.dm | 4 - code/modules/psionics/equipment/psimonitor.dm | 4 - code/modules/psionics/equipment/psipower.dm | 4 - .../psionics/equipment/psipower_blade.dm | 4 - .../psionics/equipment/psipower_tinker.dm | 4 - .../modules/psionics/equipment/psipower_tk.dm | 4 - code/modules/psionics/events/_psi.dm | 4 - code/modules/psionics/events/mini_spasm.dm | 4 - code/modules/psionics/events/psi_balm.dm | 4 - code/modules/psionics/events/psi_wail.dm | 4 - code/modules/psionics/faculties/_faculty.dm | 4 - code/modules/psionics/faculties/_power.dm | 4 - code/modules/psionics/faculties/coercion.dm | 4 - .../modules/psionics/faculties/energistics.dm | 4 - .../psionics/faculties/psychokinesis.dm | 4 - code/modules/psionics/faculties/redaction.dm | 4 - code/modules/psionics/interface/ui.dm | 4 - code/modules/psionics/interface/ui_hub.dm | 4 - code/modules/psionics/interface/ui_toggles.dm | 4 - code/modules/psionics/mob/mob.dm | 4 - code/modules/psionics/mob/mob_assay.dm | 4 - code/modules/psionics/mob/mob_interactions.dm | 4 - code/modules/psionics/null/_null.dm | 4 - code/modules/psionics/null/chemistry.dm | 4 - code/modules/psionics/null/flooring.dm | 4 - code/modules/psionics/null/material.dm | 4 - code/modules/psionics/null/material_sheet.dm | 4 - code/modules/psionics/null/material_weapon.dm | 4 - code/modules/psionics/null/turf_floor.dm | 4 - code/modules/psionics/null/turf_wall.dm | 4 - 42 files changed, 42 insertions(+), 206 deletions(-) diff --git a/baystation12.dme b/baystation12.dme index 73e500e7350aa..201bd6da41ed4 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -2885,48 +2885,48 @@ #include "code\modules\projectiles\targeting\targeting_mob.dm" #include "code\modules\projectiles\targeting\targeting_overlay.dm" #include "code\modules\projectiles\targeting\targeting_triggers.dm" -#include "code\modules\psionics\complexus\complexus.dm" -#include "code\modules\psionics\complexus\complexus_helpers.dm" -#include "code\modules\psionics\complexus\complexus_latency.dm" -#include "code\modules\psionics\complexus\complexus_power_cache.dm" -#include "code\modules\psionics\complexus\complexus_process.dm" -#include "code\modules\psionics\complexus\complexus_topic.dm" -#include "code\modules\psionics\equipment\cerebro_enhancers.dm" -#include "code\modules\psionics\equipment\foundation_implanter.dm" -#include "code\modules\psionics\equipment\foundation_weapon.dm" -#include "code\modules\psionics\equipment\implant.dm" -#include "code\modules\psionics\equipment\null_ammo.dm" -#include "code\modules\psionics\equipment\psimeter.dm" -#include "code\modules\psionics\equipment\psimonitor.dm" -#include "code\modules\psionics\equipment\psipower.dm" -#include "code\modules\psionics\equipment\psipower_blade.dm" -#include "code\modules\psionics\equipment\psipower_tinker.dm" -#include "code\modules\psionics\equipment\psipower_tk.dm" -#include "code\modules\psionics\events\_psi.dm" -#include "code\modules\psionics\events\mini_spasm.dm" -#include "code\modules\psionics\events\psi_balm.dm" -#include "code\modules\psionics\events\psi_wail.dm" -#include "code\modules\psionics\faculties\_faculty.dm" -#include "code\modules\psionics\faculties\_power.dm" -#include "code\modules\psionics\faculties\coercion.dm" -#include "code\modules\psionics\faculties\energistics.dm" -#include "code\modules\psionics\faculties\psychokinesis.dm" -#include "code\modules\psionics\faculties\redaction.dm" -#include "code\modules\psionics\interface\ui.dm" -#include "code\modules\psionics\interface\ui_hub.dm" -#include "code\modules\psionics\interface\ui_toggles.dm" -#include "code\modules\psionics\mob\mob.dm" -#include "code\modules\psionics\mob\mob_assay.dm" -#include "code\modules\psionics\mob\mob_interactions.dm" -#include "code\modules\psionics\null\_null.dm" -#include "code\modules\psionics\null\chemistry.dm" -#include "code\modules\psionics\null\flooring.dm" -#include "code\modules\psionics\null\material.dm" -#include "code\modules\psionics\null\material_sheet.dm" -#include "code\modules\psionics\null\material_weapon.dm" -#include "code\modules\psionics\null\turf_floor.dm" -#include "code\modules\psionics\null\turf_wall.dm" -#include "code\modules\psionics\null\~null.dm" +// #include "code\modules\psionics\complexus\complexus.dm" +// #include "code\modules\psionics\complexus\complexus_helpers.dm" +// #include "code\modules\psionics\complexus\complexus_latency.dm" +// #include "code\modules\psionics\complexus\complexus_power_cache.dm" +// #include "code\modules\psionics\complexus\complexus_process.dm" +// #include "code\modules\psionics\complexus\complexus_topic.dm" +// #include "code\modules\psionics\equipment\cerebro_enhancers.dm" +// #include "code\modules\psionics\equipment\foundation_implanter.dm" +// #include "code\modules\psionics\equipment\foundation_weapon.dm" +// #include "code\modules\psionics\equipment\implant.dm" +// #include "code\modules\psionics\equipment\null_ammo.dm" +// #include "code\modules\psionics\equipment\psimeter.dm" +// #include "code\modules\psionics\equipment\psimonitor.dm" +// #include "code\modules\psionics\equipment\psipower.dm" +// #include "code\modules\psionics\equipment\psipower_blade.dm" +// #include "code\modules\psionics\equipment\psipower_tinker.dm" +// #include "code\modules\psionics\equipment\psipower_tk.dm" +// #include "code\modules\psionics\events\_psi.dm" +// #include "code\modules\psionics\events\mini_spasm.dm" +// #include "code\modules\psionics\events\psi_balm.dm" +// #include "code\modules\psionics\events\psi_wail.dm" +// #include "code\modules\psionics\faculties\_faculty.dm" +// #include "code\modules\psionics\faculties\_power.dm" +// #include "code\modules\psionics\faculties\coercion.dm" +// #include "code\modules\psionics\faculties\energistics.dm" +// #include "code\modules\psionics\faculties\psychokinesis.dm" +// #include "code\modules\psionics\faculties\redaction.dm" +// #include "code\modules\psionics\interface\ui.dm" +// #include "code\modules\psionics\interface\ui_hub.dm" +// #include "code\modules\psionics\interface\ui_toggles.dm" +// #include "code\modules\psionics\mob\mob.dm" +// #include "code\modules\psionics\mob\mob_assay.dm" +// #include "code\modules\psionics\mob\mob_interactions.dm" +// #include "code\modules\psionics\null\_null.dm" +// #include "code\modules\psionics\null\chemistry.dm" +// #include "code\modules\psionics\null\flooring.dm" +// #include "code\modules\psionics\null\material.dm" +// #include "code\modules\psionics\null\material_sheet.dm" +// #include "code\modules\psionics\null\material_weapon.dm" +// #include "code\modules\psionics\null\turf_floor.dm" +// #include "code\modules\psionics\null\turf_wall.dm" +// #include "code\modules\psionics\null\~null.dm" #include "code\modules\radiation\radiation.dm" #include "code\modules\random_map\_random_map_setup.dm" #include "code\modules\random_map\random_map.dm" diff --git a/code/modules/psionics/complexus/complexus.dm b/code/modules/psionics/complexus/complexus.dm index b20ec0b55db25..07916ae0f1484 100644 --- a/code/modules/psionics/complexus/complexus.dm +++ b/code/modules/psionics/complexus/complexus.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /datum/psi_complexus var/announced = FALSE // Whether or not we have been announced to our holder yet. @@ -94,5 +92,3 @@ qdel(thing) manifested_items.Cut() . = ..() -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/complexus/complexus_helpers.dm b/code/modules/psionics/complexus/complexus_helpers.dm index 6e2dcb09a2ddd..86b969c70c850 100644 --- a/code/modules/psionics/complexus/complexus_helpers.dm +++ b/code/modules/psionics/complexus/complexus_helpers.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /datum/psi_complexus/proc/cancel() sound_to(owner, sound('sound/effects/psi/power_fail.ogg')) if(LAZYLEN(manifested_items)) @@ -104,5 +102,3 @@ stamina = min(stamina, max_stamina) cancel() update() -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/complexus/complexus_latency.dm b/code/modules/psionics/complexus/complexus_latency.dm index df402fde9394c..3511c3ae0d655 100644 --- a/code/modules/psionics/complexus/complexus_latency.dm +++ b/code/modules/psionics/complexus/complexus_latency.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /datum/psi_complexus/proc/check_latency_trigger(trigger_strength = 0, source, redactive = FALSE) if(!LAZYLEN(latencies) || world.time < next_latency_trigger) @@ -18,5 +16,3 @@ if(!redactive) owner.adjustBrainLoss(rand(trigger_strength * 2, trigger_strength * 4)) log_and_message_admins("gained the [faculty_singleton.name] psionic faculty by: [source].", owner) return TRUE -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/complexus/complexus_power_cache.dm b/code/modules/psionics/complexus/complexus_power_cache.dm index de1b80ae18624..0aad4bf1637f2 100644 --- a/code/modules/psionics/complexus/complexus_power_cache.dm +++ b/code/modules/psionics/complexus/complexus_power_cache.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /datum/psi_complexus/proc/rebuild_power_cache() if(rebuild_power_cache) @@ -49,5 +47,3 @@ /datum/psi_complexus/proc/get_manifestations() rebuild_power_cache() return manifestation_powers -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/complexus/complexus_process.dm b/code/modules/psionics/complexus/complexus_process.dm index e8717a498967a..3bfe06733cece 100644 --- a/code/modules/psionics/complexus/complexus_process.dm +++ b/code/modules/psionics/complexus/complexus_process.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /datum/psi_complexus/proc/update(force) set waitfor = FALSE @@ -250,5 +248,3 @@ owner.adjustOxyLoss(-(heal_rate)) if(prob(25)) to_chat(owner, SPAN_NOTICE("Your skin crawls as your autoredactive faculty heals your body.")) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/complexus/complexus_topic.dm b/code/modules/psionics/complexus/complexus_topic.dm index e3b2803e115d0..e785e99983a62 100644 --- a/code/modules/psionics/complexus/complexus_topic.dm +++ b/code/modules/psionics/complexus/complexus_topic.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /datum/psi_complexus/CanUseTopic(mob/user, datum/topic_state/state = GLOB.default_state) return (user.client && check_rights(R_ADMIN, FALSE, user.client)) @@ -20,5 +18,3 @@ var/datum/admins/admin = GLOB.admins[usr.key] if(istype(admin)) admin.show_player_panel(owner) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/cerebro_enhancers.dm b/code/modules/psionics/equipment/cerebro_enhancers.dm index 945edae342a9a..3ab8a5c9fb92f 100644 --- a/code/modules/psionics/equipment/cerebro_enhancers.dm +++ b/code/modules/psionics/equipment/cerebro_enhancers.dm @@ -1,6 +1,4 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) //Psi-boosting item (antag only) -/* /obj/item/clothing/head/helmet/space/psi_amp name = "cerebro-energetic enhancer" desc = "A matte-black, eyeless cerebro-energetic enhancement helmet. It uses highly sophisticated, and illegal, techniques to drill into your brain and install psi-infected AIs into the fluid cavities between your lobes." @@ -167,5 +165,3 @@ H.update_action_buttons() set_light(3, 0.5, l_color = "#880000") -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/foundation_implanter.dm b/code/modules/psionics/equipment/foundation_implanter.dm index 43c04f951755b..df190270dd60a 100644 --- a/code/modules/psionics/equipment/foundation_implanter.dm +++ b/code/modules/psionics/equipment/foundation_implanter.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /obj/item/implanter/psi name = "psi-null implanter" desc = "An implant gun customized to interact with psi dampeners." @@ -18,5 +16,3 @@ /obj/item/implanter/psi/New() ..() imp = new /obj/item/implant/psi_control(src) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/foundation_weapon.dm b/code/modules/psionics/equipment/foundation_weapon.dm index 3174419e03945..f259ca3e58c33 100644 --- a/code/modules/psionics/equipment/foundation_weapon.dm +++ b/code/modules/psionics/equipment/foundation_weapon.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /obj/item/gun/projectile/revolver/foundation name = "\improper Foundation revolver" icon = 'icons/obj/guns/foundation.dmi' @@ -24,5 +22,3 @@ new /obj/item/ammo_magazine/speedloader/magnum/nullglass(src) new /obj/item/gun/projectile/revolver/foundation(src) make_exact_fit() -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/implant.dm b/code/modules/psionics/equipment/implant.dm index 259ea8375f374..dff6440aa345a 100644 --- a/code/modules/psionics/equipment/implant.dm +++ b/code/modules/psionics/equipment/implant.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /obj/item/implant/psi_control name = "psi dampener implant" desc = "A safety implant for registered psi-operants." @@ -108,5 +106,3 @@ if(M.psi) M.psi.stunned(5) else if(use_psi_mode == PSI_IMPLANT_WARN) to_chat(imp_in, SPAN_WARNING("Your psi dampener primly informs you it has reported this violation.")) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/null_ammo.dm b/code/modules/psionics/equipment/null_ammo.dm index f93ff612bfdc9..162f85453c71c 100644 --- a/code/modules/psionics/equipment/null_ammo.dm +++ b/code/modules/psionics/equipment/null_ammo.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /obj/item/projectile/bullet/nullglass name = "nullglass bullet" damage = 40 @@ -18,5 +16,3 @@ /obj/item/ammo_magazine/speedloader/magnum/nullglass ammo_type = /obj/item/ammo_casing/pistol/magnum/nullglass -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/psimeter.dm b/code/modules/psionics/equipment/psimeter.dm index 5987f64911e3f..268d583be7f53 100644 --- a/code/modules/psionics/equipment/psimeter.dm +++ b/code/modules/psionics/equipment/psimeter.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /obj/machinery/psi_meter name = "psi-meter" desc = "A bulky psi-meter for conducting assays of psi-operants." @@ -71,5 +69,3 @@ if(refresh) interact(usr) return TRUE -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/psimonitor.dm b/code/modules/psionics/equipment/psimonitor.dm index 96af6459d574f..c363623d6dc7e 100644 --- a/code/modules/psionics/equipment/psimonitor.dm +++ b/code/modules/psionics/equipment/psimonitor.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /obj/machinery/psi_monitor name = "psionic implant monitor" icon = 'icons/obj/machines/research/psimeter.dmi' @@ -117,5 +115,3 @@ /obj/machinery/psi_monitor/proc/report_violation(obj/item/implant/psi_control/implant, stress) psi_violations += "Sigma [round(stress/10)] event - [implant.imp_in.name]." -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/psipower.dm b/code/modules/psionics/equipment/psipower.dm index eb1e2cf44b76c..359f24e4a393f 100644 --- a/code/modules/psionics/equipment/psipower.dm +++ b/code/modules/psionics/equipment/psipower.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /obj/item/psychic_power name = "psychic power" icon = 'icons/obj/psychic_powers.dmi' @@ -62,5 +60,3 @@ host.drop_from_inventory(src) else qdel(src) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/psipower_blade.dm b/code/modules/psionics/equipment/psipower_blade.dm index ef0daa9794d7c..867967ee037ba 100644 --- a/code/modules/psionics/equipment/psipower_blade.dm +++ b/code/modules/psionics/equipment/psipower_blade.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /obj/item/psychic_power/psiblade name = "psychokinetic slash" force = 10 @@ -21,5 +19,3 @@ force = 50 maintain_cost = 4 icon_state = "psiblade_long" -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/psipower_tinker.dm b/code/modules/psionics/equipment/psipower_tinker.dm index 8b3b6d30634e3..9b78389f40b27 100644 --- a/code/modules/psionics/equipment/psipower_tinker.dm +++ b/code/modules/psionics/equipment/psipower_tinker.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /obj/item/psychic_power/tinker name = "psychokinetic crowbar" icon_state = "tinker" @@ -39,5 +37,3 @@ name = "psychokinetic [lowertext(emulating)]" to_chat(owner, SPAN_NOTICE("You begin emulating \a [lowertext(emulating)].")) sound_to(owner, 'sound/effects/psi/power_fabrication.ogg') -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/equipment/psipower_tk.dm b/code/modules/psionics/equipment/psipower_tk.dm index d8ec663d220e2..6fef9a45f0561 100644 --- a/code/modules/psionics/equipment/psipower_tk.dm +++ b/code/modules/psionics/equipment/psipower_tk.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /obj/item/psychic_power/telekinesis name = "telekinetic grip" maintain_cost = 6 @@ -105,5 +103,3 @@ flick("empdisable",O) sleep(5) qdel(O) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/events/_psi.dm b/code/modules/psionics/events/_psi.dm index 309ae0a5508a7..14fa2cef20cea 100644 --- a/code/modules/psionics/events/_psi.dm +++ b/code/modules/psionics/events/_psi.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /datum/event/psi startWhen = 30 endWhen = 120 @@ -24,5 +22,3 @@ /datum/event/psi/proc/apply_psi_effect(datum/psi_complexus/psi) return -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/events/mini_spasm.dm b/code/modules/psionics/events/mini_spasm.dm index e3fb052a20137..ab3270cdaee95 100644 --- a/code/modules/psionics/events/mini_spasm.dm +++ b/code/modules/psionics/events/mini_spasm.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /datum/event/minispasm startWhen = 60 endWhen = 90 @@ -67,5 +65,3 @@ "PRIORITY ALERT: SIGNAL BROADCAST HAS CEASED. Personnel are cleared to resume use of non-hardened radio transmission equipment. Have a nice day.", \ "Cuchulain Sensor Array Automated Message" \ ) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/events/psi_balm.dm b/code/modules/psionics/events/psi_balm.dm index f16abf7a19a10..6859e9203e61a 100644 --- a/code/modules/psionics/events/psi_balm.dm +++ b/code/modules/psionics/events/psi_balm.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /datum/event/psi/balm var/static/list/balm_messages = list( "A soothing balm washes over your psyche.", @@ -20,5 +18,3 @@ soothed = TRUE if(soothed && prob(10)) to_chat(psi.owner, SPAN_NOTICE("[pick(balm_messages)]")) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/events/psi_wail.dm b/code/modules/psionics/events/psi_wail.dm index 6e2741cea5d8e..59f2691c386ab 100644 --- a/code/modules/psionics/events/psi_wail.dm +++ b/code/modules/psionics/events/psi_wail.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /datum/event/psi/wail var/static/list/whine_messages = list( "A nerve-tearing psychic whine intrudes on your thoughts.", @@ -17,5 +15,3 @@ annoyed = TRUE if(annoyed && prob(1)) to_chat(psi.owner, SPAN_NOTICE("[pick(whine_messages)]")) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/faculties/_faculty.dm b/code/modules/psionics/faculties/_faculty.dm index 6d0585122bbd7..5df834831bae5 100644 --- a/code/modules/psionics/faculties/_faculty.dm +++ b/code/modules/psionics/faculties/_faculty.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /singleton/psionic_faculty var/id var/name @@ -11,5 +9,3 @@ ..() for(var/atype in armour_types) SSpsi.armour_faculty_by_type[atype] = id -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/faculties/_power.dm b/code/modules/psionics/faculties/_power.dm index dd6cd26ba3fff..e9ee3fad1d25d 100644 --- a/code/modules/psionics/faculties/_power.dm +++ b/code/modules/psionics/faculties/_power.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /singleton/psionic_power abstract_type = /singleton/psionic_power var/name // Name. If null, psipower won't be generated on roundstart. @@ -47,5 +45,3 @@ admin_attack_log(user, target, "Used psipower ([name])", "Was subjected to a psipower ([name])", "used a psipower ([name]) on") if(use_sound) playsound(user.loc, use_sound, 75) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/faculties/coercion.dm b/code/modules/psionics/faculties/coercion.dm index 4c399ad3c17b6..96ce2d88d0750 100644 --- a/code/modules/psionics/faculties/coercion.dm +++ b/code/modules/psionics/faculties/coercion.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /singleton/psionic_faculty/coercion id = PSI_COERCION name = "Coercion" @@ -224,5 +222,3 @@ var/mob/living/carbon/M = target M.adjust_hallucination(-30) return TRUE -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/faculties/energistics.dm b/code/modules/psionics/faculties/energistics.dm index 71a7486599f0d..479d383b3b18f 100644 --- a/code/modules/psionics/faculties/energistics.dm +++ b/code/modules/psionics/faculties/energistics.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /singleton/psionic_faculty/energistics id = PSI_ENERGISTICS name = "Energistics" @@ -116,5 +114,3 @@ sparks.set_up(3, 0, get_turf(target)) sparks.start() return TRUE -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/faculties/psychokinesis.dm b/code/modules/psionics/faculties/psychokinesis.dm index 3fd1454995d7d..d2118b9606a72 100644 --- a/code/modules/psionics/faculties/psychokinesis.dm +++ b/code/modules/psionics/faculties/psychokinesis.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /singleton/psionic_faculty/psychokinesis id = PSI_PSYCHOKINESIS name = "Psychokinesis" @@ -93,5 +91,3 @@ machine.attack_hand(user) return TRUE return FALSE -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/faculties/redaction.dm b/code/modules/psionics/faculties/redaction.dm index 8626bcc4a369d..48b7524d2e7af 100644 --- a/code/modules/psionics/faculties/redaction.dm +++ b/code/modules/psionics/faculties/redaction.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /singleton/psionic_faculty/redaction id = PSI_REDACTION name = "Redaction" @@ -190,5 +188,3 @@ target.adjustOxyLoss(-rand(15,20)) target.basic_revival() return TRUE -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/interface/ui.dm b/code/modules/psionics/interface/ui.dm index 32097a0369973..032cfcaf8eb68 100644 --- a/code/modules/psionics/interface/ui.dm +++ b/code/modules/psionics/interface/ui.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /obj/screen/psi icon = 'icons/screen/psi.dmi' var/mob/living/owner @@ -21,5 +19,3 @@ invisibility = INVISIBILITY_ABSTRACT else invisibility = 0 -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/interface/ui_hub.dm b/code/modules/psionics/interface/ui_hub.dm index e5094470cbb41..02ca853d12b0f 100644 --- a/code/modules/psionics/interface/ui_hub.dm +++ b/code/modules/psionics/interface/ui_hub.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /obj/screen/psi/hub name = "Psi" icon_state = "psi_suppressed" @@ -71,5 +69,3 @@ sound_to(owner, sound('sound/effects/psi/power_unlock.ogg')) owner.psi.show_auras() update_icon() -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/interface/ui_toggles.dm b/code/modules/psionics/interface/ui_toggles.dm index d7180ac1de1a7..f69c1ed8c480e 100644 --- a/code/modules/psionics/interface/ui_toggles.dm +++ b/code/modules/psionics/interface/ui_toggles.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* // Begin psi armour toggle. /obj/screen/psi/armour name = "Psi-Armour" @@ -45,5 +43,3 @@ else icon_state = "arrow_right" // End menu toggle. -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/mob/mob.dm b/code/modules/psionics/mob/mob.dm index a8cf12eed587a..e059eb0d2bd23 100644 --- a/code/modules/psionics/mob/mob.dm +++ b/code/modules/psionics/mob/mob.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /mob/living var/datum/psi_complexus/psi @@ -32,5 +30,3 @@ to_chat(src, SPAN_DANGER("\The [attacker] strikes out with a mental attack, but you deflect it!")) return TRUE return FALSE -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/mob/mob_assay.dm b/code/modules/psionics/mob/mob_assay.dm index ca6128d2b6d81..272afa2733345 100644 --- a/code/modules/psionics/mob/mob_assay.dm +++ b/code/modules/psionics/mob/mob_assay.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /mob/living/proc/show_psi_assay(mob/viewer, obj/machinery/psi_meter/machine) if(!viewer) viewer = usr @@ -93,5 +91,3 @@ var/datum/browser/popup = new(viewer, "psi_assay_\ref[src]", "Psi-Assay") popup.set_content(jointext(dat,null)) popup.open() -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/mob/mob_interactions.dm b/code/modules/psionics/mob/mob_interactions.dm index 7ac8a0fa4b2b2..5a3955f20499b 100644 --- a/code/modules/psionics/mob/mob_interactions.dm +++ b/code/modules/psionics/mob/mob_interactions.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* #define INVOKE_PSI_POWERS(holder, powers, target, return_on_invocation) \ if(holder && holder.psi && holder.psi.can_use()) { \ for(var/thing in powers) { \ @@ -37,5 +35,3 @@ . = ..() #undef INVOKE_PSI_POWERS -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/_null.dm b/code/modules/psionics/null/_null.dm index 14cdc659c764e..2f22237d7e0c6 100644 --- a/code/modules/psionics/null/_null.dm +++ b/code/modules/psionics/null/_null.dm @@ -4,8 +4,6 @@ * Returns instance of `/atom/movable` or `FALSE`. Either the atom that can disrupt psionics, or `FALSE` if nothing will * disrupt. */ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /atom/proc/disrupts_psionics() for(var/thing in contents) var/atom/movable/AM = thing @@ -30,5 +28,3 @@ . = AM.withstand_psi_stress(., source) if(. <= 0) break -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/chemistry.dm b/code/modules/psionics/null/chemistry.dm index dfd66e636eb65..d8a6fd999e4e9 100644 --- a/code/modules/psionics/null/chemistry.dm +++ b/code/modules/psionics/null/chemistry.dm @@ -1,5 +1,3 @@ -/* -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) /singleton/reaction/nullglass name = "Soulstone" result = null @@ -89,5 +87,3 @@ M.adjustBruteLoss(rand(3,6)) if(prob(10)) new /obj/item/material/shard(get_turf(M), result_mat) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/flooring.dm b/code/modules/psionics/null/flooring.dm index f1ecbd552a3e1..b7c06e73c52a7 100644 --- a/code/modules/psionics/null/flooring.dm +++ b/code/modules/psionics/null/flooring.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /singleton/flooring var/psi_null @@ -20,5 +18,3 @@ name = "nullglass floor tile" icon_state = "tile_nullglass" matter = list(MATERIAL_NULLGLASS = 937.5) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/material.dm b/code/modules/psionics/null/material.dm index f8a1f19530456..983fc94ee9205 100644 --- a/code/modules/psionics/null/material.dm +++ b/code/modules/psionics/null/material.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /material var/is_psionic_nullifier @@ -32,5 +30,3 @@ /material/nullglass/generate_recipes() . = ..() . += new /datum/stack_recipe/tile/nullglass(src) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/material_sheet.dm b/code/modules/psionics/null/material_sheet.dm index 1ff679dd0319d..455cbb258e2e5 100644 --- a/code/modules/psionics/null/material_sheet.dm +++ b/code/modules/psionics/null/material_sheet.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /obj/item/stack/material/withstand_psi_stress(stress, atom/source) . = ..(stress, source) if(amount > 0 && . > 0 && disrupts_psionics()) @@ -22,5 +20,3 @@ /obj/item/stack/material/nullglass/fifty amount = 50 -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/material_weapon.dm b/code/modules/psionics/null/material_weapon.dm index 04f12bbe4d680..24ef29c6c876b 100644 --- a/code/modules/psionics/null/material_weapon.dm +++ b/code/modules/psionics/null/material_weapon.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /obj/item/material/disrupts_psionics() return (material && material.is_psi_null()) ? src : FALSE @@ -11,5 +9,3 @@ /obj/item/material/shard/nullglass/New(newloc) ..(newloc, MATERIAL_NULLGLASS) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/turf_floor.dm b/code/modules/psionics/null/turf_floor.dm index 8318c3754c966..0a49c172b8184 100644 --- a/code/modules/psionics/null/turf_floor.dm +++ b/code/modules/psionics/null/turf_floor.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /turf/simulated/floor/disrupts_psionics() return (flooring && flooring.is_psi_null()) ? src : ..() @@ -7,5 +5,3 @@ name = "nullglass floor" icon_state = "nullglass" initial_flooring = /singleton/flooring/tiling/nullglass -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) diff --git a/code/modules/psionics/null/turf_wall.dm b/code/modules/psionics/null/turf_wall.dm index 518d092530c39..c047beb0b030b 100644 --- a/code/modules/psionics/null/turf_wall.dm +++ b/code/modules/psionics/null/turf_wall.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* /turf/simulated/wall/disrupts_psionics() return ((material && material.is_psi_null()) || (reinf_material && reinf_material.is_psi_null())) ? src : ..() @@ -18,5 +16,3 @@ /turf/simulated/wall/nullglass/Initialize(ml) color = null ..(ml, MATERIAL_NULLGLASS) -*/ -// [/SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) From a3d0164696bb97bf8d014b7167faafed8836f941 Mon Sep 17 00:00:00 2001 From: nasend <85687271+nasendd@users.noreply.github.com> Date: Wed, 7 May 2025 23:05:12 +0300 Subject: [PATCH 31/60] modular 2 --- baystation12.dme | 3 ++- code/__defines/psi.dm | 20 ++++---------------- mods/psionics/code/psi.dm | 14 ++++++++++++++ mods/psionics/psionics_includes.dm | 1 + 4 files changed, 21 insertions(+), 17 deletions(-) create mode 100644 mods/psionics/code/psi.dm diff --git a/baystation12.dme b/baystation12.dme index 33c8f124a0751..00d3095f1a1dc 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -70,7 +70,7 @@ #include "code\__defines\overmap.dm" #include "code\__defines\proc_presets.dm" #include "code\__defines\procs.dm" -#include "code\__defines\psi.dm" +// #include "code\__defines\psi.dm" #include "code\__defines\qdel.dm" #include "code\__defines\research.dm" #include "code\__defines\ruin_tags.dm" @@ -3389,6 +3389,7 @@ #include "code\unit_tests\time_tests.dm" #include "code\unit_tests\unique_tests.dm" #include "code\unit_tests\unit_test.dm" +#include "mods\psionics\code\psi.dm" #include "code\unit_tests\uplink_tests.dm" #include "code\unit_tests\view_variables_test.dm" #include "code\unit_tests\virtual_mob_tests.dm" diff --git a/code/__defines/psi.dm b/code/__defines/psi.dm index 31146726fafc0..ac4b43ae82659 100644 --- a/code/__defines/psi.dm +++ b/code/__defines/psi.dm @@ -1,5 +1,3 @@ -// [SIERRA-EDIT] - PSIONICS -/* #define PSI_IMPLANT_AUTOMATIC "Security Level Derived" #define PSI_IMPLANT_SHOCK "Issue Neural Shock" #define PSI_IMPLANT_WARN "Issue Reprimand" @@ -10,20 +8,10 @@ #define PSI_PSYCHOKINESIS "psychokinesis" #define PSI_REDACTION "redaction" #define PSI_ENERGISTICS "energistics" -*/ - -#define PSI_COERCION "coercion" -#define PSI_CONSCIOUSNESS "consciousness" -#define PSI_PSYCHOKINESIS "psychokinesis" -#define PSI_MANIFESTATION "manifestation" -#define PSI_METAKINESIS "metakinesis" -#define PSI_ENERGISTICS "energistics" -#define PSI_REDACTION "redaction" #define PSI_RANK_BLUNT 0 #define PSI_RANK_LATENT 1 -#define PSI_RANK_APPRENTICE 2 -#define PSI_RANK_OPERANT 3 -#define PSI_RANK_MASTER 4 -#define PSI_RANK_GRANDMASTER 5 -// [/SIERRA-ADD] - PSIONICS +#define PSI_RANK_OPERANT 2 +#define PSI_RANK_MASTER 3 +#define PSI_RANK_GRANDMASTER 4 +#define PSI_RANK_PARAMOUNT 5 diff --git a/mods/psionics/code/psi.dm b/mods/psionics/code/psi.dm new file mode 100644 index 0000000000000..1528850b7ca1c --- /dev/null +++ b/mods/psionics/code/psi.dm @@ -0,0 +1,14 @@ +#define PSI_COERCION "coercion" +#define PSI_CONSCIOUSNESS "consciousness" +#define PSI_PSYCHOKINESIS "psychokinesis" +#define PSI_MANIFESTATION "manifestation" +#define PSI_METAKINESIS "metakinesis" +#define PSI_ENERGISTICS "energistics" +#define PSI_REDACTION "redaction" + +#define PSI_RANK_BLUNT 0 +#define PSI_RANK_LATENT 1 +#define PSI_RANK_APPRENTICE 2 +#define PSI_RANK_OPERANT 3 +#define PSI_RANK_MASTER 4 +#define PSI_RANK_GRANDMASTER 5 diff --git a/mods/psionics/psionics_includes.dm b/mods/psionics/psionics_includes.dm index 7b05ecfe07858..d856cdc6b3fb4 100644 --- a/mods/psionics/psionics_includes.dm +++ b/mods/psionics/psionics_includes.dm @@ -4,6 +4,7 @@ #include "psionics.dm" +#include "code/psi.dm" #include "code/misc/psi.dm" #include "code/misc/decoyobj.dm" #include "code/complexus/complexus_helpers.dm" From 14785d77bafafec20b01df27b0f29610d7fe2c0f Mon Sep 17 00:00:00 2001 From: nasend <85687271+nasendd@users.noreply.github.com> Date: Wed, 7 May 2025 23:07:00 +0300 Subject: [PATCH 32/60] Update baystation12.dme --- baystation12.dme | 1 - 1 file changed, 1 deletion(-) diff --git a/baystation12.dme b/baystation12.dme index 00d3095f1a1dc..e2f0f78c94b2e 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -3389,7 +3389,6 @@ #include "code\unit_tests\time_tests.dm" #include "code\unit_tests\unique_tests.dm" #include "code\unit_tests\unit_test.dm" -#include "mods\psionics\code\psi.dm" #include "code\unit_tests\uplink_tests.dm" #include "code\unit_tests\view_variables_test.dm" #include "code\unit_tests\virtual_mob_tests.dm" From 84ebe6726848ed877c3c2e91b95840ed84d320ca Mon Sep 17 00:00:00 2001 From: nasend <85687271+nasendd@users.noreply.github.com> Date: Wed, 7 May 2025 23:07:58 +0300 Subject: [PATCH 33/60] Update psi.dm From a29f779dc0c5322ddeed7c60d3c767c891e4f75b Mon Sep 17 00:00:00 2001 From: nasend <85687271+nasendd@users.noreply.github.com> Date: Wed, 7 May 2025 23:11:13 +0300 Subject: [PATCH 34/60] modular 3 --- baystation12.dme | 2 +- code/controllers/subsystems/processing/psi.dm | 4 ---- mods/psionics/README.md | 5 +---- 3 files changed, 2 insertions(+), 9 deletions(-) diff --git a/baystation12.dme b/baystation12.dme index e2f0f78c94b2e..8f5a971d56514 100644 --- a/baystation12.dme +++ b/baystation12.dme @@ -259,7 +259,7 @@ #include "code\controllers\subsystems\processing\nano.dm" #include "code\controllers\subsystems\processing\obj.dm" #include "code\controllers\subsystems\processing\processing.dm" -#include "code\controllers\subsystems\processing\psi.dm" +// #include "code\controllers\subsystems\processing\psi.dm" #include "code\controllers\subsystems\processing\temperature.dm" #include "code\controllers\subsystems\processing\turf.dm" #include "code\controllers\subsystems\processing\vines.dm" diff --git a/code/controllers/subsystems/processing/psi.dm b/code/controllers/subsystems/processing/psi.dm index efbaf1c9dad71..a949bd1815677 100644 --- a/code/controllers/subsystems/processing/psi.dm +++ b/code/controllers/subsystems/processing/psi.dm @@ -1,5 +1,3 @@ -// [SIERRA-REMOVE] - PSIONICS - (Перемещено в /mods/psionics) -/* GLOBAL_LIST_AS(psychic_ranks_to_strings, list("Latent", "Operant", "Masterclass", "Grandmasterclass", "Paramount")) PROCESSING_SUBSYSTEM_DEF(psi) @@ -34,5 +32,3 @@ PROCESSING_SUBSYSTEM_DEF(psi) var/singleton/psionic_faculty/faculty = get_faculty(power.faculty) if(faculty) faculty.powers |= power -*/ -// [/SIERRA-REMOVE] - PSIONICS diff --git a/mods/psionics/README.md b/mods/psionics/README.md index fccaf682ab85a..d1552161bf8a3 100644 --- a/mods/psionics/README.md +++ b/mods/psionics/README.md @@ -27,12 +27,9 @@ ID мода: PSIONICS ### Изменения *кор кода* -- `code/controllers/subsystems/processing/psi.dm`: `Закомменчено` - `baystation12.dme`: `#include "code\modules\client\preference_setup\psionics\01_basic.dm"`, `#include "code\modules\client\preference_setup\psionics\02_abilities.dm"` -- `code/__defines/psi.dm`: `Закомменчено` - `code/game/jobs/job/job.dm`: `proc/give_psi`, `equip` - `code/modules/client/preference_setup/preference_setup.dm`: `/datum/category_group/player_setup_category/psionics_preferences` -- `code/modules/psionics/` : `Перенесено в мод, закомменчено` - `test/check-paths.sh` : `+1 к uses of examine()`